hi,
how can i allow resizing of window that doesnt allow resizing,.
also i can hook the hwnd if it helps
Printable View
hi,
how can i allow resizing of window that doesnt allow resizing,.
also i can hook the hwnd if it helps
Hi,
You can try something like this.
vb Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.AutoSizeMode = Windows.Forms.AutoSizeMode.GrowAndShrink ' to avoid that the user can resize the form End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.AutoSizeMode = Windows.Forms.AutoSizeMode.GrowOnly ' allow the user to resizing the form End Sub
uhm. i asked for external window