03-12-2009 02:36 PM
I would like to launch a folder popup from my CVI code.
I tried using LaunchExecutableEx("c:\\data"), but that does not work. Does anyone know how to make a folder popup?
Solved! Go to Solution.
03-12-2009 02:50 PM - edited 03-12-2009 02:52 PM
Hi Steve,
Try LaunchExecutableEx ("explorer.exe /select, \"c:\\data\"")
To make it enter into the "data" folder you have to write a file's path in c:\data.
So it will be something like LaunchExecutableEx ("explorer.exe /select, \"c:\\data\\volts.txt\"")
I know this method because I use it as a custom tool in CVI Tools menu.
Maybe there is a way of opening the folder without specifying a file name, but I do not know that.
Hope this helps,
Note to the webmaster: I am sick of these paranthesis turning into smileys. Grrr..!
03-13-2009 03:40 AM