01-26-2010 08:48 AM
Solved! Go to Solution.
01-26-2010 08:52 AM
Was already discussed here:
[OT: Windows] How to set Browser View Menu to Thumbnail?
Hope it helps,
Andrey.
01-26-2010 10:04 AM
I read through that, but it didn't really help me. While I can somewhat follow what's going on in other languages sometimes, I'm really only familiar with LabVIEW, and I wasn't able to understand that link at all. Making my own will be a monumental task also, because I need to have the ability to do all the things the windows dialog box does. The thumbnails need to have their name below them, need to be able to click on a thumbnail and open that file, need to be able to type in a file name, and it needs to narrow the file names down according to what you've typed in, just like the windows dialog box does. This is for a machine being used in a factory, so it needs to be very user-friendly and intuitive.
Can anyone explain in LabVIEW terms what I need to do to change the view to thumbnails, like they are in the link? Thank You.
http://msdn.microsoft.com/en-gb/magazine/cc164009.aspx
01-26-2010 10:17 AM
JMBacker wrote:I read through that, but it didn't really help me. ...
http://msdn.microsoft.com/en-gb/magazine/cc164009.aspx
Some programming work required here (with WinAPI knowledge).
In few words:
- call Open Dialog in LabVIEW in one thread -> Dialog appeared.
- get handle to this dialog in another thread (lvwutil32 may be helpful here)
- send message for thumbnail view: SendMessage(WM_COMMAND, ODM_VIEW_THUMBS);
If you a bit lucky, then view will be changed...
Unfortunately I haven't "ready for use" solution... Ben, probably you?
Andrey.
01-26-2010 10:25 AM
Andrey Dmitriev wrote:
JMBacker wrote:I read through that, but it didn't really help me. ...
http://msdn.microsoft.com/en-gb/magazine/cc164009.aspx
Some programming work required here (with WinAPI knowledge).
In few words:
- call Open Dialog in LabVIEW in one thread -> Dialog appeared.
- get handle to this dialog in another thread (lvwutil32 may be helpful here)
- send message for thumbnail view: SendMessage(WM_COMMAND, ODM_VIEW_THUMBS);
If you a bit lucky, then view will be changed...
Unfortunately I haven't "ready for use" solution... Ben, probably you?
Andrey.
Not me!
When I saw the work involved, I let my customer choose, pictures or substance. They chose substance so no ready made solution.
Ben
01-26-2010 10:34 AM
Ben wrote:
Not me!
When I saw the work involved, I let my customer choose, pictures or substance. They chose substance so no ready made solution.
Ben
Ah, all LabVIEW programmers are commonly sooooo lazy... 😉 (me too)
Andrey.
01-26-2010 10:38 AM
01-26-2010 10:40 AM
Andrey Dmitriev wrote:
Ben wrote:
Not me!
When I saw the work involved, I let my customer choose, pictures or substance. They chose substance so no ready made solution.
Ben
Ah, all LabVIEW programmers are commonly sooooo lazy... 😉 (me too)
Andrey.
Look at it the other way...
LV developers are smart (they chose LV) so they use their inteligence to work smarter not harder.
Ben
01-26-2010 03:54 PM
Ben wrote:
Andrey Dmitriev wrote:
Ben wrote:
Not me!
When I saw the work involved, I let my customer choose, pictures or substance. They chose substance so no ready made solution.
Ben
Ah, all LabVIEW programmers are commonly sooooo lazy... 😉 (me too)
Andrey.
Look at it the other way...
LV developers are smart (they chose LV) so they use their inteligence to work smarter not harder.
Ben
Fully agree! But LabVIEW developers are not only smart, they also able to get things done...
Quick and dirty something liike that:
LabVIEW 8.6 / WindowsXP. Not sure about Vista / 7. Too lazy to check it.
Enjoy!
Andrey.
01-28-2010 08:57 AM
Thanks a Million guys, that is working out great.
The help I get from this place is amazing, keep up the great work!