Jump to content

literal

Members
  • Posts

    9
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by literal

  1. Just now, Jean-Marc Kiener said:

    Bazı veritabanları, bir tablodaki örnek veriler değiştiğinde sizi bilgilendirebilir. Ayrıca bunu başarabilecek dB bileşenlerine de ihtiyacınız vardır. Devart sdac bileşenleri web sayfası iyi bir başlangıç olmalıdır.

    I am using Devart Unidac and database is MySQL

  2. I am developing a multiplayer chess application with Unigui. However, in the application I will make, I need to receive the changes on the database table periodically. But should I get it for this by sending a SQL query to the database every second using a UniTimer. Is this a healthy method or couldy you suggest a different way? Thanks.

  3. 10 hours ago, wilton_rad said:


    you must not create variables or share information on the server module.
    use the mainmodule to place your public variables, and their connection component.

    Thank you. My problem solved. I used UniMainModule.[Variable] on MainForm as you say.

  4. I wrote a program using Unigui and MySQL. After logging into the program with my username and password, I read the account balance of the user and show it on the screen. I refresh this data every 5 seconds with UniTimer.

    Although it is a browser entered with a different user name that I have opened from different computers, the information of the last user I entered is visible and other browsers show the last user entered.

    However, I want the balance of that user to appear in each browser. How can I do this?

  5. Remove with radius border on the corners use code below

     

    function window.afterrender(sender, eOpts)

    {

      Ext.get(sender.id).el.setStyle("padding", 0);

      Ext.get(sender.id).el.setStyle("border-width", 0);

      Ext.get(sender.id).el.setStyle("-webkit-border-radius", 0);

      Ext.get(sender.id).el.setStyle("-moz-border-radius", 0);

      Ext.get(sender.id).el.setStyle("border-radius", 0);

    }

    • Like 1
×
×
  • Create New...