Jump to content

stas

uniGUI Subscriber
  • Posts

    489
  • Joined

  • Last visited

  • Days Won

    37

Posts posted by stas

  1. Hello,

    You can  use 

    TWebBrowser component

    or Delphi chromium (https://code.google.com/p/delphichromiumembedded)

    Or  call external browser by 

     

    if ExtractFileExt(GetModuleName(HInstance))='.exe' then
    ShellExecute(Application.Handle,
                   PChar('open'),
                   PChar('http://127.0.0.1:'+IntToStr(port)),
                   Nil,
                   Nil,
                   SW_SHOW);
     
    Regards.
    Успехов.
  2.  

    plugins must be an array:

     

     

    sender.plugins=[ Ext.create('Ext.ux.form.field.MyPlugin', {option:"Value"} ) ];
     

    not necessarily, also works 

     sender.plugins=Ext.create('Ext.ux.form.field.MyPlugin');   

    alert(sender.plugins[0]);

  3. Hi, Stas

     

    This is very good idea, good work,

     

    I will use some of your code in this component, Thank you,

     

    and i hope Mr. Frashad add Popup property in all UniGUI controls.

     

    Regards

    Thanks.

    I`m hope too.

    because the use of "Hacked" controls is not "comme il faut"

    Regards

    • Upvote 2
  4. I can't run ... on local server build with

    Apache Friends XAMPP Lite (Basis Package) version 1.7.3

    Compiled OK on Delphi 2010 and lastes UniGui.

    When I try to run get error

     

    Server error!

    The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.

    If you think this is a server error, please contact the webmaster.

    500

     

    How to run dll?

    Do you try build and run stand-alone Application ?

×
×
  • Create New...