nzfire
asked on
Own Dialog Box
Hi All,
I would like to make my own "dialog box".
What I would like to have is something that is similar to the Common Dialog, but not working with files etc, it will be working with say for instance a list of people.
I would like to be able to call this form/dialog from anywhere in my app and return a name of a person from the list on that form.
something along the lines of:
'//
f_GetName()
frmNamePopup.Show
f_GetName = frmNamePopup.txtName.text
'//
I know that the above idea wont work!!! Its just a thought.
I would like to make my own "dialog box".
What I would like to have is something that is similar to the Common Dialog, but not working with files etc, it will be working with say for instance a list of people.
I would like to be able to call this form/dialog from anywhere in my app and return a name of a person from the list on that form.
something along the lines of:
'//
f_GetName()
frmNamePopup.Show
f_GetName = frmNamePopup.txtName.text
'//
I know that the above idea wont work!!! Its just a thought.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER