Custom Properties

  • Thread starter Thread starter Damien
  • Start date Start date
D

Damien

If I give a form a custom property (Property Let/Get),
like 'Customer', how can I open the form from another
form, wait for the property to be set (eg in a ComboBox),
and then retrieve it?

Or does anyone have any good links to using Access forms
and Custom Properties?

Thanks


Damien
 
Your calling code has to open the form in dialog mode.

You can read on how to do this here:

http://www.attcanada.net/~kallal.msn/Dialog/Index.html

Once you kick the form out of dialog mode, then the calling code can examine
any field values entered by the user. And, yes..I suppose if you made some
custom properties...then you can grab those values too

myvalue = me(strMyFrom).YourCustomGetProperty
 
Back
Top