Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Combobox Questions
Message
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01267056
Message ID:
01267800
Views:
14
For anyone who is interested, I now figured out the solution to my second question: How to change the values that display in a Combobox without changing the original data. In my case, I wanted to remove pipe characters ("|") from the viewable data. I put the following code in the RowSource_Assign method:

IF !"STRTR"$This.RowSource.and.!EMPTY(This.RowSource)
lcRS = ALLTRIM(This.RowSource)
This.RowSource = "STRTRAN(" + lcRS + ", '|')"
ENDIF


Jerry Kahn
Previous
Reply
Map
View

Click here to load this message in the networking platform