Re: Pop-up login dialog box
I'm not sure what you mean by pop-up. You can call the form as Modal so no other forms can be used until it's closed, if that's what you mean.
Re: Pop-up login dialog box
Hi adriian... Welcome to the forums...:wave:
If you are looking for scrolling effects, then try searching in codebank: Click here to search !
Otherwise, like baja said, show the form as modal.
Eg:
Code:
Private Sub Command1_Click()
Form2.Show vbModal, Me '~~~ Show Form2 as modal
End Sub
....:wave:
Re: Pop-up login dialog box
A pop-up dialog IS a form. Just display it like baja_yu said and hide the controlbox, min and max controls and don't allow resizing of the borders.