cgosbee
Posts: 23
|
| Posted: 10/16/2007, 1:26 PM |
|
I'm sure there's some good advice for this somewhere... I think I've even gotten close to getting this right, but after all this floundering...
I have a Record Form that auto-populates with all the correct data for editing.
There is some additional data I want to display that is "linked" to the data I am updating, but which comes from a separate table than the update applies to, and which need not be updated.
I want to simply display this data in a label. As a "trick", I was going to use a bound listbox control, and set the text in the label equal to the text in the listbox.
The closest I have gotten is that when someone clicks a user to jump to the user Record form, the bound listbox is correctly populated with the appropriate user selected, and the relevant label is set to the numeric position of the listbox.
I'm sure I'm close, but what am I missing here? Also, will I have trouble going forward with this approach? I suspect I will, as I want to not have that listbox visible at run-time. Is that possible?
|
 |
 |
Oper
Posts: 1195
|
| Posted: 10/17/2007, 5:30 PM |
|
use on before show event
Myform.Label1.value=ccdlookup("whatevere"..........................................)
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
|