07-22-2008 12:55 PM
07-22-2008 12:59 PM
07-22-2008 09:53 PM
09-12-2012 12:58 PM
Just to jump into this bandwagon. I get that the String indicator will show string or information in BOLD. What if I want to send that string to a file or a balloonTip as BOLD characters? In essence, how to make the String Value completely in Bold font?
09-12-2012 01:09 PM
@VeeJay wrote:
Just to jump into this bandwagon. I get that the String indicator will show string or information in BOLD. What if I want to send that string to a file or a balloonTip as BOLD characters? In essence, how to make the String Value completely in Bold font?
There is no single answer to this question. It depends on where you are sending the data and how that application does it's formatting. There is no universal method for storing information regarding test formatting. Should you send it as PDF, HTML, MS Word or name any other format. ASCII itself, as well as Unicode, do not convey formatting information, only content.
09-12-2012 01:11 PM
What do you mean by sending it to a file as bold? This doesn't make much sense.
As for the tooltip, I know of no way of doing that.
09-12-2012 01:14 PM - edited 09-12-2012 01:14 PM
@VeeJay wrote:
I get that the String indicator will show string or information in BOLD.
Which is because the Bol;d property is set for the string indicator, or are you using a Rich Text Box?
@VeeJay wrote:
What if I want to send that string to a file or a balloonTip as BOLD characters?
To a file? Well... if it's a text file, you won't be able to set the bold property. If a RTF or DOC or other formatted file, then you would have to deal with how it requires to be done. The quick answer would be ActiveX.
What do you mean by baloonTip? (I know what it is, but are you referring to one from LV {tooltip} or another app?)
@VeeJay wrote:
In essence, how to make the String Value completely in Bold font?
You would set it's property to bold. Again, are you referring to an indicator in LabVIEW or something else?
09-12-2012 01:15 PM - edited 09-12-2012 01:17 PM
I display all my errors on BalloonTips on system tray icon of my application. THe message has regular formatting. Any change I make on its property like Font/Size reflect only on the String indicator.
I want the message appearing on the BalloonTip or the message that I save to a File in BOLD font. That's what my question is. It looks like there may not be a way to do that.
09-12-2012 01:16 PM - edited 09-12-2012 01:17 PM
BalloonTip as in Windows BalloonTip that displays notifications on system tray icons. I am trying to show the message in BOLD font. But, all I get is regular font
09-12-2012 01:21 PM
For the file I think you are out of luck. At a minimum you would have to go through some interface which allows you to generate the file in a format that supports formatting properties.
For the balloon strip you may experiment and see if it accepts HTML formatting. Try sending something like <b>your message<\b> to it and see if it bolds it.
As stated above, there is no universal way to accomplish what you want. It will depend on where the message will end up and how that application handles formatting properties.