OVH Cloud OVH Cloud

Tradruire Msg en UserForm

1 réponse
Avatar
Bruno ALEMANNO
Bonsoir le groupe,

Un un Message Box comme ceci

MsgBox " TRES IMPORTANT " & vbLf & vbLf & "Si vous ajoutez une
fiche" & vbLf & vbLf & " L'index suivant est le" & vbLf & vbLf &
[lookup(9^9,Base!A:A)] + 1, vbInformation, " Bruno ALEMANNO "

Dans un UserForm je souhaiterais connaître si
il est possible dans un textbox de faire apparaître la même fonction


--
Merci
Amicalement
Bruno

1 réponse

Avatar
MichDenis
Bonjour Bruno,

essaie ceci :


Dim LeTexte As String

LeTexte = "TRES IMPORTANT" & vbLf & vbLf & _
"Si vous ajoutez une fiche" & vbLf & vbLf & _
" L'index suivant est le" & vbLf & vbLf & _
"[lookup(9^9,Base!A:A)] "

Me.TextBox1.MultiLine = True
Me.TextBox1.Text = LeTexte


Salutations!



"Bruno ALEMANNO" a écrit dans le message de news:
Bonsoir le groupe,

Un un Message Box comme ceci

MsgBox " TRES IMPORTANT " & vbLf & vbLf & "Si vous ajoutez une
fiche" & vbLf & vbLf & " L'index suivant est le" & vbLf & vbLf &
[lookup(9^9,Base!A:A)] + 1, vbInformation, " Bruno ALEMANNO "

Dans un UserForm je souhaiterais connaître si
il est possible dans un textbox de faire apparaître la même fonction


--
Merci
Amicalement
Bruno