Hi every one, I don’t know if it can be done, I have a Form " FrmMg " I use it as a pop up message, what I need is to be able for the user when click the word (HERE) another form gets opened.
DoCmd.OpenForm " FrmMg "
Forms!FrmMg.TxAA.Value = "Select a Customer From The List OR click (HERE) to enter a new Customer “
I know I can have readymade form with control contain the word “HERE” linked to the other form, but I’m trying to use same message form for many different scenarios,
But pop-up over pop-uip form is bad UI and user experience. Can you give use more context for a probably better approach?
When you want to resuse a form and open it multiple times in parallel, then you cannot use DoCmd.OpenForm. In this case you need to create an new instance of the form in VBA, e.g.
Open in new window
But again: more context and a concise and complete sample would be helpful for us to better help you.