PowerBuilder Function Get Active Directory gf_get_active_directory
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Function Name : gf_get_active_directory // Argument Name : (None) // Return Type : String /////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Local External Functions : // Function boolean GetCurrentDirectoryA (long nBufferLength, ref string lpBuffer) Library "kernel32.dll" /////////////////////////////////////////////////////////////////////////////////////////////////////////////// String ls_temp ULong lul_value Boolean lb_rc lul_value = 255 ls_temp = Space (255) lb_rc = GetCurrentDirectoryA (lul_value, ls_temp) Return ls_temp |
Good Luck!
Subscribe
Login
0 Comments
Oldest