Jump to content

IRWANTO82

uniGUI Subscriber
  • Posts

    85
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by IRWANTO82

  1. how about your specs server open resource monitor and watch about cpu, disk, network if you are using router, you can check high load your network connection detail, % router cpu usage
  2. hi, is "Prompt" can run without call back like desktop ? i tested it, it must using callback. sample UniButton1Click, prompt doesnt appear sample UniButton2Cick with callback, it's showup ServerModule asycnrequest set true; Version:1.90.0 build 1564 procedure TMainForm.UniButton1Click(Sender: TObject); var sFileNameNew, sFileName : string; begin if Prompt( 'Masukkan nama file yang baru' + '<br>' + sFileName + '<BR>' + '<br>', sFileName, TMsgDlgType.mtConfirmation, mbOKCancel, sFileNameNew, True ) = 2 then // 1 ok, 2 cancel Exit; ShowMessage('show after prompt'); end; procedure TMainForm.UniButton2Click(Sender: TObject); var sFileNameNew, sFileName : string; begin Prompt( 'Masukkan nama file yang baru' + '<br>' + sFileName + '<BR>' + '<br>', sFileName, TMsgDlgType.mtConfirmation, mbOKCancel, procedure (Sender: TComponent; AResult: Integer; AText: string) begin if AResult = mrOK then begin ShowMessageN(AText); end; end ); end;
  3. unigui not include all of source code, so you cannot compile it to fpc. though you have pro desktop and complete (desktop+mobile) unigui license, you cannot compile it because some unit not include in source code, only .dcu so you need .ppu with same fpc version and targetplatform
  4. Done, I already mailed via support@fmsoft.net now
  5. Hello sir, Is there any other way to pay saldo, i always failed using fastspring
  6. Maybe later, fpc is goal in roadmap
  7. why should you run unigui in lazarus IDE ? all you need is compile unigui project using fpc console to linux is enough
  8. the best is unigui Design with delphi (i love delphi gui than Lazarus), support compile to fpc win32 (without lazarus), next support fpc linux64, next fpc arm/aarch raspi etc. i m soho using delphi prof without linux plaform (very sad)
  9. linux ? no road map only plan, maybe 2030, and its alfa release haha
  10. IRWANTO82

    log_isapi

    run in standalone .exe and use EurekaLog to trace it
  11. +1 good, we need more theme
  12. what result xss from this http://demo.simple-landlord.com/
  13. i use this but every logout to login form again, original .dll will appear in url link so i use this <html> <head> </head> <frameset rows="100%,*" border="0"> <frame src="http://domain.com/your.dll" frameborder="0"></frame> <frame frameborder="0" noresize=""></frame> </frameset> </html>
  14. thats why i disappointed since seatle, i never use berlin and tokyo because bug not fix my report qc and break my application. but i still paid for yearly support for new release junk i hope lazarus for linux
  15. maybe you want create function to easy execute query, but mask must have parent form, or you must create form runtime in function or yourform.ShowMask('xxx'); try tbl.sql.text := 'select xxxx'; if not execsql(tbl) then exit; .... finally yourform.hidemask; end;
  16. how you handle the row for edit? use form for edit row if its important data, and always use lastupdate field to compare data change by other user before post `lastupdate` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
×
×
  • Create New...