Jump to content

donlego

uniGUI Subscriber
  • Posts

    231
  • Joined

  • Last visited

Everything posted by donlego

  1. unigui ver 1472 pro delphi xe 7 browser chrome , firefox
  2. Hello any updates about this bug? I have completed the conversion application from desktop to unigui and want to deploy applications to my customers there are still minor problems in this component Tunidbformattednumberedit cannot input minus
  3. donlego

    use cc

    sory after logout then sign in again i can acces the protected forum thanks
  4. donlego

    use cc

    my forum email and purchase email same, so i leave it blank
  5. donlego

    use cc

    https://prime.fmsoft.net/userv/mportal.dll right account detail form there is an a password field i use customer portal password or forum password ?
  6. donlego

    use cc

    Please enter a correct value for your current password on fmsoft customer portal i insert current forum email and forum password
  7. donlego

    use cc

    hi i was succes made purchase and receive email from fmsoft how i can acces to protected forum area thanks
  8. donlego

    use cc

    Ok, thank you hopefully this week I made a purchase
  9. donlego

    use cc

    dear mr farshad I want to ask if I buy by credit card estimate how long I can get activation code and unigui full version ? and can I use my friend's credit card and license over my email / users ? thank's
  10. procedure TFrmMain.BUTTON_TAB_CETAK(Sender: TObject); var x: TUniURLFrame; begin x := TUniURLFrame(FrmMain.NavPage.ActivePage.FindComponent ((Sender as TUniButton).hint)); x.JSInterface.JSCode ('Ext.defer(function(){'#1'.iframe.contentWindow.print()}, 100);'); end;
  11. Tunidbformattednumberedit error '-' is not a valid floating point value error show when add minus value like -1000 -2000 the control cannot accept minus(-) profesional edition 1.0.0.1424 (trial)
  12. hello i try to add keydown on unidbgrid extevent function keydown(e, t, eOpts) { if (e.getKey() == 13) { alert('a'); ajaxRequest(sender, 'customEvent', { name: sender.text, width: sender.getWidth() } ); } } and in my delphi procedure TFrmPost.gridAjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin inherited; if SameText(EventName, 'customevent') then begin ShowMessage(Params['name'].AsString + ' ' + Params['width'].AsString); end; end; the alert from extevent is show, but the event is nothing can i catch, for the spesifik i want on my grid if i press enter and if grid colum title =a then show_a; if grid colum title =b then show_b; how to catch ajax even and the grid column position/current col/index/title from extevent and call it from delphi ? unigui version : profesional edition v.1.0.0.1424 (trial) thanks
  13. thanks abaksoft, it work one more question , how change display value on left axes with display format like in delphi do format to currency, and how to display each bar value on the top of bar series thanks
  14. hai , i have 1 bar series on the the unichart how to change color of each chart bar on runtime ? UniBarSeries1.Add((4300), 'A'); UniBarSeries1.Add((5000), 'B'); UniBarSeries1.Add((7000), 'C'); thanks
  15. [solved] replace funitoolbutton_close.ClientEvents.UniEvents.Values['beforeInit'] := 'function (sender, config) {config.cls="_customCls"}'; with this UniSession.AddJS(funitoolbutton_filter.JSName + '.addCls(''_customCls'');');
  16. hi i have procedure like this call a form and create runtime unibutton on my form myprocedure(); var funitoolbar: TUniPanel; funitoolbutton_close, funitoolbutton_xls, funitoolbutton_filter: TUniButton; begin funitoolbutton_close := TUniButton.Create(funitoolbar); funitoolbutton_close.ClientEvents.UniEvents.Values['beforeInit'] := 'function (sender, config) {config.cls="_customCls"}'; funitoolbutton_close.Parent := funitoolbar; funitoolbutton_close.Caption := 'Tutup'; funitoolbutton_close.Width := 80; funitoolbutton_close.Align := alLeft; funitoolbutton_close.BorderStyle := ubsNone; funitoolbutton_close.Cursor := crHandPoint; end; but when i set client event there is nothing chenge with my runtime buton style , how can i change the runtime create unibutton beforeinit on runtime ? unigui version : profesional edition v.1.0.0.1424 (trial)
  17. hello, i want to ask how to remove unidbgrid border/lines title column (on the titile column with red bullet on the image) https://ibb.co/bOs08H unigui version trial version 1.0.0.1424
  18. I use last unigui trial on unigui website with delphi xe7
  19. hi.. is there any way to call function / procedure on other form like if i have function/procedure on form error i create procedure like this procedure TFrmError.Run(arun: integer; acaption: string; errornya: tstringlist); var FrmError:TUniForm; begin screen.Cursor := crhourglass; FrmError := TFrmError.Create(nil); with FrmError do begin try Caption := acaption; if caption = '' then caption := 'Error'; caption := application.Title; Memo1.Text := errornya.Text; Memo1.Color := color; if FileExists(ExtractFilePath(Application.ExeName) + 'img\error.png') then Image1.Picture.LoadFromFile(ExtractFilePath(Application.ExeName) + 'img\error.png'); FormStyle := fsStayOnTop; ShowModal; finally screen.Cursor := crDefault; FreeAndNil(FrmError); end; end; end; how i call that form procedure or function from another form ? thanks
  20. is there any tutorial(step by step) to develop until deploy the unigui framework to apache/xamp ? which project type i must select when create a project , if i want to deploy it to apache server ? thank's before
  21. hi , i try to deploy my first ungui app to xp os . build with delphi xe, and fmsoft_unigui_beta_0.89.0.958_setup.exe project type vcl/standalone server , in the servermodule i set the extroot to myfolder which all files ext,app.exe in in the folder(E:\Tes\ALL UNIGUI\Report\) the extroot=E:\Tes\ALL UNIGUI\Report\; but in mybrowser just loading label...
  22. hi Farshad.. i have procedure to resize column in grid procedure Tfrmdefaultlist.rescol; var i: integer; acol: integer; begin acol := UniDBGrid1.Columns.Count - 1; for i := 1 to UniDBGrid1.Columns.Count - 1 do begin UniDBGrid1.Columns.Items[i].Width := UniDBGrid1.Width div acol; end; end; but then column in grid no resize.. i use fmsoft_unigui_beta_0.86.0.880_setup.exe thank's
  23. donlego

    parent form

    hi .. it try to create runtime form with unitabsheet as parent of the runtime form this my code procedure TMainForm.do_CreateTab(acaption: string); var atab: TUniTabSheet; aform: TUniForm; begin atab := TUniTabSheet.Create(self); with atab do begin Caption := acaption; PageControl := UniPageControl1; PageControl.ActivePage := atab; end; aform := TUniForm.Create(UniApplication); with aform do begin Caption := acaption; Parent:=atab; show; end; end; it's work in desktop mode but in browser mode has an error access violation at address 00445AE4 in modeule project1.exe write of address bla bla.. is there something wrong with my code or ?? thanks ...
×
×
  • Create New...