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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top