home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 24
/
CD_ASCQ_24_0995.iso
/
win
/
prg
/
vbstra
/
demoapp
/
ownerfor.frm
< prev
next >
Wrap
Text File
|
1995-06-23
|
1KB
|
64 lines
VERSION 2.00
Begin Form OwnerForm
BorderStyle = 3 'Fixed Double
Caption = "String Object Owner List"
ClientHeight = 3345
ClientLeft = 1245
ClientTop = 2250
ClientWidth = 8310
Height = 3720
Left = 1200
LinkTopic = "Form1"
ScaleHeight = 3345
ScaleWidth = 8310
Top = 1920
Width = 8400
Begin CommandButton biClose
Caption = "&Close"
Height = 345
Left = 90
TabIndex = 1
Top = 60
Width = 945
End
Begin ListBox Owners
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Fixedsys"
FontSize = 9
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 2730
Left = 90
TabIndex = 0
Top = 480
Width = 8115
End
End
Option Explicit
Sub biClose_Click ()
Unload Me
End Sub
Sub Form_Load ()
ShowCatStrOwners Owners
End Sub
Sub ShowCatStrOwners (HListBox As ListBox)
' HListBox.Clear
'
' If CatStrOwners(HListBox.hWnd) < 0 Then
'
' MsgBox "Ooops"
'
' End If
End Sub