Jump to content

Hayri ASLAN

Moderators
  • Posts

    1617
  • Joined

  • Last visited

  • Days Won

    142

Hayri ASLAN last won the day on April 14

Hayri ASLAN had the most liked content!

About Hayri ASLAN

Contact Methods

  • Website URL
    http://hayriaslan.net

Profile Information

  • Gender
    Male
  • Location
    Toronto - Canada

Recent Profile Visitors

14440 profile views

Hayri ASLAN's Achievements

Advanced Member

Advanced Member (4/4)

493

Reputation

  1. Hello What version of UniGUI are you using? Please adjust your email address.
  2. Hello, Yes, what you're trying to do is possible, but there are a few important details to keep in mind, especially regarding file access permissions and path handling in a UniGUI environment. Since your application runs as a DLL under the web server, file system access is subject to the user permissions of the web server's process. Make sure that the account under which your web server or UniGUI DLL runs (e.g., IUSR, NETWORK SERVICE, or your custom app pool identity in IIS) has read access to C:\musicas\ and write access to C:\my app\files\. uses System.IOUtils, Winapi.Windows; procedure CopyMp3File; var SourceFile, DestFile: string; begin SourceFile := 'C:\musicas\my.mp3'; DestFile := UniServerModule.FilesFolderPath + 'my.mp3'; if TFile.Exists(SourceFile) then begin if CopyFile(PChar(SourceFile), PChar(DestFile), False) then ShowMessage('File copied successfully!') else ShowMessage('Failed to copy the file.'); end else ShowMessage('Source file not found.'); end;
  3. Can you explain what are you trying to achieve?
  4. This is not right. Did you deploy your app correctly?
  5. What automation tool are you using?
  6. After you set it up, it will look like this
  7. The component ID will change every time you add a new component or recreate the form. For those of you developing automation, I recommend setting ServerModule.Options.soControlNameAsId to true. This option will help maintain consistent IDs by using the control names as identifiers.
  8. You need to set Filter property.
  9. Can you create a test case? I can't reproduce the issue
  10. Can you specify first which edition and build of uniGUI are you using?
  11. Can you specify first which edition and build of uniGUI are you using?
  12. Merhaba grid options icindeki dgAllowSelfUpdate yi true yapmaniz gerekiyor
  13. Hi UniGUI doesn’t offer a built-in XLS editor, you can achieve this by combining UniGUI’s ability to embed custom HTML/JavaScript with one of the many JavaScript spreadsheet libraries available. Try using a JavaScript spreadsheet library like Handsontable or jspreadsheet (formerly jExcel) combined with SheetJS for file conversion.
×
×
  • Create New...