how can i do it?
i'm use FormEXDesctop libmy form hasn't got a borders.paratmetr showintaskbar=false hide my form from taskbar but not from alt+tab
i'm can set border style as FixedToolWindow.it is hide form from alt+tab but i don't want see title and borders!
i'm found code for hiding title for VB
but how can i do it in Basic4ppc?
i'm use FormEXDesctop libmy form hasn't got a borders.paratmetr showintaskbar=false hide my form from taskbar but not from alt+tab
i'm can set border style as FixedToolWindow.it is hide form from alt+tab but i don't want see title and borders!
i'm found code for hiding title for VB
B4X:
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim oRegion As New Region(New Rectangle(20, 20, 100, 100))
Me.Region = oRegion
End Sub
Last edited: