Jump to content

mmurgas

uniGUI Subscriber
  • Posts

    108
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by mmurgas

  1.  

    Friends , I found this excellent free demo for generating a dynamic table, which would be very useful for our users.

     

    The link is: 

     


     

     

    Will it be implemented in our beloved Unigui ?

     

    Personally , I lack knowledge in Javascript, but if we could generate a small demo would be very helpful ...

     

    A cordial greeting to everyone

     

     

    mmurgas

    post-639-0-28152100-1461889572_thumb.png

    • Upvote 3
  2. Solution

     

    RxForForX , abrir cualquier archivo DPROJ-editor de texto, en busca de una fila existe

    El código XML
    1 <DCC_DebugInformation > 0 </ DCC_DebugInformation >

    Y cambiarlo a

    El código XML
    1 <DCC_DebugInformation > false </ DCC_DebugInformation >
  3. Dear, I have Delphi 2010 and unigui 0.99.10.1172 I could not check this demo, it looks phenomenal. My error is "[MSBuild error]" 0 "is an invalid value for the" debugInformation "parameter of the" DCC "task" .... any help will thank
     
    Greetings to all

     

    mmurgas

  4. hello try this code...

     



    procedure ExportarCSV(Dataset: TDataset; Archivo: String);
    var iArchivo: TStringlist;
    Linea: String;
    i: Integer;
    begin
    iArchivo := TStringlist.Create;
    Linea := '';
    for i := 0 to Dataset.FieldCount - 1 do begin
    if Dataset.Fields[i].Visible then begin
    if Linea <> '' then Linea := Linea + ';';
    Linea := Linea + AnsiQuotedStr(Dataset.Fields[i].DisplayLabel, '"');
    end;
    end;
    iArchivo.Add(Linea);
    Dataset.DisableControls;
    Dataset.First;
    while not Dataset.Eof do begin
    Linea := '';
    for i := 0 to Dataset.FieldCount - 1 do begin
    if Dataset.Fields[i].Visible then begin
    if Linea <> '' then Linea := Linea + ';';
    Linea := Linea + AnsiQuotedStr(Dataset.Fields[i].AsString, '"');
    end;
    end;
    iArchivo.Add(Linea);
    Dataset.Next;
    end;
    Dataset.First;
    Dataset.EnableControls;
    iArchivo.SaveToFile(Archivo);
    end;


    Call

    fname := 'F' + FormatDateTime('hhmmss', Now()) + '.csv'; // Create a unique name for report.
    ExportarCSV(Dm.myQuery,UniServerModule.LocalCachePath + fname);
    unisession.SendFile(UniServerModule.LocalCachePath + fname);


  5. Hi all, someone worked with Unigui and Google Drive, am testing cloud products and would like to make a system administrator documents (pdf) that seamlessly connects to google drive.
     
    regards + Thanks
     
    MMurgas

     

  6. Hello Friends, I consult them if someone made ​​connection from Unigui and Dropbox, the idea is to have an evidence base (.PDF) in the cloud, but manage user profiles and upload information from Delphi + Unigui.
     
    If someone can guide me, Many Thanks
     
    Greetings

     

    MMurgas

×
×
  • Create New...