Jump to content

Skepsis IT

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Skepsis IT

  1. Skepsis IT

    Flexcel

    Works great! I appreciate it!
  2. Skepsis IT

    Flexcel

    Hi, I am facing the same problem, do you remember the procedure?????
  3. Thanks Farshad! Of course DLL only!
  4. Hi, does hyperserver works on apache? Regards
  5. Hi, there is no a significant gain but using IIS is better for managing application when there are more than one. For example if you use services and running more than one applications you should define a different port for every application and make the appropriate changes on the firewall, router etc. On the other hand IIS uses one port and every app is a subdomain/subfolder... Regards
  6. Hi, there is no UniNumberEdit layoutconfig properties. Regards
  7. Hi, I'm in front of a strange problem. I have a unidbgrid with a memo column that I have set an editor unimemo. Only at the first time that I load data on the grid I get the following error and the problem came from the specific command at unidbgrid.pas . If I comment it out works ok (without an error). The strange thing is that I make the same to other frames and work ok without an error Does anyone has a clue what's going on? Regards
  8. So it is a bug..... Must work both ways correct
  9. @Sherzod if you want to play with it just paste the following sample code procedure TMainForm.UniButton1Click(Sender: TObject); var dchart:TUniChart; radarseries:TUniRadarSeries; begin if assigned(dchart) then dchart.Free; DChart:=TUniChart.Create(self); DChart.Parent:=MainForm; DChart.Showhint:=True; DChart.TitleVisible:=False; DChart.LayoutConfig.Flex:=1; DChart.LayoutConfig.Width:='100%'; DChart.LayoutConfig.BodyPadding:='10'; DChart.Animate:=True; DChart.SeriesList.Clear; radarseries:=tuniradarseries.Create(dchart); radarseries.Parent:=DChart; radarseries.Highlight.Enabled:=True; radarseries.Brush.Default:=False; radarseries.Brush.Opacity:=0; radarseries.Add(10,'speed'); radarseries.Add(10,'stability'); radarseries.Add(10,'accuracy'); radarseries.Add(10,'not remember'); radarseries:=tuniradarseries.Create(dchart); radarseries.Parent:=DChart; radarseries.MarkerConfig.Shape:='cross'; radarseries.MarkerConfig.Width:=100; radarseries.Add(4,'speed'); radarseries.Add(9,'stability'); radarseries.Add(7,'accuracy'); radarseries.Add(6,'not remember');
  10. Hi everybody, does anyone face a problem with the way that uniradarseries shows values; For better understanding see the attached picture. There is a uniradarseries having opacity 0 and value 10 and another uniradarseries having the specific values on the grid at the right of the picture. e.g. Flexibility 7,5 but on the uniradar is a lot of above 8. Regards
  11. Anyone build it for Delphi 10.3?
  12. Hi, I have attached a simple testcase. Looking forward for your answer. Regards testcasegrideditor.zip
  13. Same behavior with 1500 release.
  14. Hi, I need to create all the columns on a dbgrid dynamically and also have some grouping. Everythings works fine but no grouping. For example after I create columns dynamically for I := 0 to cds.Fields.Count-1 do begin grdData.Columns.Add; grdData.Columns[i].FieldName:=cds.Fields[i].FieldName; grdData.Columns[i].Alignment:=cds.Fields[i].Alignment; grdData.Columns[i].Sortable:=True; ..... end; grdData.Grouping.FieldName:='athletename'; grdData.Grouping.ShowCaption:=True; grdData.Grouping.ShowValue:=True; grdData.Grouping.Enabled:=True; grdData.DataSource:=Datasource1; grdData.Refresh; Anyone have a clue? Regards
  15. I have set up topaxis and all the other fields that I need at design time. According to some input a datasource is open at runtime. I show the columns created and then an empty Grand Total. For example I saved data to a clientdataset and load it at design time, and it is working.
  16. Hi, pivotgrid does not working when I load data from a dataset at runtime. Works only data is loaded at design time, like the demo example. Regards
×
×
  • Create New...