So in foxpro, i can add a property on a form.Exemple
how can i do to make the same in a maintenanceform
Thank's
Hey, it's great, Ingrid BETANCOURT is free now !
Public Property MyProperty As String Get Return _MyProperty End Get Set(Byval value As String) _MyProperty = value End SetEnd Property
After it has been added, you will need to rebuild the project before it can be seen within a designer. Also, if you add this on a specific form, you will not see it within the designer unless the form () or user control, class, etc) is inherited.
its exactly what i wanted !
thank's very much !
Eric