============================================================================
               L&B Software ReBar OLE Server for Visual Basic 4
============================================================================


Installing L&B Software ReBar OLE Server for Visual Basic 4
  
	- Unzip LBREBAR.ZIP to an empty directory
	- Register LBREBAR.DLL with REGSVR32.EXE or execute REG.BAT
	- Open SAMPLE.VBP

Class Descriptions:

REBAR CONTROL
----------------------------------------------------------------

  Class:		
	CReBar

  Methods:

	Create
	------
		Purpose :
			Creates the ReBar control
	
		Syntax :
			ReBar1.Create frmContainer, [picBack]

			frmContainer: the form where the ReBar will be
			       created in

			picBack [optional] : picture box that
			       contains the image that will be
			       used as ReBar transparent background

		Example :
			myRebar.Create frmMain, picCoolBackground

	Resize
	------
		Purpose :
			Align the ReBar according to the form width.
			Must be called in Form Resize Event.
	
		Syntax :
			ReBar1.Resize

		Example :
			myRebar.Resize

	Destroy
	-------
		Purpose :
			Free all resources used by the ReBar, and
                        destroys it.
			Must be called in Form Unload Event
	
		Syntax :
			ReBar1.Destroy

		Example :
			myRebar.Destroy

	AddTextBand
	-----------
		Purpose :
			Adds a new text band to the ReBar
	
		Syntax :
			ReBar1.AddTextBand BandName, BandText

			BandName : Unique identifier for the band

			BandText : Text to appear in the band

		Example :
			myRebar.AddTextBand "BDABOUT", "L&B Software"

	AddToolsBand
	------------
		Purpose :
			Adds a new tools band (coolbar) to the ReBar
	
		Syntax :
			ReBar1.AddToolsBand BandName, tbrToolbar

			BandName : Unique identifier for the band

			tbrToolbar : VB Toolbar to be used

		Example :
			myRebar.AddToolsBand "BDMAIN", tbrMain
