Default MessageBox Title

  • Thread starter Thread starter ronchese
  • Start date Start date
R

ronchese

Hello All.

Dont know if is a simple question, but I have searched it already and tryied
something with no success.

I would like to know if there is any way to set a default title to all my
message boxes (msgbox) from my application, so I dont need to set it
manually.

Actually, it shows, by default, the assembly name (obs: I got no success
changing the assembly info file)

Cesar
 
I don't think there is a way to do so. But the easiest way is to create
a method/function that calls your messageboxes like the following:

sub messageboxcreator(.....The parameters you usually use...) as
DialogeResults

return messagebox.show(....Your parameters and you set the title
to whatever you want....)

end sub
 
hmmm.. ok. That's the way you use.
If I really cant find any setting to do it, ill use that too
:^P

Thanks
Cesar
 
Back
Top