12-23-2009 08:16 AM
Solved! Go to Solution.
12-24-2009 01:24 AM
12-28-2009 07:38 AM - edited 12-28-2009 07:39 AM
Sorry if I wasn't clear. I don't think that InstallPopup() will do what I want, unless there is some other use of that function I'm not aware of. See the attached image, as that's what I would like to do with my application.
12-28-2009 09:55 AM
Hey tstanley -
CVI doesn't offer an API to create one of these balloon popups. However, most other tray icon tasks can be accomplished with functions in the Programmers toolbox. There is a great example that demonstrates these functions named Trayicon.
To create the balloon popup you are talking about, you are either going to have to manage the tray icon API by yourself, or make some modifications to the toolbox.c source code, because some of the necessary manager functions are not exported. Using this as a reference, I added a couple lines of code to toolbox.c (without any error checking for the sake of clarity) to display a very simple balloon popup. Let me know if you have any questions.
NickB
National Instruments
12-31-2009 11:40 AM
Hi nickb,
Thanks for the help. I haven't had a chance the past couple of days to play around with this, but your code works great. I'll have to work on expanding upon it to get it to display my messages, but it looks like I have what I need to get started. Thanks again!