Message in toolbar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H
Using vb.net 2003 standard version how can I display basically the tooltip messages for any (and all ) controls in a status bar
What I want is to have the text displayed for a control's tooltip, show up in the status bar instead
I do not believe that vb.net 2003 standard version has the extendedinterface.dll for status message included
Any other way?
 
* "=?Utf-8?B?U2FtbXk=?= said:
Using vb.net 2003 standard version how can I display basically the tooltip messages for any (and all ) controls in a status bar.
What I want is to have the text displayed for a control's tooltip, show up in the status bar instead.
I do not believe that vb.net 2003 standard version has the extendedinterface.dll for status message included.

I doubt that the Professional version has this DLL included. You will
have to handle the controls' mouse events and display the texts. This
can be done by enumerating the controls on the form recursively and
adding a "shared" handler for the controls' events using 'AddHandler'.
 
Hi Herfried,

Do you correct this text yourself (I do not exactly understand what you want
to say (I think I do however better is it you correct it yourself) obvious
is that is spoken about the standard version and you come with the
professional version) ?

Cor
extendedinterface.dll for status message included.
 
* "Cor Ligthert said:
Do you correct this text yourself (I do not exactly understand what you want
to say (I think I do however better is it you correct it yourself) obvious
is that is spoken about the standard version and you come with the
professional version) ?

The text doesn't need a correction. If the Professional version doesn't
include a feature, it's very unlikely that the Standard version does.
 
The text doesn't need a correction. If the Professional version doesn't
include a feature, it's very unlikely that the Standard version does.
Nice correction Herfried, now I understand what you mean, of course others
did that already.

We can not be all so clever, you know that for sure the best.

:-)

Cor
 
* "Cor Ligthert said:
Nice correction Herfried, now I understand what you mean, of course others
did that already.

We can not be all so clever, you know that for sure the best.

:-)

LOL -- I beliefe that you understand all your posts you write that I
don't understand and vice versa...
 
Back
Top