Jump to content

Skepsis IT

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by Skepsis IT

  1. 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

  2. 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

    image.png.0b3a55f8282f01d226058db6cbbbcc81.png

    and the problem came from the specific command at unidbgrid.pas . If I comment it out works ok (without an error).

    image.png.d002cdefb34d61bb6d8f6470b607f678.png

    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

  3. On 7/17/2019 at 5:29 PM, Skepsis IT said:

    @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');

     

     

  4. @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');

     

  5. 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

    uniradar.png

  6. 16 hours ago, Skepsis IT said:

    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.

    Same behavior with 1500 release.

  7. 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

  8. 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.

×
×
  • Create New...