Visit Gigasoft's Web Site
ProEssentials v7 Help
Chapter 3: VB6 EXE ActiveX Walk-Through

The following information demonstrates how to create your first Visual Basic v6 / ProEssentials implementation. It discusses installation, adding ProEssentials to a project, writing your first few lines of code, and shows the final results. 

Project / Components... menu Installation...

When installing the ProEssentials evaluation and/or product, the setup program installs the ProEssentials DLL and ActiveX interfaces into the system directory. These files are:

 

PEGRP32E.DLL

ProEssentials Pro DLL
PEGO32E.OCX Graph Object
PESGO32E.OCX Scientific Graph Object
PE3DO32E.OCX 3D Scientific Graph Object
PEPSO32E.OCX Polar Object
PEPCO32E.OCX Pie Chart Object

 

PEGRPSE.DLL

ProEssentials Standard DLL
PEGOSE.OCX Graph Object
PESGOSE.OCX Scientific Graph Object
PE3DOSE.OCX 3D Scientific Graph Object
PEPSOSE.OCX Polar Object
PEPCOSE.OCX Pie Chart Object
 

PEGRPLE.DLL

ProEssentials Lite DLL
PEGOLE.OCX Graph Object
PESGOLE.OCX Scientific Graph Object
PE3DOLE.OCX 3D Scientific Graph Object
PEPSOLE.OCX Polar Object
PEPCOLE.OCX Pie Chart Object

 

The setup program also registers the ActiveXs with the operating system, which prepares Visual Basic for inclusion of ProEssentials components. You can manually register an ActiveX with "REGSVR32.EXE" found in your system/system32 or syswow64 on 64 bit systems. You can also use this utility to manually un-register an ActiveX by using the "-u" command.

 

After installation, launch Visual Basic and create a new "Standard EXE" project.

 

Use the Project / Components... menu item to open the "Components" dialog.

 

Components... Dialog Adding ProEssentials to a VB project...

 

Within the [Components] Dialog, scroll down until you see the Gigasoft entries and select those shown in the left image. Note that the [Controls] tab is active.

 

Clicking the [OK] button will close the [Components] dialog and places those items selected into Visual Basic's ToolBox as shown.

 

Form1... Adding ProEssentials to a Form...

Pego1.Subsets = 2

Pego1.Points = 10

For s = 0 To 1

   For p = 0 To 9

      Pego1.YData(s, p) = 5 + Rnd * 5

   Next p

Next s

Pego1.MainTitle = "My Title"

Pego1.SubTitle = ""

Pego1.YAxisLabel = "My Data"

Pego1.XAxisLabel = ""

Pego1.SubsetLabels(0) = "Hello"

Pego1.SubsetLabels(1) = "World"

Pego1.BitmapGradientMode = True

Pego1.QuickStyle = PEQS_LIGHT_INSET

Pego1.FixedFonts = True

Pego1.LegendStyle = PELS_1_LINE_INSIDE_AXIS

Pego1.PEactions = REINITIALIZE_RESETIMAGE

Click the "Pego" control from the ToolBox and then click and drag a rectangle selection on Form1's canvas.

Note, ProEssentials Std uses control name "PegoStd" and ProEssentials Lite uses control name "PegoLite".

 

The adjacent image shows what you see. This represents the default state of a ProEssentials Graph. The default state has one subset with four data points. In the course of constructing your own charts, you'll set the properties Subsets and Points which define the quantity of data your chart will hold. You'll then pass data via the YData(subset, point) two dimensional property array. The following section shows example code of passing data. Note, if we were constructing a Scientific Graph (Pesgo), we'd also set XData(subset, point).

 

ProEssentials uses the terms Subsets and Points but you can think of these as Rows and Columns. Passing data is as simple as filling each Subset with Points worth of data.

 

Use Visual Basic's View / Code menu to open the Code Window. Then select [Form] from the top left drop-down combo box. The event combobox on the top right will switch to [Load]. Enter the code as shown. Writing this small amount of code will improve your understanding and demonstrate the auto-code completion features supported by ProEssentials.

 

Code Window... Code Comments...

 

The first two lines set Subsets and Points. These define the amount of data you'll be passing.

 

Next, a nested For-Next loop passes random data into the YData(s, p) property array.

 

Next, MainTitle and SubTitle are set. Note that setting SubTitle to an empty string hides the subtitle.

 

The YAxisLabel and XAxisLabel are set similarly.


SubsetLabels sets the first subset label. (1) sets the second subset label.

 

Next, we set various other properties controlling visual aspects.

 

Finally, PEactions is set to REINITIALIZE_RESETIMAGE which tells ProEssentials you're done setting properties.

 

Results... Congratulations...

Use Visual Basic's Run / Start Menu (short cut F5) and you'll see the resulting form to the left. Congratulations, you've just completed your first Visual Basic / ProEssentials implementation.

 

This example is very simple and you'll likely set other properties such as: Width/Height so that the control uses Form1's client area as needed.

 

PointLabels which will replace the "1,2,3..." along x axis.

 

SubsetLineTypes which controls line styles.

 

SubsetColors which controls line colors.

 

PlottingMethod which controls the type of chart created, Line, Bar, Area, Point, etc.