Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
DEV3
:
DetecteursFrm.frm
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
VERSION 5.00 Begin VB.Form DetecteursFrm Caption = "Detecteurs de front" ClientHeight = 1350 ClientLeft = 60 ClientTop = 450 ClientWidth = 2805 LinkTopic = "Form2" ScaleHeight = 1350 ScaleWidth = 2805 StartUpPosition = 3 'Windows Default Begin VB.Label Label2 Caption = "Front Descendant" Height = 255 Left = 1440 TabIndex = 1 Top = 960 Width = 1335 End Begin VB.Label Label1 Caption = "Front Montant" Height = 255 Left = 240 TabIndex = 0 Top = 960 Width = 1095 End Begin VB.Image ImgDetectDesc Height = 675 Left = 1680 Picture = "DetecteursFrm.frx":0000 Top = 240 Width = 945 End Begin VB.Image ImgDetectMont Height = 675 Left = 240 Picture = "DetecteursFrm.frx":2202 Top = 240 Width = 945 End End Attribute VB_Name = "DetecteursFrm" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub ImgDetectDesc_Click() ' selectionne un detecteur a front descendant SchemaFrm.ImgPorteAAjouter.Picture = ImgDetectDesc.Picture SchemaFrm.TypePorteLbl.Caption = "DetectDesc" Unload Me End Sub Private Sub ImgDetectMont_Click() ' selectionne un detecteur a front montant SchemaFrm.ImgPorteAAjouter.Picture = ImgDetectMont.Picture SchemaFrm.TypePorteLbl.Caption = "DetectMont" Unload Me End Sub