Jump to content

newsanti

uniGUI Subscriber
  • Posts

    323
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by newsanti

  1. My code is wrong with invalid control object to displayimage. Solved.
  2. I think...after change image index...on server. client don't change. how to force client change?
  3. Thank. testcase passed. with form and Frame
  4. unigui v1549 I want to change Image by change ImageIndex but after change ImageIndex, Picture does not update.
  5. MyFrame.Image_PROFILE.Images:= ImageList48x48 MyFrame.Image_PROFILE.ImageIndex:= X; Picture don't show update
  6. unimChart1 & Polar Series Panel Touch then Scroll ...OK? But Chart can not touch then Scroll. How to solve this problem?
  7. Is it possible to change Font name, size, or bold it?
  8. ขอบคุณ Farshad Mohajeri ที่ได้เปิดฟอรั่มภาษาไทย ที่จะทำให้การใช้งาน uniGUI สะดวกรวดเร็วมากขึ้น สำหรับนักพัฒนาซอฟต์แวร์ชาวไทย ด้วย Delphi และ uniGUI อยากให้มาช่วยกันถ่ายทอดความรู้ แลกเปลี่ยน ประสบการณ์ ตอบคำถาม เพื่อสนับสนุนคนไทยได้มาใช้งานกันนะครับ ตัวอย่างการใช้ Touch uniGUI เขียนคอมโพเนนต์เพิ่มเติม http://samongai.com:8077
  9. Nothing..white...in uniURLFrame with google website. What is another choice to display google website within uniGUI?
  10. I am newbie for UniGui. I try to assign event with code on form show. I has some question? How to code..? TEventForm = class(TUniForm) UniButton1: TUniButton; procedure UniFormShow(Sender: TObject); private procedure Click_InfoMessage(Sender: TObject); protected public end; implementation uses uniGUIApplication; {$R *.dfm} { TEventForm } procedure TEventForm.Click_InfoMessage(Sender: TObject); begin ShowMessage('Hit Button', procedure(res: integer) begin end); end; procedure TEventForm.UniFormShow(Sender: TObject); begin inherited; UniButton1.OnClick:=Click_InfoMessage; end;
  11. VCL Mode: Frame.Hide; //work Web Mode: Frame.Hide; //don't work Frame alway show Fix web mode: Frame.parent:=nil; //Work Frame not show Frame.Hide;
  12. function TjgCustomWebFormController.CreateInnerForm: TObject; var oFormClass: TClass; begin oFormClass:=FormCell.Properties['FormClass'].AsClass; Result:=TUniFormClass(oFormClass).Create(UniApplication); //for multiple instance of uniForm end;
  13. UniGuiMainmodule create only one instance of a Formclass? Can Create more than one instance? function TjgCustomWebFormCell.CreateInnerForm: TObject; var oFormClass: TClass; begin oFormClass:=Properties['FormClass'].AsClass; Result:=UniApplication.UniMainModule.GetFormInstance(oFormClass,True); end;
×
×
  • Create New...