Jump to content

MarcoRu

Members
  • Posts

    24
  • Joined

  • Last visited

Posts posted by MarcoRu

  1. Hi all, I'm trying to get all visible columns at runtime (in web mode), but if I try to do it using the property Visible of a column, it doesn't work. If I click on the column title to hide or show a column, as shown in picture attached.

     

    post-1040-0-21446700-1381480976_thumb.jpg

     

    the column is hidden, but the property Visible of that colum remain true. How can I retrieve all visible columns at a given time? The code I write is this, but with the property Visible doesn't work:

     

    procedure TmailsFrame.getVisibleColumns(var slColumns: TStringList);
    var
      iCount: Integer;
    begin
      try
        slColumns.Clear;
        for iCount := 0 to UniDBGrid1.Columns.Count - 1 do
        begin
          if (UniDBGrid1.Columns.Items[iCount].Visible = true) then
            slColumns.Add(UniDBGrid1.Columns.Items[iCount].Title.Caption);
        end;
      except
        on e: Exception do
          ShowMessage(e.Message);
      end;
    end;

     

  2. Hi Farshad,

    What do you tink about integrated security? Can you implement it on UniGui? I think it will be very usefull. I want to do a single sign-on for the application where the user's Windows login is automatically passed to the UniGui application and then for that session the user is allowed certain priviledges based on the user name he/she is signed in on their windows machine.

     

     

  3. Does anyone know if is possible implement an UniGui application as a IIS extension and configure the Web Server so it uses the NTLM protocol? I want to do a single sign-on for the application where the user's Windows login is automatically passed to the UniGui application and then for that session the user is allowed certain priviledges based on the user name he/she is signed in on their windows machine. In short, there is a way to implement the Integrated Security with UniGui? Where can I get an example?

  4. I have tried to compile this using XE3, but when I run it it displays 'Carregando...' text at the top of browser window forever. What am I doing wrong? uniGUI is latest version

    Thanks

    I have the same problem using delphi 2009

  5. Sorry, I'm using Windows 7. I make a mistake. I was trying to install a uniGui program not created as service but as VCL Application/Standalone Server :(. There is a way to transform a VCL Application into a Windows Service Application without starting from the beginning?

  6. I try to put the code in a uniGuiForm. This part of code is ok:

     

    {$ifdef COMPILER_10_5_UP}

    SetLength(Result, ValuesList[0].Count);

    for I := 0 to ValuesList[0].Count - 1 do

    {$else}

     

    but the other part give me error

     

    {$else}

    SetLength(Result, ValuesLists[0].Count);

    for I := 0 to ValuesLists[0].Count - 1 do

    {$endif}

  7. Hi all, I'm trying to reproduce the functionality present in this demo CellDraw, in particoular the possibility to show the menu when I move the mouse on a column of a DBGrid. I try to explore all options of TuniDbGrid but I don't find anithig to reproduce this. Can anyone help me?

     

    Marco

    Solved, I upgrade Unigui to the last version

  8. Hi all, I'm trying to reproduce the functionality present in this demo CellDraw, in particoular the possibility to show the menu when I move the mouse on a column of a DBGrid. I try to explore all options of TuniDbGrid but I don't find anithig to reproduce this. Can anyone help me?

     

    Marco

    post-1040-0-93669800-1353430398.jpg

×
×
  • Create New...