Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get value from grid
Message
 
 
To
24/08/2005 09:43:04
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 8
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01043209
Message ID:
01043318
Views:
9
>hi,
>thank you for reply, and advice this message for me , not for MR.Martin Jindra, i think.
>
>assuming you want to show total in that textbox value? no
>
>i have first name ,second name ,therd name and family name
>
>anyway ,thank you.

In this case change your code:
local lcFirstName, lcSecondName, lcThirdName, lcLastName

lcFirstName = alltrim(myAlias.cFirstName)
lcSecondName = alltrim(myAlias.cSecondName)
lcThirdName = alltrim(myAlias.cThirdName)

lcLastName = alltrim(myAlias.cLastName)

thisform.txtFullName.value = m.lcFirstName + ;
iif(!empty(m.lcFirstName)," ","") + ;
m.lcSecondName + iif(!empty(m.lcSecondName)," ","") + ;
m.lcThirdName + ;
iif(!empty(m.lcThirdName)," ","") + m.lcLastName
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform