A alex Jan 22, 2004 #1 Is there a way to change the title bar of msgbox from <Microsoft Access> to <My Application Name>? Thank you , Alex
Is there a way to change the title bar of msgbox from <Microsoft Access> to <My Application Name>? Thank you , Alex
C Cheryl Fischer Jan 22, 2004 #2 You can use the MsgBox() function, which has an argument for Title, instead of the MsgBox statement.
D Dirk Goldgar Jan 23, 2004 #3 Cheryl Fischer said: You can use the MsgBox() function, which has an argument for Title, instead of the MsgBox statement. Click to expand... I think this is a false distinction. AFAIK, there is no MsgBox statement, only a MsgBox function, which like all functions can be called either with or without making use of its return value. In other words, this ... Dim retval As Integer retval = MsgBox("Boo!", vbExclamation, "Look Here") ' ... and then do nothing with retval ... is no different from ... MsgBox "Boo!", vbExclamation, "Look Here"
Cheryl Fischer said: You can use the MsgBox() function, which has an argument for Title, instead of the MsgBox statement. Click to expand... I think this is a false distinction. AFAIK, there is no MsgBox statement, only a MsgBox function, which like all functions can be called either with or without making use of its return value. In other words, this ... Dim retval As Integer retval = MsgBox("Boo!", vbExclamation, "Look Here") ' ... and then do nothing with retval ... is no different from ... MsgBox "Boo!", vbExclamation, "Look Here"