1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| If Not IsNull (Me!ListeRevue) or Len (Me!ListeRevue) <> 0 Then
If Not IsNull (Me!ListeSerie) or Len (Me!ListeSerie) <> 0 Then
"Insert Into album Values ( '" & Me!TxtNum & "','" & Me!TxtTitre & "','" & Me!TxtNbPAges & "','" & Me!TxtNbHistoires & "','" & Me!ListeRevue & "','" & Me!ListeSerie & "','" & Me!TxtJaquette & "')"
Else
"Insert Into album Values ( '" & Me!TxtNum & "','" & Me!TxtTitre & "','" & Me!TxtNbPAges & "','" & Me!TxtNbHistoires & "','" & Me!ListeRevue & "',Null,'" & Me!TxtJaquette & "')"
End If
ElseIf Not IsNull (Me!ListeSerie) or Len (Me!ListeSerie) <> 0 Then
"Insert Into album Values ( '" & Me!TxtNum & "','" & Me!TxtTitre & "','" & Me!TxtNbPAges & "','" & Me!TxtNbHistoires & "',Null,'" & Me!ListeSerie & "','" & Me!TxtJaquette & "')"
Else
"Insert Into album Values ( '" & Me!TxtNum & "','" & Me!TxtTitre & "','" & Me!TxtNbPAges & "','" & Me!TxtNbHistoires & "',Null,Null,'" & Me!TxtJaquette & "')"
End If |