Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Adding code to events programmatically
Message
From
09/02/2016 13:21:26
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Title:
Adding code to events programmatically
Environment versions
Visual FoxPro:
VFP 7
OS:
Windows 7
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01631115
Message ID:
01631115
Views:
107
I use the form designer always, but I have come across a situation where I need to add a listbox to a form programmatically. This I got right, and it pops up at the right time, etc, but I need help in where, and how to add the events code. This lot pops up the box. Where in relation to this do I put the events code? Many thanks!
			thisform.AddObject('oList1','ListBox')
			with thisform.oList1
			   .rowSource = "oldjobs"
			   .rowsourcetype=2
			   .visible=.t.
			   .top=186
			   .left=350
			   .width=250
			   .columncount=2
			   .columnwidths='150,75'
			   .SelectedItemBackColor=RGB(70,60,50)
			   .SelectedItemForeColor=RGB(10,191,160)
			   .SpecialEffect=1
			   .ItemBackColor=RGB(40,40,40)
			   .ItemForeColor=RGB(255,204,153)
			   .BorderStyle = 1
			   .BorderColor=RGB(235,132,0)
			endwith
Next
Reply
Map
View

Click here to load this message in the networking platform