what alternatives do I have to msgbox??

B

bliten_bsas

Hi all, I'm trying to post a disclaimer in a financial model through a
msgbox that pops up when opening an excel file. The problem I have is
that the msgbox has a space limit of 1024 characters which I'm afraid
is not long enough. What alternatives do I have??? Thanks a lot!
 
S

Sandy

You can make a splash screen using a user form... a quick example:

Place in the sheets Sheet level module:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
UserForm1.Show
End Sub


Create a userform and create a label and type some text
then place this code in the userform code

Private Sub Label1_Click()
UserForm1.Hide
End Sub
Private Sub UserForm_Click()
UserForm1.Hide
End Sub

HTH

Sandy
 
R

RB Smissaert

Just noticed that the zip file doesn't contain the compiled dll.
Will add this, but it will take a while to come through the website.

RBS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top