Jump to content

epos4u

uniGUI Subscriber
  • Posts

    531
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by epos4u

  1. Brother mhmda, awesome video from the master, loving it thank you so so so much
  2. that would be great, will it work with VPN too
  3. sorry my bad, was half asleep cUserName:string; cUserName:=trim(UserNameUniEdit.Text) EmployeeTable.CommandText:='select * from employee WHERE ID='+cUserName ; you only need quotedtsr() function if ID is string
  4. then change cUsername or use cUsernameID as integer cUsernameID := StrToIntDef(trim(UserNameUniEdit.Text), 0); then EmployeeTable.CommandText:='select * from employee WHERE ID='+ cUserNameID ; will work
  5. are you sure your ID is string, seems like Integer, check your data structure is ID integer or string error might be here { Public declarations } cUserName:string;
  6. maybe you need to use QuotedStr() function EmployeeTable.CommandText:='select * from employee WHERE ID='+ QuotedStr(cUserName) ;
  7. Thank you brother mhmda, totally awesome as always best teacher
  8. just one word... Awsome really nice work brother
  9. epos4u

    Our Portal design

    Mashallah great interface brother
  10. I am using delphi 10.4 and last version of UniGui. Thank you for your execllent work
  11. HI AntonioaCuomo Thank you for the checkout files, i copied and pasted your preloaded component still not working, option A works , but option B nothing, even tried with your checkout, unibtnpaypal1.InitButton does nothing or not firing as anyone else tried option B or is it just me
  12. Hi AntonioCuomo, tried the above, copy and paste will only copy first line into the Template field, tried all sorts any chance you can post a sample please thank you
  13. how do you add the above template, can't seem to get it working, maybe doing something wrong
  14. Hi, on the paypalbutton demo how do i delete the frame once clicked tried (Sender as TUniBitBtn).Parent.Destroy; which only works once
×
×
  • Create New...