VERSION 5.00
Begin VB.Form Outputfrm 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Output"
   ClientHeight    =   1170
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   2085
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1170
   ScaleWidth      =   2085
   StartUpPosition =   3  'Windows Default
   Begin VB.Image ImgLED 
      Height          =   675
      Left            =   600
      Picture         =   "Outputfrm.frx":0000
      Top             =   120
      Width           =   945
   End
   Begin VB.Label Label1 
      Caption         =   "DEL / LED"
      Height          =   255
      Left            =   660
      TabIndex        =   0
      Top             =   840
      Width           =   855
   End
End
Attribute VB_Name = "Outputfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub ImgLED_Click()
' selectionne un detecteur a front descendant

SchemaFrm.ImgPorteAAjouter.Picture = ImgLED.Picture
SchemaFrm.TypePorteLbl.Caption = "LED"
Unload Me
End Sub
