| 
            The StdCtrls module is designed to provide low-level access to the Scorpion
            User Interface. Nearly all controls derives from baseclass
			Control. This module contains classes for accessing the following standard 
			windows controls, menu items and fonts: 
			
				
				Button  BitBtn  SpeedButton  CheckBox  ComboBox  Control  Edit  Memo  Font  GroupBox  Label  ListBox  PageControl  Panel  RadioButton  Bevel  ScrollBox  TabSheet  WinControl  Callback  Frame  WinControl  Form  Release Notes 
			 
			
            Derived classes for special controls 
            Note:  Accessing the Scorpion 
			GUI using these low-level interfaces requires programming skills. 
			These interfaces are not guaranteed to be backwards compatible. 
			Compatibility issues will be described in the
			Scorpion 
			Release Notes. 
			Example 1: Modify font properties of a Panel object 
            
				panel=GetResultPanel() panel.caption='OK' panel.color='green' 
				# modifying the font panel.font.size=14 panel.font.color='blue'  panel.font.bold=1 
			 
           |