Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Launching multiple forms to edit memos
Message
 
To
05/03/2004 10:08:04
Denis Filer
University of Oxford
United Kingdom
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00883462
Message ID:
00883806
Views:
9
Sorry Denis when I poted the message I saw an error in the following code:
DECLARE thisform.RunnedEdit[ALEN(RunnedEdit,1)+1]
thisform.RunnedEdit[ALEN(RunnedEdit,1)+1] = SYS(2015)
thisform.AddProperty(thisform.RunnedEdit[ALEN(RunnedEdit,1)+1])
c_name = "thisform."+thisform.RunnedEdit[ALEN(RunnedEdit,1)+1]
DO FORM EditMemo NAME &c_name LINKED WITH ...
It must be:
LOCAL r_len = ALEN(RunnedEdit,1)+1
DECLARE thisform.RunnedEdit[r_len]
thisform.RunnedEdit[r_len] = SYS(2015)
thisform.AddProperty(thisform.RunnedEdit[r_len])
c_name = "thisform."+thisform.RunnedEdit[r_len]
DO FORM EditMemo NAME &c_name LINKED WITH ...
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform