Jump to content

55143681

uniGUI Subscriber
  • Posts

    670
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by 55143681

  1. I just know that C++buider 12 can develop linux app, can unigui project developed with c++builder run in linux? https://blogs.embarcadero.com/how-to-create-a-real-linux-app-step-by-step-guide/
  2. Dear: My project developed with unigui and i use unidac\flexcel\fastreport in my the project, and my project runs well in windows, now I want to change my project to linux paserver, can unigui+unidac+flexcel+fastreport run in linux?
  3. Is there PAServer version for ARM CPU?
  4. I have to use some system base "ARM CPU" AND "C86 CPU", I am so sorry that ,PAServer can not run in that machine, My great unigui life died.
  5. Thanks,Every One. 1.Set ServerModule->filesFolder=e:\fileHome\ 2.UniSession->SendFile(UniServerModule()->FilesFolder+"aaa\\test.pdf"); works well. 3.UniPDFFrame1->PdfURL=UniServerModule()->FilesFolderURL+"aaa\\test.pdf"; works well.
  6. As you say,my web.exe can read and write the files everywhere, but,if I need download the file with URL, then I will meet a missing file error. Such as UniPdfFrame->pdfFile and Session->sendfile(). How to read and write "e:\\abc\\test.pd" not within my web home path?
  7. MY project in my office network, about seventy users, a *.exe runs fast.
  8. I use UniEdit in all my project, I don't know what new in UniSyntaxEdit and UniSyntaxEditEx? Is there some new function with the *Syntax* controls?
  9. See the image: I have two windows server,names server-a and server-b,every server run a unigui standlone server, the program is web.exe,the two server read/write the same oracle rac database, and I want the two server can read/write the same files Store(NAS channel), that is : Server-a and server-b have their web home "d:\",and they can ask the same file path "e:\filesHome" How to do that?
  10. How to kill a session?
  11. A persistent mode will be added. If the property have come out?
  12. If you are using mysql database,you need to card the "slow query problem", what means that if your sql operation on the field not be indexed, the query will be very slowly.
  13. what is the different between UniSyntaxEdit and UniEdit???
  14. As you see ,My project is in "d:\aaatest\debug", In my project's home path, there is a folder "filesHome", my project can read and write all files within that, Now ,I want to read and write a folder out of my project's home path, such as "E:\jdsfajk\dljsafl", Can I do that?
  15. Dear: In my project a.exe, I set ServerModule->filesFolder=abc\, and In another form ,I call "UniPDFFrame1->PdfURL=UniServerModule()->FilesFolderURL+"/123.pdf" to show a pdf file. the problem is : If i run a.exe,the function works well. the function will link to "abc\123.pdf". but : If i run hyper-server.exe to call a.exe,the function works abnomal,the function will link to "files\123.pdf". that is say: I should set something to hyper-server.cfg to change the fileUrl to "abc",How to do that?
  16. I use html2canvas.min.js to snap the form. 1.Add javaScript\html2canvas.min.js to serverModule's customFiles. 2.Add function "canvasSaveAs" to MainForm's Script. function canvasSaveAs(uri, filename) { var link = document.createElement('a'); if (typeof link.download === 'string') { link.href = uri; link.download = filename; document.body.appendChild(link); link.click(); document.body.removeChild(link); } else { window.open(uri); } } 3. call the function from my form. void __fastcall TUniFormAlterMakePdf2::UniBitBtn1Click(TObject *Sender) { String fName; fName = "111capture" + FormatDateTime("yyyyMMddhhnnss", Now()); UniPanel1->JSInterface->JSCode( "html2canvas(document.querySelector(\"#"+ UniPanel1->JSId +"\")).then(function(canvas) {" +" canvasSaveAs(canvas.toDataURL(), \""+ fName +"\");" + "});" ); } Problem: In my new create project(http),that run normal, but in my another project(https),that run with nothing, why?
  17. I use uniDBGrid to input data, after I input field1 and field2 , I want to input field3=field1+field2 automaticly how to do that?
  18. Happy new year for you too.
×
×
  • Create New...