Jump to content

billyChou

uniGUI Subscriber
  • Posts

    189
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by billyChou

  1. Hi All! Does anyone know, how to Capturing camera save picture data in andriod or iphone? Thanks
  2. Hi Mierlp About Native print to local device,need develop ocx control for report, print to barcoder if use rs232 your use microsoft mscomctl.ocx. register ocx in local pc like flash app,use Ie browse js connect ocx . it is hard work. ps: browser pdf reader is an ocx can use muti platform, server generate pdf -> local download it and open; report ocx like this. Regards
  3. Native print ot local pc. use ocx(active x) in ie browse. Regards
  4. Hello Components 1.UniDBLookupComboBox 2.UniDBComboBox 3.UniDBLookupListBox 4.UniDBListBox 5.UniDBImage suggest provide ReadOnly property Regards billy Chou
  5. hi all how to Create TUniForm in TabSheet. private { Private declarations } FCurrentFrame:TUniFrame; FCurrentForm:TUniForm; procedure TMainForm.OpenForm(Caption,FormClassName:string); var i:integer; sheet:TUniTabSheet; myForm : TuniForm; begin for i := 0 to pgeMain.PageCount-1 do begin if pgeMain.Pages[i].Caption=Caption then begin pgeMain.ActivePageIndex:=i; exit; end; end; sheet:=TUniTabSheet.Create(Self); sheet.Closable:=True; sheet.Caption:=Caption; sheet.PageIndex:=i+1; sheet.PageControl:=pgeMain; // FCurrentFrame:= TUniFrameClass(FindClass(FormClassName)).Create(Self); // FCurrentFrame.Align:=alClient; // FCurrentFrame.Parent:=sheet; FCurrentForm:= TUniFormClass(FindClass(FormClassName)).Create(Self); // error , Can't find FormClassName, and Can't Create Self // FCurrentForm:= TUniForm(FindClass(FormClassName)).Create(Self); FCurrentForm.Align:=alClient; FCurrentForm.Parent:=sheet; pgeMain.ActivePage:=sheet; end; procedure TMainForm.N15Click(Sender: TObject); begin // myFrm010.WindowState := wsMaximized; // myFrm010.ShowModal; OpenForm('Factory Base','Tfrm_myFrm010'); end; Thanks
  6. reference php4delphi vcl http://sourceforge.net/projects/psvlib/files/PHP4Delphi/ billChou
×
×
  • Create New...