Jump to content

gustotc

uniGUI Subscriber
  • Posts

    56
  • Joined

  • Last visited

Posts posted by gustotc

  1. it's all right

     

    Unfortunately in Brazil it is also occurring, Delphi is being left out, because here are looking for applications that run 100% on the Internet and the vision that most companies (at least I'm dealing with) is that Delphi is not indicated for this type of application.

     

    I'm using Unigui to try as much as possible to keep my applications in Delphi for some time, but the way it is going to think it will not last long.

     

    Augusto Costa - Brazil

    • Upvote 1
  2. Hi

     

    You can try this js code to check platform. Add MainForm's Script properties.

    
      var userAgent = navigator.userAgent || navigator.vendor || window.opera;
    
      if( userAgent.match( /iPad/i ) || userAgent.match( /iPhone/i ) || userAgent.match( /iPod/i ) )
      {
    		//call your css in here for ios
    
      }
      else if( userAgent.match( /Android/i ) )
      {
    	//call your css in here for android
       
      }
      else
      {
       //call your css in here for other
      }
    }
    

    But why do you check platform? You can change css rules using media queries in css.

    For example

    @media screen and (min-width: 480px) {
        body {
            background-color: lightgreen;
        }
    }
    

    also you can create an hybrid project. Examine Demos/Touch/Hybrid demo.

     

    And you can change layout on clientside. Examine Demos/Desktop/Clientside Alignment - ... demos.

     

     

    Thanks

  3. Delphidude, 

     

    Thank you for return,

     

    excuse my English, I will try to explain below:

     

    In your example this fixed 3 buttons on the toolbar, but need to add new buttons in start menu, my question is how to bring up the toolbar buttons that were not fixed it (new forms for example).

    -> how to dynamically add javascript in new non-fixed calls

  4. Sorry but I did not use (screenmask), would have an example?

     

     But concerning the use of component and example that passed was the author himself (following his comment below) which placed a limitation of the Unigui.

     

     I tried a number of ways including talking to Hayri Aslan who casette me The Following advice:

     (Posted 02 September 2015 - 01:30 AM

     AFAIK you can not do this in one procedure due to unigui restrictions.)


     

    I would like to create something to update on Thread Wait until you stop recording database and then hides the Wait?

     

     Thanks for the feedback.

  5. I really need your help the community, because I'm not having the support Unigui

     

    I am having a problem with the use of a component Wait (UniSpecial Component), you can not execute the Wait, process eg recordings in the database and then hide the wait.

     

    I tried a number of ways including talking to Hayri Aslan who gave me the following advice:

    (Posted 02 September 2015 - 01:30 AM

    AFAIK you can not do this in one procedure due to unigui restrictions.

     

    we need farshad's help

    )

     

    Please help me in this case:

     

    Using example, when i run ShowWaitMe and Hide in the same procedure it does not show the Wait .... only if use in another procedure.

     

    My need is:

     

    Wait ... We do not wait for the user

     

    Recordings in the database

     

    Hide ....

     

     

    Please, how do it?

     

     

    Tfrm_waitme.UniButton1Click procedure (Sender: TObject);

    begin

       with the UniSpWaitMe1

       begin

         Effect: = tWaitmeEffect (UniComboBox1.ItemIndex);

         WaitmeText: = UniEdit1.Text;

         Container: = UniPanel1.JSName;

         SizeW: = Round (UniNumberEdit2.Value);

         SizeH: = Round (UniNumberEdit1.Value);

         ShowWaitMe;

       end;

     

       UniPanel1.Refresh;

     

       sleep (5000);

     

       UniSpWaitMe1.HideWaitMe;

    end;

  6. I need help in UniSpWaitMe component ....

     

    Using your example, when I run ShowWaitMe and Hide in the same procedure it does not show the Wait .... only if use in another procedure.

     

    My need is:

     

    Wait ... We do not wait for the user

     

    Recordings in the database

     

    Hide ....

     

     

    Please, how do it?

     

     

     

    Tfrm_waitme.UniButton1Click procedure (Sender: TObject);

    begin

       with the UniSpWaitMe1

       begin

         Effect: = tWaitmeEffect (UniComboBox1.ItemIndex);

         WaitmeText: = UniEdit1.Text;

         Container: = UniPanel1.JSName;

         SizeW: = Round (UniNumberEdit2.Value);

         SizeH: = Round (UniNumberEdit1.Value);

         ShowWaitMe;

       end;

     

       UniPanel1.Refresh;

     

       sleep (5000);

     

       UniSpWaitMe1.HideWaitMe;

    end;

  7. 1) Either beta licenses will be extended for another 30 days or you'll be given the option to purchase.

     

    2) No. You can continue using your last version indefinitely. For example if you get version 1.2 as your last version before your subscription ends you can continue use it without renewal. However you won't get version 1.3 and further unless you renew your license.

     

    3) You'll get version 0.97 as your first version. It is almost certain that you'll get version 1.0 during your one year subscription. We may jump from 0.98 to 1.0 directly.

    Version numbering is an illusion! It is better to focus on what you actually get in term of quality and stability.

    Thanks for the information.

  8. 1) You can't buy now. It will be announced here as soon as purchase option is available.

    2) What do you mean by a lifetime license?

    3) You will get one year of subscription to all minor and major updates which will be available during your subscription period.

     

     

    1) You can not buy now. It will be announced here as soon as purchase option is available.

    R: OK, but referring to Limit 31/08, how can I use as a developer after that date?

     

    2) What do you mean by a lifetime license?

    R: If I will need to renew the license (eg annually) to continue using the components.

     

    3) You will get one year of subscription to all major and minor updates will be available Which During your subscription period.

    R: That included the 1.0 version?

     

    Thanks for the replies

×
×
  • Create New...