Hi,
I have a msgbox and I'd like to have the colour of the text in a different color:
In the first case, I want the text to be in red, in the second case in green.
How do I know where to find this information?
I looked in the help at: Msgbox Function/ VbMsgBoxStyle (Object Browser) but do not find information on how to put the color for the text?
Thanks!
Maybe just a very general question:
In the objectbrowser, you can choose between Access/ADO/DAO/.. these are all different kinds of "object-oriented-models". I usually always look at DAO but how do you know in which language to search when you have a problem? Can you mix them?
I have a msgbox and I'd like to have the colour of the text in a different color:
Code:
If tblexists = False Then
MsgBox ("Table RAILWAYS is not present in the database")
Else
MsgBox ("OK: Table RAILWAYS is present in the database")
End If
In the first case, I want the text to be in red, in the second case in green.
How do I know where to find this information?
I looked in the help at: Msgbox Function/ VbMsgBoxStyle (Object Browser) but do not find information on how to put the color for the text?
Thanks!
Maybe just a very general question:
In the objectbrowser, you can choose between Access/ADO/DAO/.. these are all different kinds of "object-oriented-models". I usually always look at DAO but how do you know in which language to search when you have a problem? Can you mix them?