home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1995 September / Image.iso / visualob / install / cavo / cavowed.in_ / cavowed.in
Encoding:
INI File  |  1994-12-17  |  12.4 KB  |  308 lines

  1. [AssignMap]
  2. Background=Brush
  3. TextLimit=
  4. TextColor=Color
  5. Caption=
  6.  
  7. [StdProperties]
  8. FONT=FONTSYSTEM8,FONTMODERN8,FONTMODERN10,FONTMODERN12,FONTSWISS8,FONTSWISS10,FONTSWISS12,FONTSWISS14,FONTSWISS18,FONTSWISS24,FONTROMAN8,FONTROMAN10,FONTROMAN12,FONTROMAN14,FONTROMAN18,FONTROMAN24
  9. BRUSH=BRUSHWHITE,BRUSHBLACK,BRUSHDARK,BRUSHMEDIUM,BRUSHLIGHT,BRUSHHOLLOW,BRUSHCLEAR
  10. COLOR=COLORBLACK,COLORBLUE,COLORCYAN,COLORGREEN,COLORMAGENTA,COLORRED,COLORYELLOW,COLORWHITE
  11. LOGIC=Yes
  12. VIEWS=#FormView,#BrowseView
  13.  
  14.  
  15. [CODE]
  16. Activate=Method Activate(oE) class %\r\n\tsuper:Activate(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  17. ButtonClick=Method ButtonClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tsuper:ButtonClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  18. ButtonDoubleClick=Method ButtonDoubleClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tsuper:ButtonDoubleClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  19. Close=Method Close(oE) class %\r\n\tsuper:Close(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  20. Deactivate=Method Deactivate(oE) class %\r\n\tsuper:Deactivate(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  21. Draw=Method Draw(oDO) class %\r\n\tsuper:Draw(oDO)\r\n\t//Put your changes here\r\nreturn\r\n
  22. EditChange=Method EditChange(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:EditChange(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  23. EditFocusChange=Method EditFocusChange(oEFCE) class %\r\n\tlocal oC := oEFCE:Control\r\n\tlocal lGotFocus := oEFCE:GotFocus\r\n\tsuper:EditFocusChange(oEFCE)\r\n\t//Put your changes here\r\nreturn\r\n
  24. EditScroll=Method EditScroll(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:EditScroll(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  25. Expose=Method Expose(oEE) class %\r\n\tlocal oBB := oEE:ExposedArea\r\n\tsuper:Expose(oEE)\r\n\t//Put your changes here\r\nreturn\r\n
  26. FocusChange=Method FocusChange(oFCE) class %\r\n\tlocal lGotFocus := oFCE:GotFocus\r\n\tsuper:FocusChange(oFCE)\r\n\t//Put your changes here\r\nreturn\r\n
  27. HelpRequest=Method HelpRequest(oHRE) class %\r\n\tsuper:HelpRequest(oHRE)\r\n\t//Put your changes here\r\nreturn\r\n
  28. HorizontalScroll=Method HorizontalScroll(oSE) class %\r\n\tsuper:HorizontalScroll(oSE)\r\n\t//Put your changes here\r\nreturn\r\n
  29. Keydown=Method Keydown(oKE) class %\r\n\tlocal cKC := if(IsNil(oKE:ASCIIChar),oKE:KeyCode,oKE:ASCIIChar)\r\n\tsuper:Keydown(oKE)\r\n\t//Put your changes here\r\nreturn\r\n
  30. Keyup=Method Keyup(oKE) class %\r\n\tlocal cKC := if(IsNil(oKE:ASCIIChar),oKE:KeyCode,oKE:ASCIIChar)\r\n\tsuper:Keyup(oKE)\r\n\t//Put your changes here\r\nreturn\r\n
  31. ListBoxClick=Method ListBoxClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:ListBoxClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  32. ListBoxSelect=Method ListBoxSelect(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:ListBoxSelect(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  33. MenuCommand=Method MenuCommand(oMCE) class %\r\n\tsuper:MenuCommand(oMCE)\r\n\t//Put your changes here\r\nreturn\r\n
  34. MenuInit=Method MenuInit(oMIE) class %\r\n\tsuper:MenuInit(oMIE)\r\n\t//Put your changes here\r\nreturn\r\n
  35. MenuSelect=Method MenuSelect(oMSE) class %\r\n\tsuper:MenuSelect(oMSE)\r\n\t//Put your changes here\r\nreturn\r\n
  36. MouseButtonDoubleClick=Method MouseButtonDoubleClick(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonDoubleClick(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  37. MouseButtonDown=Method MouseButtonDown(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonDown(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  38. MouseButtonUp=Method MouseButtonUp(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonUp(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  39. MouseDrag=Method MouseDrag(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseDrag(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  40. MouseMove=Method MouseMove(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseMove(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  41. Move=Method Move(oME) class %\r\n\tsuper:Move(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  42. Notify=Method Notify(kNotify,uDescription) class %\r\nLocal flag as Usual\r\n\tflag := super:Notify(kNotify,uDescription)\r\n\t//Put your changes here\r\nreturn flag\r\n
  43. PreValidate=Method PreValidate() class %\r\n\tsuper:PreValidate()\r\n\t//Put your changes here\r\nreturn\r\n
  44. QueryClose=Method QueryClose(oE) class %\r\n\tsuper:QueryClose(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  45. Resize=Method Resize(oRSE) class %\r\n\tsuper:Resize(oRSE)\r\n\t//Put your changes here\r\nreturn\r\n
  46. VerticalScroll=Method VerticalScroll(oSE) class %\r\n\tsuper:VerticalScroll(oSE)\r\n\t//Put your changes here\r\nreturn\r\n
  47.  
  48.  
  49. [FORM]
  50. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  51. assign02=Caption,HyperLabel(,lstring,,)
  52. assign03=Description,HyperLabel(,,string,)
  53. assign04=Help Context,HyperLabel(,,,string)
  54.  
  55. Method50=Activate Event,Activate(CODE:Activate)
  56. Method51=ButtonClick Event,ButtonClick(CODE:ButtonClick)
  57. Method52=ButtonDoubleClick Event,ButtonDoubleClick(CODE:ButtonDoubleClick)
  58. Method53=Close Event,Close(CODE:Close)
  59. Method54=Deactivate Event,Deactivate(CODE:Deactivate)
  60. Method55=Draw Event,Draw(CODE:Draw)
  61. Method56=EditChange Event,EditChange(CODE:EditChange)
  62. Method57=EditFocusChange Event,EditFocusChange(CODE:EditFocusChange)
  63. Method58=EditScroll Event,EditScroll(CODE:EditScroll)
  64. Method59=Expose Event,Expose(CODE:Expose)
  65. Method60=FocusChange Event,FocusChange(CODE:FocusChange)
  66. Method61=HelpRequest Event,HelpRequest(CODE:HelpRequest)
  67. Method62=HorizontalScroll Event,HorizontalScroll(CODE:HorizontalScroll)
  68. Method63=Keydown Event,Keydown(CODE:Keydown)
  69. Method64=Keyup Event,Keyup(CODE:Keyup)
  70. Method65=ListBoxClick Event,ListBoxClick(CODE:ListBoxClick)
  71. Method66=ListBoxSelect Event,Show(CODE:ListBoxSelect)
  72. Method67=MenuCommand Event,MenuCommand(CODE:MenuCommand)
  73. Method68=MenuInit Event,MenuInit(CODE:MenuInit)
  74. Method69=MenuSelect Event,MenuSelect(CODE:MenuSelect)
  75. Method70=MouseButtonDoubleClick Event,MouseButtonDoubleClick(CODE:MouseButtonDoubleClick)
  76. Method71=MouseButtonDown Event,MouseButtonDown(CODE:MouseButtonDown)
  77. Method72=MouseButtonUp Event,MouseButtonUp(CODE:MouseButtonUp)
  78. Method73=MouseDrag Event,MouseDrag(CODE:MouseDrag)
  79. Method74=MouseMove Event,MouseMove(CODE:MouseMove)
  80. Method75=Move Event,Move(CODE:Move)
  81. Method77=QueryClose Event,QueryClose(CODE:QueryClose)
  82. Method78=Resize Event,Resize(CODE:Resize)
  83. Method79=VerticalScroll Event,VerticalScroll(CODE:VerticalScroll)
  84.  
  85.  
  86. [FORM:DATAWINDOW]
  87. ContTitle=Data Window
  88. text=DataWindow Caption
  89. InitMethod=DATAWINDOW(oWindow,iCtlID,oServer)
  90. Name=MyDataWindow
  91. Size=420,320 
  92. DialogTemplate=1
  93. Position=5,5 
  94. Style=WS_BORDER|WS_CHILD
  95. Assign05=Icon Name,Icon(CLASS:ICON)
  96. Assign06=Accelerator Table,Accelerator(CLASS:Accelerator)
  97. Assign100=Menu,Menu(CLASS:Menu)
  98. Assign07=Help File Name,HelpDisplay(string)
  99. Method10=View As,ViewAs(VIEWS)
  100. Method11=Data Server,Use(CLASS:DBSERVER)
  101. Method13=Font,Font(FONT)
  102. Method80=Notify Event,Notify(CODE:Notify)
  103. Method76=PreValidate Event,PreValidate(CODE:PreValidate)
  104.  
  105. [FORM:SHELLWINDOW]
  106. ContTitle=Shell Window
  107. text=ShellWindow Caption
  108. InitMethod = SHELLWINDOW(oParent)
  109. Name=TheShellWindow
  110. Size=400,300 
  111. Position=5,5 
  112. Style=WS_OVERLAPPEDWINDOW
  113. Assign09=Icon Name,Icon(CLASS:ICON)
  114. Assign10=Mouse Pointer,Pointer(CLASS:POINTER)
  115. Assign100=Menu,Menu(CLASS:Menu)
  116. Assign11=Help File Name,HelpDisplay(string)
  117.  
  118. [FORM:DIALOGWINDOW]
  119. ContTitle=Dialog Window
  120. DialogTemplate=1
  121. text=Dialog Caption
  122. InitMethod = DialogWindow(oParent)
  123. Name=TheDialog
  124. Size=400,240 
  125. Position=5,5 
  126. Style=DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  127. ExStyle=WS_EX_DLGMODALFRAME
  128.  
  129. method13=Font,Font(FONT)
  130. Method14=Modeless,Modeless(LOGIC)
  131. Assign14=Background Color,Background(COLOR)
  132. Assign15=Mouse Pointer,Pointer(CLASS:POINTER)
  133. Assign16=Help File Name,HelpDisplay(string)
  134.  
  135. [CONTROL]
  136.  
  137. [CONTROL:SUBDATAWINDOW]
  138. ContTitle=Sub-Data Window
  139. ClassName=__PSBDWN__ 
  140. Name=Sub_Form
  141. Size=240,140 
  142. Style=WS_CHILD|WS_BORDER  
  143. Method1=Relation String,RelationString(string)
  144. Method2=Order,Order(string)
  145.  
  146. [CONTROL:FIXEDICON]
  147. ContTitle=Fixed Icon
  148. ClassName=static 
  149. Name=theFixedIcon
  150. Size=40,40 
  151. Style=WS_CHILD|SS_ICON|WS_BORDER   
  152. InitMethod = FIXEDICON(PARENT,ID)
  153. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  154. assign02=Caption,HyperLabel(,lstring,,)
  155. assign03=Description,HyperLabel(,,string,)
  156. assign04=Help Context,HyperLabel(,,,string)
  157. Assign05=Background Color,Background(COLOR)
  158.  
  159. [CONTROL:SCROLLBAR]
  160. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  161. assign02=Caption,HyperLabel(,lstring,,)
  162. assign03=Description,HyperLabel(,,string,)
  163. assign04=Help Context,HyperLabel(,,,string)
  164.  
  165. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  166. assign06=Min Value,Range(numeric,)
  167. assign07=Max Value,Range(,numeric)
  168.  
  169. [CONTROL:SCROLLBAR:HORIZONTALSCROLLBAR]
  170. ContTitle=Horizontal Scroll Bar
  171. ClassName=scrollbar 
  172. Name=theHorzScroll
  173. Size=140,20 
  174. Style=WS_CHILD|SBS_HORZ  
  175. InitMethod=HorizontalScrollBar(PARENT,ID)
  176.  
  177. [CONTROL:SCROLLBAR:VERTICALSCROLLBAR]
  178. ContTitle=Vertical Scroll Bar
  179. ClassName=scrollbar 
  180. Name=theVertScroll
  181. Size=20,140 
  182. Style=WS_CHILD|SBS_VERT  
  183. InitMethod=VerticalScrollBar(PARENT,ID)
  184.  
  185. [CONTROL:TEXTCONTROL]
  186. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  187. assign02=Caption,HyperLabel(,lstring,,)
  188. assign03=Description,HyperLabel(,,string,)
  189. assign04=Help Context,HyperLabel(,,,string)
  190. method13=Font,Font(FONT)
  191.  
  192. [CONTROL:TEXTCONTROL:EDIT]
  193. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  194. Assign06=Text Limit,TextLimit(numeric)
  195. Assign91=Text Color,TextColor(COLOR)
  196. Assign92=Background Color,Background(COLOR)
  197.  
  198. [CONTROL:TEXTCONTROL:EDIT:MULTILINEEDIT]
  199. ContTitle=Multi-Line Edit
  200. ClassName= edit
  201. Name=theMultiLineEdit
  202. Size=60,40 
  203. Style=WS_CHILD|ES_MULTILINE|WS_TABSTOP|WS_BORDER  
  204. InitMethod = MultiLineEdit(PARENT,ID)
  205.  
  206. [CONTROL:TEXTCONTROL:EDIT:SINGLELINEEDIT]
  207. ContTitle=Single-Line Edit
  208. ClassName= edit
  209. Name=theSingleLineEdit
  210. Size=40,20 
  211. Style=WS_CHILD|WS_TABSTOP|WS_BORDER|ES_AUTOHSCROLL 
  212. InitMethod = SingleLineEdit(PARENT,ID)
  213. assign40=Block,Block(string)
  214. assign41=Block Owner,BlockOwner(string)
  215.      
  216. [CONTROL:TEXTCONTROL:BASELISTBOX]
  217. Method2=Fill Using,FillUsing( )
  218. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  219. Assign91=Text Color,TextColor(COLOR)
  220. Assign92=Background Color,Background(COLOR)
  221.  
  222. [CONTROL:TEXTCONTROL:BASELISTBOX:LISTBOX]
  223. ContTitle=List Box
  224. ClassName=listbox 
  225. Name=theListBox
  226. Size=80,80 
  227. Style=WS_TABSTOP|WS_CHILD|LBS_NOTIFY|WS_VSCROLL|WS_BORDER|LBS_SORT
  228. InitMethod = ListBox(PARENT,ID)
  229.  
  230. [CONTROL:TEXTCONTROL:BASELISTBOX:LISTBOX:COMBOBOX]
  231. ContTitle=Combo Box
  232. ClassName=combobox 
  233. Name=theComboBox
  234. Size=80,80 
  235. Style=WS_TABSTOP|WS_CHILD|CBS_DROPDOWN|WS_VSCROLL|CBS_SORT
  236. InitMethod = combobox(PARENT,ID)
  237.  
  238. [CONTROL:TEXTCONTROL:BUTTON]
  239.  
  240. [CONTROL:TEXTCONTROL:BUTTON:CHECKBOX]
  241. ContTitle=Check Box
  242. ClassName= button
  243. Name=theCheckBox
  244. Text=CheckBox
  245. Size=120,18 
  246. Style=WS_TABSTOP|WS_CHILD|BS_AUTOCHECKBOX  
  247. InitMethod=CheckBox(PARENT,ID)
  248. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  249. Assign91=Text Color,TextColor(COLOR)
  250. Assign92=Background Color,Background(COLOR)
  251.  
  252. [CONTROL:TEXTCONTROL:BUTTON:PUSHBUTTON]
  253. ContTitle=Push Button
  254. Type=CommandControl
  255. ClassName= button
  256. Name=PushButton
  257. text=Push
  258. Size=80,22 
  259. Style=WS_CHILD|WS_TABSTOP  
  260. InitMethod = PushButton(PARENT,ID)
  261. Event01=Click Event,MyBtnName( )
  262.  
  263. [CONTROL:TEXTCONTROL:BUTTON:RADIOBUTTON]
  264. ContTitle=Radio Button
  265. Type=CommandControl
  266. ClassName= button
  267. Name=theRadioButton
  268. text=RadioButton
  269. Size=120,18 
  270. Style=WS_CHILD|WS_TABSTOP|BS_AUTORADIOBUTTON  
  271. InitMethod = RadioButton(PARENT,ID)
  272. Method20=Group Value,Value(numeric)
  273. Assign91=Text Color,TextColor(COLOR)
  274. Assign92=Background Color,Background(COLOR)
  275.  
  276. [CONTROL:TEXTCONTROL:FIXEDTEXT]
  277. ContTitle=Fixed Text
  278. InitMethod=FixedText(PARENT,ID)
  279. ClassName=Static
  280. text=Fixed Text
  281. Name=theFixedText
  282. Size=80,20 
  283. Style=WS_CHILD  
  284. Assign91=Text Color,TextColor(COLOR)
  285. Assign92=Background Color,Background(COLOR)
  286.  
  287. [CONTROL:TEXTCONTROL:GROUPBOX]
  288. ContTitle=Group Box
  289. ClassName=Button
  290. Text=GroupBox
  291. Name=theGroupBox
  292. Size=100,80
  293. Style=WS_CHILD|BS_GROUPBOX|WS_GROUP  
  294. InitMethod = GroupBox(PARENT,ID)
  295. Assign91=Text Color,TextColor(COLOR)
  296. Assign92=Background Color,Background(COLOR)
  297.  
  298. [CONTROL:TEXTCONTROL:GROUPBOX:RADIOBUTTONGROUP]
  299. ContTitle=Radio Button Group
  300. ClassName=Button
  301. Text=RadioButtonGrp
  302. Name=theRadioButtonGroup
  303. Size=100,80
  304. Style=WS_CHILD|BS_GROUPBOX|WS_GROUP  
  305. InitMethod=RadioButtonGroup(PARENT,ID)
  306. Assign01=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  307.  
  308.