Jump to content

Search the Community

Showing results for tags 'windows directories ?'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. Hi, 1. To retrieve FireBird Folder (Server side) and others Special windows Folders (Common Application, program Files, system32, ...) Can i use this classical function (uses shlObj) In uniservermodule : ------------------------------------------------- function GetSystemPath(Folder: Integer): string; var PIDL: PItemIDList; Path: LPSTR; AMalloc: IMalloc; begin Path := StrAlloc(MAX_PATH); SHGetSpecialFolderLocation(Application.Handle, Folder, PIDL); if SHGetPathFromIDList(PIDL, Path) then Result := Path; SHGetMalloc(AMalloc); AMalloc.Free(PIDL); StrDispose(Path); end; Usage: Showmessage(GetSystemPath(CSIDL_DESKTOPDIRECTORY)); ---------------------------------------------------- 2. Why should i use (server side) : uniservermodule.startpath Instead of ExtractFilePath(Application.exeName) What is the difference ? 3. To retrieve (client side) DeskTop directory, can i use In MainModule : GetSystemPath(CSIDL_DESKTOPDIRECTORY)) ? Thx.
×
×
  • Create New...