I have an
VB.NET 2005 application where a form is displayed in dialog format when the user clicks a hyperlink. The form consists of a textbox with two command buttons below it.
On most machines the box appears normally. However on some computers the two command buttons are missing when the form is displayed. How can I fix this so that the buttons will display on all machines?
My resize event looks like this:
Dim x As Short = Me.Width
btnOK.Left = x - 267
btnOK.Top = Me.Height - 98
btnCancel.Left = x - 173
btnCancel.Top = Me.Height - 98
Thanks for any help.
John