Jump to content

valramosr

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by valramosr

  1. Olá Pessoal, Alguém já fez gráficos trazendo dados do banco de dados?
  2. Hello, I have an application. When I call the frame it presents the error: Privileged Instruction Below my code: var Nd : TUniTreeNode; Ts : TUniTabSheet; FrC : TUniFrameClass; Fr : TUniFrame; FClassName, iconfile, Path: string; index: Integer; begin Nd := NavTree.Selected; if Nd.Count = 0 then begin Ts := Nd.Data; if not Assigned(Ts) then begin Ts := TUniTabSheet.Create(Self); Ts.PageControl := UniPageControl1; Ts.Closable := True; Ts.OnClose := TabSheetClose; Ts.Tag := NativeInt(Nd); Ts.Caption := Nd.Text; Ts.ImageIndex := Nd.ImageIndex; if Nd.Text = 'Cadastro de Fornecedor' then FrC := TUniFrameClass(TFrameFornecedor); if Nd.Text = 'Cadastro de Prefeitura' then FrC := TUniFrameClass(TfrmPrefeitura); Fr := FrC.Create(Self); Fr.Align := alClient; Fr.Parent := Ts; Nd.Data := Ts; end; UniPageControl1.ActivePage := Ts; end;
  3. Thanks!! VAR URL:String; URL:='/files/PDFs/'+FormatDateTime('ddmmyyyyhhmm', Now)+'myfirstrel.pdf'; UniSession.AddJS('window.open("'+URL+'")'); Only
  4. Hi, I need to open a pdf in another browser tab. How do I do? Use like that! UniURLFrame2.URL:='/files/PDFs/'+FormatDateTime('ddmmyyyyhhmm', Now)+'myfirstrel.pdf'; but opens on the same tab.
  5. How to decrease font on mobile. Two unidbgrid components, uniEdit, uniDbEdit. at mobile. Thanks!
  6. valramosr

    Ajax Error

    But, which version?
  7. valramosr

    Ajax Error

    Ok! Thanks for you reply!
  8. valramosr

    Ajax Error

    Hi guys, When I try load my application mobile. Show this error: "_hdmask_is not defined". But opens the application. my version is 1.0.0.1383. Only mobile!! Thaks!!!
  9. I can use this at DbGridMobile? I need change my DBGrid, to use order style.
  10. Where can I find this example?
  11. I have a big problem! When I generate a report and load it into the application it always accumulates memory. How do I load the pdf from the memory of the application? Running application without reporting: 9.9MB With the first Report: 12.7MB With the second Report: 13.5MB Releasing memory space in the application? Thanks!!
  12. Hi Friend, I use 0.99.96.1321 Whenever I call the application open the session, when I close it still continues the session.
  13. Can not create more sessions! How to close automatically that does not have activity?
  14. Great! Thanks for you reply!!! you saveme.
  15. valramosr

    change cache

    Hello everyone, I have a report exported to pdf. When it generates another report with the same name it loads the one that was in the cache. And not the new. How to change that?
  16. Hello, I have a query with 65 records, but unidbgrid only has 41 in two pages. It was supposed to have 3 pages, due to the number of records. How do I get him all? As I increase the pagination to 1 of 3 or 1 of 4.?
  17. How to use the unitreeviwer by inserting into a tabsheet. Call a form through a treeviwer and insert in the tabsheet
  18. Hi, everybody, I'm a beginner and I'm studying UniGUI. How to call a form in a uniTreeViwer?
  19. Bom dia, Estou começando na ferramenta e estou fazendo uma consulta simples. Uma tela de login trazendo dados em outro form. Ex. Coloco o cpf como senha e em outra tela trago os dados cadastrais. Como faria isso?
  20. como chamar quickreport em um FORM no UniGui?
×
×
  • Create New...