Je souhaiterai que lorsque je le lance que ce soit lui seul qui s'ouvre
Je ne cache rien, ce qui n'est d'ailleurs pas dans mon intérêt
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
Private Sub MDIForm_Unload(Cancel As Integer)
Unload Me
Set MDIFormMenuPrinci = Nothing
Unload FormFicheExamen
Set FormFicheExamen = Nothing
Unload FormPatient
Set FormPatient = Nothing
Unload FormRecu
Set FormRecu = Nothing
Unload FormExamen
Set FormExamen = Nothing
End Sub
Private Sub NatureExamen_Click()
FormNature.Show
End Sub
Private Sub Patient_Click()
FormPatient.Show
End Sub
Private Sub Quitter_Click()
Unload Me
Set MDIFormMenuPrinci = Nothing
End Sub
Private Sub Recu_Click()
FormRecu.Show
End Sub
Private Sub Services_Click()
FormService.Show
End Sub
Private Sub TypeService_Click()
FormNatureService.Show
End Sub
Private Sub Utilisateurs_Click()
FormAdminUsers.Show
End Sub
Call Connect
Dim rs As New ADODB.Recordset
rs.Open "select * from tableusers", cn, adOpenDynamic, adLockOptimistic
If txtpwd.Text rs(3).Value And txtlogin.Text rs(2).Value Then
user = rs(2)
pwduser = rs(3)
numuser = rs(0)
LoginSucceeded = True
Me.Hide
MDIFormMenuPrinci.Caption = "MENU PRINCIPAL DU LOGICIEL DE GESTION DU PERSONNEL DE L'ASSOCIATION TIN TUA - Utilisateur connecté : " & rs(2) & " - " & Date & " - " & heure
r MsgBox("Bienvenu(e) " & user, vbOKOnly, "Bienvenue") vbOK
MDIFormMenuPrinci.numuser.Caption = numuser
Dim rsmenuuser As New ADODB.Recordset
rsmenuuser.Open "select * from tablemenuuser where nummenuuser= " & numuser & " ", cn, adOpenDynamic, adLockOptimistic
If rsmenuuser(1) = "Vrai" Then
MDIFormMenuPrinci.Parametrage.Enabled = True
Else
MDIFormMenuPrinci.Parametrage.Enabled = False
End If
If rsmenuuser(2) = "Vrai" Then
MDIFormMenuPrinci.Traitement.Enabled = True
Else
MDIFormMenuPrinci.Traitement.Enabled = False
End If
If rsmenuuser(3) = "Vrai" Then
MDIFormMenuPrinci.Recherches.Enabled = True
Else
MDIFormMenuPrinci.Recherches.Enabled = False
End If
MDIFormMenuPrinci.Show
Else
MsgBox (" Nom de connexion ou Mot de Passe Incorrect !")
End If