Hi I am unable to access the form controls and functions from other modules.
For example - I have created CMForm (renamed the default form to CMForm) with controls and some other functions
I am unable to access the controls and these functions from an of the modules.
My main mofule is as follows:
Public myForm as New CMForm
Public Sub main(ByJava args() As String)
myForm.SetDefaultClose
myForm.Show()
End Sub
Example: I have SEARCH_LABEL in CMForm - I cannot set the caption for this label using SEARCH_LABEL.Caption or even myForm.SEARCH_LABEL.Caption
Any help would be appreciated.