> >
> > Hi Tanvir,
> >
> > Did you mean Ken or me?, what do you want to do exactly?
> >
> >
> >
> > -Stefan
>
>
> hi drewken
> i downloaded u'r text box class, but i c't understand how to use this class prg
It's not mine, Marcia Akins wrote that class. If your question is something like "How to use a class being defined via Define Class syntax"?, you can put the Define/EndDefine block into a PRG file, say "myclasses.PRG" in a sub-folder "prgs" for instance.
And then create objects derived from your new class by using the NewObject() function or container.NewObject() method:
Thisform.NewObject('Text99', 'txtnum', 'prgs\myclasses.PRG')
Or you make a "visual" VCX class by choosing "New" in the Project Manager's "Classes" tab, and then, in the Class Designer, add and set all properties and copy&paste the methods.
hth
-Stefan