vbAccelerator - Contents of code file: fMDIChild.frmVERSION 5.00
Begin VB.Form frmMDIChild
Caption = "Form3"
ClientHeight = 2880
ClientLeft = 4350
ClientTop = 4725
ClientWidth = 5685
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "fMDIChild.frx":0000
LinkTopic = "Form3"
MDIChild = -1 'True
ScaleHeight = 2880
ScaleWidth = 5685
Begin VB.TextBox txtData
Height = 2115
Left = 60
TabIndex = 0
Text = "Text1"
Top = 60
Width = 4395
End
End
Attribute VB_Name = "frmMDIChild"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'
===============================================================================
=======
' Name: vbAccelerator cActiveTitleBar sample
' Author: Steve McMahon (steve@vbaccelerator.com)
' Date: 25 August 1999
'
' Requires: SSUBTMR.DLL
' cActiveTitleBar.cls
'
' Copyright 1998-1999 Steve McMahon for vbAccelerator
'
-------------------------------------------------------------------------------
-------
' Visit vbAccelerator - advanced free source code for VB programmers
' http://vbaccelerator.com
'
-------------------------------------------------------------------------------
-------
Private Sub Form_Resize()
On Error Resume Next
txtData.Move 2 * Screen.TwipsPerPixelX, 2 * Screen.TwipsPerPixelY,
Me.ScaleWidth - 4 * Screen.TwipsPerPixelX, Me.ScaleHeight - 4 *
Screen.TwipsPerPixelY
End Sub
|
|