I've created a form with sstab control on my pc(1280X768 screen resolution)
And i am trying to run the form on other pc(with 1280 X1024 screen resolution).The Form is fully designed with different controls(SStab..combo etc...)
I have the problem that the form is not displaying completely,
i can view only one part of the form.
Is it a problem with the screen resolution??
I used the following different types of code for resize.
but it is not working
??Any suggestionos please
ThanksVB Code:
Private Sub Form_Load() Me.Height = Screen.Height Me.Width = Screen.Width End Sub Private Sub Form_Load() fme.Move Screen.Width - me.Width, Screen.Height - Me.Height end sub Private Sub Form_Load() Me.Move (Screen.Width - Me.Width) / 2, _ (Screen.Height - Me.Height) / 2 end sub




Reply With Quote