Jump to content

Abaksoft

uniGUI Subscriber
  • Posts

    1555
  • Joined

  • Last visited

  • Days Won

    86

Everything posted by Abaksoft

  1. Oh...Super ! Many Thx Erich That works fine Just for our friends, when importing the Certificate on Android, depending on your Android ; 1. Go to Parameters 2. Wifi 3. Additional settings 4. Certificates Installation 5. Explore your directory to select your Certificat 5. Using Certificate as : VPN & Application (not Wifi) That' all NB: I will post soon here, the program "Certificate in 3 secondes" updated with your great bring. Thx again Erich
  2. - A simple Unigui as Service, HyperServer. - No more than 10 users I would have really wanted to launch a new project with 1000 users in real time and exploit farm server for load balancing (what you are currently using with your 3 servers) but my plan failed. Maybe you should review the structure of your program. - use frames that open and close. - Free up Dataset resources (RAM) immediately. - minimize size of exe file - use Pool connection to avoid braking RDB system _ etc...
  3. Hello Farshad, Can you please correct the file hyper_server.cfg : In section : [hyper_server] server_build=1.95.0.1574 <-- 1.95.0.1575
  4. Salam Muhammad, I apologize for this. I didn't use til now hyperservers technic. As Farshad has done many improvment in the recent versions, i thought that it was OK.
  5. Hello, You can use : FSQrCodeScanner from Falcon Company. Excellent component
  6. Hello Farshad, Hoping all is good. Any update of this ? Function GetTotalActiveSessions With the new websocket Thx
  7. I have'nt try linux. But the unigui documentation seems to be accurate. Can you see on > Deployment section >> Linux >> Native Apache
  8. Salam Muhammad Idris, Also, Did you update on server side your hyper_server.exe (in case of deploying as Service) or. hyper_server.dll ( in cas of isapi) http://forums.unigui.com/index.php?/topic/18298-connection-issues/&do=findComment&comment=101078
  9. Hello Ario, Good. 1. For PC client ( intranet), you have to export your new certificate from your server with : Win + R MMC Then import it to your PC client. That works fine for me. 2. For Android....Hummm... i did'nt succeed. I gave up. I just say to my customers to continue with this not secure site, when runing the url from mobile browser.
  10. Your coding is elegand, it works fine. See in attachment. Test.7z
  11. Yes But, when you say "...and is accessed via rest-ap" can you explain more (from an other application. Not unigui ?)
  12. There is no difficulties on this. OK Step by Step: 1. Create an Unigui Project 2. Add a login form 3. In login form, when user click on Buton OK, then test here his acces in your existing user DB. 3.1 If he is registred then : • 3.1.1. Send a local session variable on UniDataModule , for example --> nbDataBase :=3 (this user has 3 DB ) • 3.1.2 If he is registred then ModalResul:=MrOk If he is not registred then ModalResul:=MrCancel 4. On MainForm Activate event test this : if UniDataModule.nbDataBase<= 1 THEN Form1.ShowModal else Form2.ShowModal Form1 : is your working form Form2 : is a selected DataBase form. _____________ Kind Regards
  13. I confirm. I have Marlon's UniFalcon Components and FSQrCodeScanner is an Excellent BarCode Scanning. It's a professional Package for Professional Developers.
  14. Humm... Only Delphi 11.xx are officially compatible on windows 11. we can't go against time
  15. Just want to confirm this. Yes i realized that Delphi 10.4 is - more stable - and faster Then D11.3 I wonder if I'm not going to come back to D10.4 ✔️
  16. https://www.embarcadero.com/radoffer
  17. Abaksoft

    Keystroke

    Hello Mossy, TUniedit has a property, delay time, on each Keystoke, before the event is gone (wich is by default 250 ms) if i remember. Try to increase this property.
  18. Great, This give me ideas : Many fields applications in area calculation : Medical sector - Agricultural sector ... Many thx Irig.
  19. Thank you Irig, If you don't mind, can you send a sample, showing how to and where to put your script ? Thx again...
  20. Can you send a sample (empty new mobile project) with this AjaxEvent ?
  21. I tested with Touch Login Form and works fine ! procedure TfrmLogin.UnimButton1Click(Sender: TObject); var st:string; begin st:=UnimEdit1.Text; UnimButton1.JSInterface.JSCallGlobal('localStorage.setItem', ['K1', st] ); // Key , Value (always string) end; procedure TfrmLogin.UnimButton2Click(Sender: TObject); begin with UnimEdit2.JSInterface do JSCall('setValue', [jsstatement('localStorage.getItem("K1")')]); // important : Key must be Quoted " " end; procedure TfrmLogin.UnimButton3Click(Sender: TObject); begin UnimButton3.JSInterface.JSCallGlobal('localStorage.removeItem', ['K1']); end; - Unigui Build 1568 - Chrome Version 115.0.5790.102 (Build officiel) (64 bits) See attached LoginMobile.zip LoginMobile.zip
×
×
  • Create New...