PowerBuilder Function Set Active Directory gf_set_active_directory
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function Name : gf_set_active_directory // Argument Name : as_path, Arg Type : String, Pass By : Value // Return Type : (None) /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Local External Functions : // Function boolean SetCurrentDirectoryA (string lpPathName) Library "kernel32.dll" /////////////////////////////////////////////////////////////////////////////////////////////////////////////// String ls_temp ULong lul_value Boolean lb_rc lb_rc = SetCurrentDirectoryA(as_path) |
Good Luck!