Skip to main content

Hello,

I need to load some information in a field to be displayed when the cursor passes over the selected field.
I do not know if there's another way but I thought I'd use the TOOLTIP field that would do this automatically.
The problem is that I can not create multiple lines in the tooltip. What I wanted was (for example).
Name - Alberto Ferraz
Country - Portugal
Contact - 351959959959
email - info@esic-lda.com

This information would have to be loaded during program execution it varies from client to client.

I look forward to your help.

Thanks

Best Regards

Alberto Ferraz

Hello,

I need to load some information in a field to be displayed when the cursor passes over the selected field.
I do not know if there's another way but I thought I'd use the TOOLTIP field that would do this automatically.
The problem is that I can not create multiple lines in the tooltip. What I wanted was (for example).
Name - Alberto Ferraz
Country - Portugal
Contact - 351959959959
email - info@esic-lda.com

This information would have to be loaded during program execution it varies from client to client.

I look forward to your help.

Thanks

Best Regards

Alberto Ferraz

Hi Alberto

Try something like this:

set DGWerte::ToolTip to "Name - Alberto Ferraz"    & type System.Environment::NewLine

                     & "Country - Portugal"       & type System.Environment::NewLine

                     & "Contact - 351959959959"  & type System.Environment::NewLine

                     & "email - info@esic-lda.com"

Freundliche Grüsse

Werner Lanter


Hello,

I need to load some information in a field to be displayed when the cursor passes over the selected field.
I do not know if there's another way but I thought I'd use the TOOLTIP field that would do this automatically.
The problem is that I can not create multiple lines in the tooltip. What I wanted was (for example).
Name - Alberto Ferraz
Country - Portugal
Contact - 351959959959
email - info@esic-lda.com

This information would have to be loaded during program execution it varies from client to client.

I look forward to your help.

Thanks

Best Regards

Alberto Ferraz

Hi,

That's right.

I walked to education demand that made the line break and had not been able to find.

It's already working.

Thanks Again