PowerBuilder Function Get Window Directory gf_get_windows_directory
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Function Name : gf_get_windows_directory // Argument Name : (None) // Return Type : String /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Local External Functions : // Function Long GetWindowsDirectory (ref String lpBuffer, Long nSize) Library "kernel32" Alias For "GetWindowsDirectoryA" /////////////////////////////////////////////////////////////////////////////////////////////////////////////// String ls_WinPath ls_WinPath = Space (128) GetWindowsDirectory (ls_WinPath, 128) Return ls_WinPath |
Good Luck!