Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Newbie question
Message
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Title:
Miscellaneous
Thread ID:
00654364
Message ID:
00654531
Views:
17
Brad,

First you need to create the object as I said before. Classes don't exist, they are not real, they arte simply definitions form which to create objects. Objects are real and they have methods you can call.

Your information does not tell me what arguments the Flick method takes so I have no idea what value you should pass ot it. Here is how to use the class library to create an object and call the flick method;
loLED = NewObject("blinktimer","Led.vcx")
loLED.Flick( I Don't know what to pass )
If you want the blinktimer added to a form you would ...
* Form's Init Event
Thisform.NewObject("oBlinker","BlinkTimer","Led.vcx")
Thisform.oBlinker.Flick( I don't know what to pass )
Previous
Reply
Map
View

Click here to load this message in the networking platform