Jump to content

MarcoRu

Members
  • Posts

    24
  • Joined

  • Last visited

Everything 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. 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. Resolved with help of Jason Reid. Many thaks!!
  5. I read the post, but I can't do it. I don't have a ClientDataset. I have a UniDbGrid, a DataSource and a AdoQuery. There are other ways to do this? I'm trying with onDrawColumnCell but I can't.
  6. I have the same problem using delphi 2009
  7. Hi all, I'm trying to draw images in a column, depending the value of a cell. I don't have a client dataset, but a uniDBGrid, a datasource and a TAdoquery. I want reproduce something as shown in attached pictures (see column 'Stato'). Is possible to do do something similar with Unigui?
  8. If I use a UniStringGrid, in web mode I can't resize the column's with. In application mode it works.
  9. 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?
  10. I receive no message. The application start, but I don't see it under service list. It starts in the same way as i run it manually. I'm running from command promp as administrator
  11. Hi, I'm having the same problem. Can you tell me how you resolve? I run "myapplication.exe -install" but it is not added on my services list
  12. I try to follow your Workaround (changing the Library search path) and it works
  13. Hi Farshad, cnPack is not installed on my Delphi. Now I have installed the latest build and the problem persist
  14. 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}
  15. I can't give you access to my computer. Is in a VPN and for corporate policies I can't give them
  16. Solved, I upgrade Unigui to the last version
  17. Hi, I'm installing the latest UniGui components and when I build the uniCUIChart12.pbl, I have this error: [DCC Error] uniChart.pas(581): E2003 Undeclared identifier: 'ValuesLists'
  18. 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
×
×
  • Create New...