| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle Forms call to Visual Basic-routine
Add a property to your form
private mvarYourValue
Public Property Let YourVakue(ByVal vData as Variant)
    mvarYourValue=vData
End Property
Public Property Get YourValue() as Varinat
    YourValue=mvarYourValue
End Property
Received on Mon Jan 18 1999 - 18:32:21 CST
|  |  |