home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 25
/
CD_ASCQ_25_1095.iso
/
win
/
fr
/
wninova
/
wnitxtbt
/
fmenu.frm
< prev
next >
Wrap
Text File
|
1995-08-03
|
5KB
|
164 lines
VERSION 2.00
Begin Form FMenu
BackColor = &H00C0C0C0&
BorderStyle = 3 'Trait double fixe
Caption = "Feuille1"
ClientHeight = 4515
ClientLeft = 1770
ClientTop = 1590
ClientWidth = 6975
ClipControls = 0 'False
Height = 4920
Left = 1710
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4515
ScaleWidth = 6975
Top = 1245
Width = 7095
Begin WINO_3DTXTCLASS_GRP2 WinoTxt3D1
BackColor = &H00C0C0C0&
BordEpaisseur = 3
BordExterieur = 5 'MontΘ
BordInterieur = 2 'EnfoncΘ Double
BordLargeurint = 1
Caption = "EvTexteLite1"
CaptionAlignH = 0 'Gauche
CaptionCouleur = &H00FF0000&
CaptionEffet3D = 1 'EnfoncΘ LΘger
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Courier New"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 4530
Left = 0
TabIndex = 0
Top = -15
Width = 6990
Begin WINO_3DBTNCLASS_GRP2 Bouton1
BackColor = &H00C0C0C0&
Bitmap3D = -1 'True
BitmapEcartement= 5
Caption = "DΘmo &Bouton 3D"
CaptionAlignH = 2 'Droite
CaptionEffet3D = 1 'EnfoncΘ LΘger
DessineFocus = -1 'True
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 765
ImageDisable = FMENU.FRX:0000
ImageDown = FMENU.FRX:023A
ImageUp = FMENU.FRX:0474
Index = 0
Left = 280
MousePointer = 10 'FlΦche vers le haut
Ombrage = 2 'Ombre Pleine
TabIndex = 1
Top = 2895
Width = 3110
End
Begin WINO_3DBTNCLASS_GRP2 Bouton2
Autosize = 2 'Taille Bitmap
BackColor = &H00C0C0C0&
DessineFocus = -1 'True
Height = 660
ImageDisable = FMENU.FRX:06AE
ImageDown = FMENU.FRX:09B8
ImageUp = FMENU.FRX:0CC2
Left = 3240
MousePointer = 10 'FlΦche vers le haut
Ombrage = 2 'Ombre Pleine
TabIndex = 3
TexteImage = 0 'False
Top = 3720
Width = 510
End
Begin WINO_3DBTNCLASS_GRP2 Bouton1
BackColor = &H00C0C0C0&
Bitmap3D = -1 'True
BitmapEcartement= 5
Caption = "DΘmo &Etiquette 3D"
CaptionAlignH = 2 'Droite
CaptionEffet3D = 1 'EnfoncΘ LΘger
DessineFocus = -1 'True
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 765
ImageDisable = FMENU.FRX:0FCC
ImageDown = FMENU.FRX:1206
ImageUp = FMENU.FRX:1440
Index = 1
Left = 3625
MousePointer = 10 'FlΦche vers le haut
Ombrage = 2 'Ombre Pleine
TabIndex = 2
Top = 2895
Width = 3110
End
Begin PictureBox Image1
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BorderStyle = 0 'Aucun
ClipControls = 0 'False
Height = 1020
Left = 2985
Picture = FMENU.FRX:167A
ScaleHeight = 1020
ScaleWidth = 1020
TabIndex = 4
TabStop = 0 'False
Top = 165
Width = 1020
End
End
End
Option Explicit
Sub Bouton1_Click (Index As Integer)
FMenu.WindowState = 1
If Index = 0 Then
FMenu1.Show 1
Else
FTxt3D.Show 1
End If
FMenu.WindowState = 0
End Sub
Sub Bouton1_GotFocus (Index As Integer)
Bouton1(Index).CaptionCouleur = QBColor(9)
End Sub
Sub Bouton1_LostFocus (Index As Integer)
Bouton1(Index).CaptionCouleur = QBColor(0)
End Sub
Sub Bouton2_Click ()
End
End Sub
Sub Form_Load ()
FMenu.Caption = "DΘmo ShareWare ""WNITXTBT.VBX"""
WInoTxt3D1.Top = 0: WInoTxt3D1.Left = 0
WInoTxt3D1.Width = FMenu.ScaleWidth
WInoTxt3D1.Height = FMenu.ScaleHeight
Msg = " Nous allons vous montrer quelques exemples" & LN & " d'utilisation de ""WNITXTBT.VBX""." & LN
Msg = Msg & " Nous espΘrons que cela rΘpond α vos besoins"
WInoTxt3D1.Caption = Msg
Call CentrerF(FMenu)
End Sub
Sub Form_Unload (Cancel As Integer)
End
End Sub