08-22-2007 03:48 PM - edited 08-22-2007 03:48 PM
메시지가 08-22-2007 03:50 PM에 labmaster에 의해 편집되었음
08-22-2007 04:13 PM
The function you want is included in lvwutil.zip. You can search the developer zone for it's location.
The most comprehensive information on the windows api is on MSDN.
08-22-2007 04:26 PM
You can read environment variables in labview.
| %SystemDrive% | C: |
| C:\WINNT C:\WINDOWS | |
| %WinDir% | C:\WINNT C:\WINDOWS |
| %SystemDirectory% | C:\WINNT\System32 C:\WINDOWS\System32 |
| %ComSpec% | C:\WINNT\system32\cmd.exe |
| %programfiles% | C:\WINNT\Program Files |
| %Temp% | C:\DOCUME~1\Usr\LOCALS~1\Temp from C:\Documents and Settings\Usr\Local Settings\Temp |
| %Tmp% | |
| %HOMEDRIVE% | C: The drive letter associated with the user's home directory |
| %HOMEPATH% | The path to the user's home directory (excluding drive): \Documents and Settings\Guest |
| %OS% | Windows_NT (even on Windows XP machines The operating system the user is running |
| %USERDOMAIN% | The name of the domain that contains the user's account |
| %USERNAME% | The user's name |
| %USERPROFILE% %USERPROFILE%\Desktop |
The user's desktop folder |
08-22-2007 05:03 PM