Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Listbox
Message
From
10/11/2000 15:54:38
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00440444
Message ID:
00440449
Views:
8
>Since it has been a long time since I have had to disable an item in a listbox can someone please tell me know I might accomplish this.

add a backslash in front of the List, e.g. to disable the 3rd item
** with RowSourceType = 0 && none
this.List(3) = "\" + this.List(3)

** with RowSourceType = 5 && array
** and RowSource = "this.aSource"
this.aSource(3) = "\" + this.aSource(3)
this.Requery()
Insanity: Doing the same thing over and over and expecting different results.
Previous
Reply
Map
View

Click here to load this message in the networking platform