
Andrew B
|
| Posted: 10/21/2002, 6:01 PM |
|
Is there a shortcut to current control's properties/values from inside the BeforeShow event of that control?
I would rather not have to stick 'myform_detail.really_long_field.value' in there and would much rather use syntax something like this :
Me.Value = 'blah'
CurrControl.Value = 'Blah'
Is there any way or am I stuck mashing it out and going through hell when I need to change my form's name?
|
|
|
 |
Brian B
|
| Posted: 10/22/2002, 1:03 AM |
|
Andrew
Use EventCaller.Value = 'blah' this also makes it easier if you want to copy the code into another control.
|
|
|
 |
|

|