Не обязательно, это уж слишком крутой метод и форма получается некрасивая. Лучше Form.ControlBox=False, опосля чего Caption оставь пустой. Заголовок и сгинет.EvilCoder писал(а):Плохо смотрел
Form1.BorderStyle=0
Private Declare Function SendMessage Lib "User32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Private Declare Sub ReleaseCapture Lib "User32" ()
Private Const WM_NCLBUTTONDOWN = &HA1
Private Const HTCAPTION = 2
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, Y As Single)
Dim ReturnValue As Long
If Button = 1 Then
Call ReleaseCapture
ReturnValue = SendMessage(Me.hwnd, WM_NCLBUTTONDOWN, HTCAPTION, 0&)
End If
End Sub
Сейчас этот форум просматривают: Yandex-бот и гости: 198