home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTest15
- BorderStyle = 0 'None
- ClientHeight = 3045
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3510
- ControlBox = 0 'False
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3045
- ScaleWidth = 3510
- ShowInTaskbar = 0 'False
- Begin VB.CommandButton cmdCreate
- Caption = "Create Window"
- Height = 432
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 3252
- End
- Attribute VB_Name = "frmTest15"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private w As New clsWindow
- Private Sub cmdCreate_Click()
- w.Create Me.HWND, "This is VB managed window", 123, 10, 50, 210, 120, ws_CHILD Or ws_TABSTOP Or ws_VISIBLE Or ws_BORDER Or ws_CLIPSIBLINGS
- End Sub
-