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

VB Code:
  1. Private Sub Form_Load()
  2.    Me.Height = Screen.Height
  3.     Me.Width = Screen.Width
  4. End Sub
  5.  
  6. Private Sub Form_Load()
  7. fme.Move Screen.Width - me.Width, Screen.Height - Me.Height
  8. end sub
  9.  
  10. Private Sub Form_Load()
  11.  
  12. Me.Move (Screen.Width - Me.Width) / 2, _
  13.    (Screen.Height - Me.Height) / 2
  14. end sub
Thanks