A
aceavl via AccessMonster.com
hi all!
is there a way to change a msgbox so that depending in a value it has 2 or 3
or 4 lines?
change this:
MsgBox("Remisiones:" & vbNewLine _
& "Remision: " & strRem(0) & vbNewLine _
& "Remision: " & strRem(1) , vbYesNo, "Confirmacion")
to this:
MsgBox("Remisiones:" & vbNewLine _
& "Remision: " & strRem(0) & vbNewLine _
& "Remision: " & strRem(1) & vbNewLine _
& "Remision: " & strRem(2) , vbYesNo, "Confirmacion")
right now i'm doing it with a select case but there could be more than 50
lines and i don't like it!
any help is apreciated!
bye
is there a way to change a msgbox so that depending in a value it has 2 or 3
or 4 lines?
change this:
MsgBox("Remisiones:" & vbNewLine _
& "Remision: " & strRem(0) & vbNewLine _
& "Remision: " & strRem(1) , vbYesNo, "Confirmacion")
to this:
MsgBox("Remisiones:" & vbNewLine _
& "Remision: " & strRem(0) & vbNewLine _
& "Remision: " & strRem(1) & vbNewLine _
& "Remision: " & strRem(2) , vbYesNo, "Confirmacion")
right now i'm doing it with a select case but there could be more than 50
lines and i don't like it!
any help is apreciated!
bye