Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Recursive call in click method doesn't work
Message
From
08/04/2006 14:32:12
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Recursive call in click method doesn't work
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01111703
Message ID:
01111703
Views:
59
I want a recursive call to my click button. It doesn't work. I saw some old threads on this.. thought they would help me get this right.. but I'm still stumped.

I think that from the code below it should be evident what I'm trying to do.
I think I could do this by keyboarding a mouse click? But that seems klugey.

Any suggestions?
do form forms\sotpkbxd with curbatchsos.csono, 'PREPARE_BATCH',thisform.erpkeylookupBatchNo.Erptxtgen1.value

if messagebox('Skip to next Sales Order?',4+32,'Label System') = 6
	set step on 
	skip in curbatchsos
	if eof('curbatchsos')
		messagebox('No more Sales Orders to Process',0,'Label System')
		go top in curbatchsos
	else
		thisform.CallClick()
		*this.Click()
	endif


endif
thisform.Refresh()
Next
Reply
Map
View

Click here to load this message in the networking platform