Jump to content

MVakili

uniGUI Subscriber
  • Posts

    161
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by MVakili

  1. It Says [dcc32 Fatal Error] uniGUI25Core.dpk(30): E2225 Never-build package 'rtl' must be recompiled (1) [] [dcc32 Fatal Error] pct_uniwebsocket.dpk(37): E2202 Required package 'uniGUI25Core' not found
  2. I have same problem another ways to see this problem, when we have more than 20 columns any Idea?
  3. I didnt found anything .. may help me?
  4. Another Thing I have a component named AAAA ( TfrxReport) AAAA.LoadFromFile('bb.fr3') ; is work correctly, but is I load file into a stream for example MS , this command AAAA.LoadFromStream(MS); make this error raised exception class TfrxInvalidXMLException with message 'Invalid file format'
  5. its a ready theme and I dont like it I like to paint form by myself
  6. I dont know one of this theme if it important ,I can find it for you later here the real page I change unipanel color as you told me ( UniPanel1.JSInterface.JSCall('setBodyStyle', ['background-image', 'linear-gradient(to top, ......., .......)']); ) but i have problem in unidbgrid and unipagecontrol
  7. Hi Yes its a theme I choice before screenshot
  8. Found it 1- its not Sec .. it is ms 2- its not IntToStr ... its FloatToStr 3- it seems work with Time not Now So we can use this Var T1 ,T2 : TTime; Begin Try ShowMask('Wait ...'); unisession.Synchronize; T1:=Time; .................... Do Somthing T2:=Time; P1.Caption:=FloatToStr(MilliSecondsBetween(T1, T2)) ; Finally HideMask; End;
  9. ShowMask('Wait ...'); unisession.Synchronize; T1:=Now; QR1.Close; QR1.SQL.Text:='Select some field from some table ..........................'; Try QR1.OPen; Except on E:Exception Do Begin ShowMessage('....................'); Exit; End; End; G1.DataSource:=DQR1; T2:=Now; P1.Caption:=IntToStr(SecondsBetween(T1, T2))
  10. another question ShowMask('Wait ...'); unisession.Synchronize; T1:=Now; .................... Do Somthing T2:=Now; P1.Caption:=IntToStr(SecondsBetween(T1, T2)) Always shows 0 how I can calculate the time of proccess
  11. I start a new project , then add a unibitbtn and wrote this lines for test procedure TMainForm.UniBitBtn1Click(Sender: TObject); begin begin try showmask('Wait...'); unisession.syncronize; Sleep(1000); finally hidemask; unisession.syncronize(); end; end; end; But it says [dcc32 Error] Main.pas(40): E2003 Undeclared identifier: 'syncronize' whats wrong ? should I add any unit ?
  12. I found number 1 answer Unicheckbox1.parentcolor:=False
  13. I wrote a testcase for you but here everything is ok !!!!!!!!!!!!! I will check my project again but 2 question 1- how I can transparent for example a checkbox 2- how I can change color (or transparent) behind of data in UniDbGrid in testcase Test.rar
  14. and how I can change this colors? is there any reference ?
  15. sorry it was my fault , your code works procedure TJRBForm.UniFormShow(Sender: TObject); begin // with UniBitBtn1.JSInterface do // begin // JSCall('btnWrap.setStyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']); // end; UniPanel1.JSInterface.JSCall('setBodyStyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']); end; is it for change of command? setbodystyle setBodyStyle
  16. procedure TJRBForm.UniFormShow(Sender: TObject); begin with UniPanel1.JSInterface do begin JSCall('btnWrap.setStyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']); end; UniPanel1.JSInterface.JSCall('setbodystyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']);
  17. Base on another topic I change the color of unibitbtn UniBitBtn1.JSInterface.JSCall('btnWrap.setStyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']); now I want to change another component like UniPanel UniDbGrid unicheckBox and so on for example is it correct for UniPanel1 unipanel1.JSInterface.JSCall('pnlWrap.setStyle', ['background-image', 'linear-gradient(to right, Cornsilk, DarkKhaki)']);
  18. WOW Thats good do you have any demo page?
  19. Hi dear I cant find uni_DBGridDragDrop.rar may attach again ?
×
×
  • Create New...