Hi All,

I have one userform called "Initial" and one userform called "Data Entry". The "Initial" userform is the initial userform that the user sees upon opening the workbook. It contains two buttons (Data Entry and Reports). Clicking Data entry will show the "Data Entry" userform, this works as it should. This userform has no close button, only the X at the top right of the screen. therefore i have added this code to my userform:

Private Sub UserForm_Terminate()
Unload Me
InitialForm.Show
End Sub
This will work all and good to close the "Data Entry" userform and open the "Initial" userform. Basically creating a switch between the two userforms, i only want the user to go between the two userforms. My problem comes when i then click Data Entry on the "Initial" userform. It shows the "Data Entry" userform but on my other monitor and my userform does not populate my combo boxes or anything, also i am no longer able to close out of the "Data Entry" userform with the X. It is almost as though it is not initializing it or something. Any help on this is greatly appretiated. Thanks.