Jump to content

picyka

uniGUI Subscriber
  • Posts

    1079
  • Joined

  • Last visited

  • Days Won

    34

Posts posted by picyka

  1. CloudFlare: 162.158.155.140, 172.68.191.153
    Client: 138.122.88.211
    Client: 191.253.106.125


    DevSulAssist.exe: 00002F3C: 09:28:30 [162.158.155.140,138.122.88.211]:Failed Sequence Recovery: SeqId: 46, Event: click
    DevSulAssist.exe: 00002F3C: 09:28:30 [162.158.155.140,138.122.88.211]:Processing: Id: 46, Evt: click
    DevSulAssist.exe: 00002F3C: 09:28:30 [162.158.155.140,138.122.88.211]:Processed: Id: 46, Evt: click, [19_JOKMjg7k8110D9077CE]
    DevSulAssist.exe: 00000274: 09:36:07 [172.68.191.153,191.253.106.125]:Sequence Error Timeout : TDiff:10016, Event: mousedown, Expected: 281, Received: 282, [19_Ejw68mCKSn10D9079D7]

    Here analyzing where the IPs are from, they are logs of two sessions, the client that was and is still having problems is the IP 191.253.106.125

  2. I'm also having freezes, in my case it's a frame with a grid, the mask is on the grid, several times it freezes and remains frozen for a few seconds, until released

  3. 11 minutes ago, Sherzod said:

    Or for all DateTimePickers:

    MainForm.Script ->

    Ext.form.field.Date.prototype.formatText="";
    Ext.form.field.Time.prototype.formatText="";

     

    you gave me an incredible path...

     

    Ext.form.field.Date.prototype.formatText="";
    Ext.form.field.Date.prototype.altFormats="dmY|d/m/Y|j/n/Y|j/n/y|j/m/y|d/m/y|j/m/Y|d/n/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|d-m-Y|j-n|j/n";
    Ext.form.field.Date.prototype.selectOnFocus=true;
    
    Ext.form.field.Time.prototype.formatText="";
    Ext.form.field.Time.prototype.altFormats="dmY|d/m/Y|j/n/Y|j/n/y|j/m/y|d/m/y|j/m/Y|d/n/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|d-m-Y|j-n|j/n";
    Ext.form.field.Time.prototype.selectOnFocus=true;

     

  4. 1 hora atrás, Sherzod disse:

    Olá

    Esse evento é acionado toda vez que um novo componente é criado (e é nomeado).

    Yes, I use this event, but a lot of things you can't manipulate/test there, like the properties of a component, as I showed above, if there was an event that could do this, it would be fantastic

  5. Suggestion: Today we have a lot of codes used to configure/adjust some component,
    It would be very useful to be able to configure the component in this event, but there are a lot of things I can't do there.

    ex:

     

    if AComponent is TUniCustomDateTimePicker then
      begin
        if AComponent.ClassType = TUniDateTimePicker then
          TUniDateTimePicker(AComponent).ConfigureFormatDate
        else
        if AComponent.ClassType = TUniDBDateTimePicker then
        begin
          if TUniDBDateTimePicker(AComponent).Kind = tUniDateTime then
            TUniDBDateTimePicker(AComponent).ConfigureDBFormatDateTime
          else
            TUniDBDateTimePicker(AComponent).ConfigureFormatDate;
        end;
      end

    if TUniDBDateTimePicker(AComponent).Kind = tUniDateTime then

    This rule doesn't work.
    This event is very useful, as it avoids having to apply it to each component manually.

×
×
  • Create New...