Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Working with the collection class
Message
From
24/05/2005 12:02:04
 
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01017111
Message ID:
01017117
Views:
32
>Hi everybody,
>
>I'm not sure, how can I add items to the collection based on their TabOrder in the form.
>
>Here is my current code, I'd like to modify it to put controls in the TabOrder sequence. How should I do it?
>
>
>*---------------------- Location Section ------------------------
>*   Library: 	Aformssearch.vcx
>*   Class: 		Frmquicksearch
>*   Method: 	Registercontrols()
>*----------------------- Usage Section --------------------------
>*)  Description:
>*)
>
>*   Scope:      Public
>*   Parameters:
>*$  Usage:
>*$
>*   Returns:
>*--------------------- Maintenance Section ----------------------
>*   Change Log:
>*       CREATED 	05/20/2005 - NN
>*		MODIFIED
>*----------------------------------------------------------------
>lparameters tcClassName, tcNamedSearch
>
>with thisform.oSearchCollection
>	if .getkey(m.tcNamedSearch) = 0
>		.add(m.tcClassName, m.tcNamedSearch)
>	endif	
>endwith
>
>
>
>My container object has a name of "o" + m.tcNamedSearch and it's placed directly on the form.
>
>Thanks in advance.

Nadya,

I don't believe you can add a property or method to a class with an m. prefix. Try
.add(tcClassName,tcNamedSearch)
Regards,
Jim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform