Jump to content

Guest

Members
  • Posts

    2514
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Guest

  1. Message from: "Farshad Mohajeri" "Cezar Wagenheimer" . >- My Panels and GroupBox captions don't show in Browser version! Is this >correct? > This is fixed in next version. See online demo in unigui website. There are groupbox and radiogroups with frames and captions. > - It would be good to have some kind of "AutoWidth" to the Grid columns! > =) I will investigate it > > - When is the estimated release of 1.0 version? How mush it will cost? > There are certain things to be done before version 1.0 The biggest task is to complete the documentation. Another one is to add more components and implement all essential pubic and published properties for Standard Controls in web mode. Considering all these I guess version 1.0 will be available somewhere in first quater of next year. While I haven't determined it yet, I can speculate that cost for standard version single developer license should be around a few hundred of EUR or USD. You must also add mandatory Ext JS license fee which is 329 USD. > I'm using it on a project! I will definitely buy it when it is released! > Thanks a lot for your interest. .
  2. Message from: "Massimo Caroccia" "Farshad Mohajeri" ha scritto nel messaggio news:1KKdA7zWLHA.2104@anaxagvs227... > Hi Massimo, > >> Hi Farshad, >> first of all you are the best...your components are wonderful and will >> surely have success. >> > > Thanks for kind words. > >> I try it and it's work fine in my simple tests. Now I want to create a >> site (mysite.mydomain.com) and use it without specifying a port >> (mysite.mydomain.com: 8077), how I can do that? >> > > You can simply change the port number to 80 from ServerModule. Of course, > you must be sure that IIS (or any other webserver that listens port 80) > is not running. > Yes, I tried it and it works fine, but on my web server, there are more websites listening on port 80, this is my problem I want to create a subdomain, such mytest.mysite.com, that can point exclusively to my program even on port 80. > Another method is to deploy your project as an ISAPI module to IIS or > Apache and call it using this format: > > http://mysite.mydomain.com/mymodule.dll This is a good solution... > > Regards, > Farshad Mohajeri > Regards .
  3. Message from: "Farshad Mohajeri" Hi Massimo, > Hi Farshad, > first of all you are the best...your components are wonderful and will > surely have success. > Thanks for kind words. > I try it and it's work fine in my simple tests. Now I want to create a > site (mysite.mydomain.com) and use it without specifying a port > (mysite.mydomain.com: 8077), how I can do that? > You can simply change the port number to 80 from ServerModule. Of course, you must be sure that IIS (or any other webserver that listens port 80) is not running. Another method is to deploy your project as an ISAPI module to IIS or Apache and call it using this format: http://mysite.mydomain.com/mymodule.dll Regards, Farshad Mohajeri .
  4. Message from: "Massimo Caroccia" Hi Farshad, first of all you are the best...your components are wonderful and will surely have success. I try it and it's work fine in my simple tests. Now I want to create a site (mysite.mydomain.com) and use it without specifying a port (mysite.mydomain.com: 8077), how I can do that? Thank you so much. .
  5. Message from: "Cezar Wagenheimer" - My Panels and GroupBox captions don't show in Browser version! Is this correct? - It would be good to have some kind of "AutoWidth" to the Grid columns! =) - When is the estimated release of 1.0 version? How mush it will cost? I'm using it on a project! I will definitely buy it when it is released! Thanks! Cezar Wagenheimer .
  6. Guest

    Charting

    Message from: "Farshad Mohajeri" Hi Gary, Ext JS charts are planned to be added to the unigui component set. It is targeted for version 1.0.0. Regards "test" wrote in message news:cNuo$SkWLHA.2104@anaxagvs227... > Hi Farshad, > > Are there any plans to incorporate charting into unigui? > > Thanks > > > Gary .
  7. Guest

    File Download

    Message from: "Farshad Mohajeri" I will add a download demo to next version. "ldb" wrote in message news:NkD5XolWLHA.2996@anaxagvs227... > How download a file? .
  8. Message from: "Farshad Mohajeri" This feature will be available in next version. You will be able to add html links to labels. "ldb" wrote in message news:v5TX1vmWLHA.2104@anaxagvs227... > With a TUniLabel on the main form I can create a link to download / open a > file. > > UniLabel10.Caption:= ' > target=_blank>test '; > > Put the same label on a frame render on web as palin text (not a link!). > Why? > > There's another method to download a file / image (es. clicking on a > button) ? > > thanks .
  9. Message from: "ldb" With a TUniLabel on the main form I can create a link to download / open a file. UniLabel10.Caption:= ' target=_blank>test '; Put the same label on a frame render on web as palin text (not a link!). Why? There's another method to download a file / image (es. clicking on a button) ? thanks .
  10. Guest

    File Download

    Message from: "ldb" How download a file? .
  11. Guest

    Charting

    Message from: "test" Hi Farshad, Are there any plans to incorporate charting into unigui? Thanks Gary .
  12. Guest

    Some Questions!

    Message from: "Farshad Mohajeri" Hi Cezar, "Cezar Wagenheimer" wrote in message news:KC03Z$cWLHA.2104@anaxagvs227... >I have some basic questions about the functioning of UniGUI. > > How does it works? It creates a session for each user? Can I keep DataSets > open in my datamodule, and each client will only access his own sessions? > Yes, each browser request creates a new session on the server. You can keep your DataSets in two places: 1) MainModule which is automatically created 2) Extra DataModules that are created from uniGUI project wizard. > I have added a dataset to MainModule, and I have opened it on some form... > I tryed to access it on another form, and it seens to not be opened > anymore. > Forms that are opened by same user in same browser window belong to same session. Forms that belong to same session will see same instance of DataSet in MainModule. i.e. if DataSet is open, both forms must see it as open. > Can I add a Global Variable in my MainForm, and this Global Variable will > be only visible to the user that created it? > You can add global variables to MainModule or MainForm. I recommend using MainModule for this purpose. Variables created this way are only visble to session that has created them. Regards, Farshad Mohajeri .
  13. Guest

    Some Questions!

    Message from: "Cezar Wagenheimer" I have some basic questions about the functioning of UniGUI. How does it works? It creates a session for each user? Can I keep DataSets open in my datamodule, and each client will only access his own sessions? I have added a dataset to MainModule, and I have opened it on some form... I tryed to access it on another form, and it seens to not be opened anymore. Can I add a Global Variable in my MainForm, and this Global Variable will be only visible to the user that created it? Sorry for the dumb questions and the poor English! Cezar Wagenheimer .
  14. Message from: "Farshad Mohajeri" This new version mainly focuses on Unicode support and its related bugs in previous versions. New version also removes dependency to Delphi's default Indy version by including a custom version of Indy library. In this custom version all Indy units are renamed by adding letter "u" to beginning of the original unit name. e.g. IdGlobal has become uIdGlobal and etc. This will also fixes Delphi 2009 Unicode support problem. In previous versions of uniGUI Unicode couldn't be supported in Delphi 2009 since Indy version shipped with Delphi 2009 wasn't completely ready for Unicode. Regards, Farshad Mohajeri FMSoft .
  15. Message from: "Farshad Mohajeri" The best way to avoid this using SSL. Currently you must be able to publish your ISAPI dlls with iis and ssl enabled. "Cezar Wagenheimer" wrote in message news:3aaS8aQWLHA.2108@anaxagvs227... > Is there some way to Encrypt the Text from a Edit? > > I'm making a Login Screen to my System, but If someone in network do some > sniffing, it can get the Password! I want to avoid this! I need do Encrypt > the password before it get the request to the server and on my server > (after the Click on the Login Button) I decrypt the password and test for > the login. > > Is this possible? .
  16. Message from: "Cezar Wagenheimer" Is there some way to Encrypt the Text from a Edit? I'm making a Login Screen to my System, but If someone in network do some sniffing, it can get the Password! I want to avoid this! I need do Encrypt the password before it get the request to the server and on my server (after the Click on the Login Button) I decrypt the password and test for the login. Is this possible? .
  17. Guest

    Feature Request

    Message from: "Cezar Wagenheimer" I would be nice to have this! "Oscar Flor" escreveu na notícia da mensagem:tRefGeNVLHA.1900@anaxagvs227... Mr. Farshad: Can be possible to implementate OnDrawColumnCell of TUniDBGrid? I want to strip rows and semaphorize cells based on showed values. Best Regards -- .
  18. Message from: "Farshad Mohajeri" Version 0.78.0.783 can be downloaded from below link: http://www.unigui.com/index.php?option=com_content&view=article&id=103&Itemid=113&lang=en This new installer is not fully tested with all Delphi versions, so it is not made public in standard download page. Like this one all other unofficial intermidiate releases will be available in this page. Regards, Farshad Mohajeri .
  19. Message from: "Tom YU" ÓÚ 2010-09-19 3:09, Farshad Mohajeri дµÀ: > Dear friends, > > Online demo in uniGUI site has been recompiled with Delphi 2010 and unigui > library version 0.78.0. There is also a new page called Unicode to > demonstrate Unicode capabilities. > > Regards, > Farshad Mohajeri > FMSoft Co. Ltd. > > > I tested the demo, very stable, not a "XXXX not defined" error message. In the testing process, only appeared once: Object XXXX not found in session list. It could be timed out, refresh page and try again. Regards Tom YU. .
  20. Message from: "Farshad Mohajeri" Dear friends, Online demo in uniGUI site has been recompiled with Delphi 2010 and unigui library version 0.78.0. There is also a new page called Unicode to demonstrate Unicode capabilities. Regards, Farshad Mohajeri FMSoft Co. Ltd. .
  21. Message from: "Farshad Mohajeri" Currently, you can't. Hopefully in one of the next versions, I will implement something similar which will block UI when a lengthly task is in progress. Thanks wrote in message news:Ogu2kvOVLHA.1900@anaxagvs227... >I want show a wait cursor, but have no idee > how can i do this in webmode. > > regards > Gerhard .
  22. Guest

    Emails

    Message from: "Jason Reid" I'm not really sure, some of them seem to be getting through. -- Jason Reid Systems Developer Compucorp Ltd. www.compucorp.co.uk "Farshad Mohajeri" wrote in message news:n$kY9v3SLHA.2068@anaxavps227.anaxa.local... > Does this persist? > > "Jason Reid" wrote in message > news:GlcEyQ2SLHA.3280@anaxavps227.anaxa.local... >> Hi Farshad >> >> I tried to respond to your last email, but all my messages are bouncing. >> >> >> -- >> > > .
  23. Message from: "gerhard.kimmeringer@mml-ug.com" I want show a wait cursor, but have no idee how can i do this in webmode. regards Gerhard .
  24. Guest

    Feature Request

    Message from: "Oscar Flor" Mr. Farshad: Can be possible to implementate OnDrawColumnCell of TUniDBGrid? I want to strip rows and semaphorize cells based on showed values. Best Regards -- .
×
×
  • Create New...