Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12115
  • Joined

  • Last visited

  • Days Won

    807

Everything posted by Farshad Mohajeri

  1. There is no up limit to number of sessions. The upper limit is determined by systems resources. Memory and OS handles are two important system resources which should never be overrun. In version 0.89.0 will we introduce options and tools to closely monitor and limit number of sessions, resource and memory usage. We will also redesign some of the controls to limit or reduce usage of OS handles which are a limited resource.
  2. It is not a bug. It is not implemented.
  3. Please see CharEOL demo.
  4. You can use OnDrawCellEvent for this.
  5. ConformDelete is implemented in uniGUI. At which line you fail to compile? Please paste your code here.
  6. Apache 2.2 web server for Windows allows running ISAPI modules. For this, a plugin called mod_isapi must be enabled. Apache doesn't have a visual interface for configuration. You must do some modifications to httpd.conf file. First of all, uncomment the following line: LoadModule isapi_module modules/mod_isapi.so Next you must associate .dll files with ISAPI module. Add the following line AddHandler isapi-handler .dll Next step is add your module directory to Apache directory entries. <Directory "C:/webapps"> Options Indexes FollowSymLinks ExecCGI AllowOverride None Order allow,deny Allow from all </Directory> Finally create a new Alias for your directory. Alias /mywebapps "C:/webapps" Be sure to restart your Apache server after making the necessary modifications to httpd.conf file.
  7. I have no experience with xampplite. Have you read the section about Apache 2.2 deployment? http://www.unigui.com/resources/online-documentation
  8. You want to validate cells in OnKeyDown event?
  9. Simply saying it failed gives me zero clue about the issue. It failed but how? When? Code sample? Please send to: info@fmsoft.net
  10. Farshad Mohajeri

    sendmail

    You can see Indy demos for this purpose.
  11. http://www.unigui.com/wpblog/2012/01/25/version-0-88-is-available/
  12. Well, please answer this question first. Does your app function normally if you don't navigate to an external page?
  13. It doesn't close the session. Session will be closed when it is timed out.
  14. I couldn't find a workaround for this. Flash chart runs asynchronously and doesn't inform when it is finished
  15. If you try to set chart values too fast, I mean before chart has finished current rendering this problem can happen.
  16. My suggestion is to describe your problem in complete detail.
  17. You need to reduce the problem to a specific point. I have no idea what your app internally do or what components it use. There is no way for a uniGUI DLL to cause a 500 error. Especially on IIS7 where isapi apps run in isolated pools. An isapi app can crash, but it is very unlikely to crash the web server itself. In worst case you can re-run app by recycling the related pool and there is no need to restart the web server. As I told you need to simply your app and observe the exact point where problem starts. For example what happens if you don't redirect your app to another web page?
  18. What functionality do you want to achieve? I understand that you want to leave a uniGUI session by navigating to another page then return back to it. Am I correct?
  19. You can't re-open a closed session. Once it is closed it can't be re-opened. You must start a new session. Navigating from uniGUI to another web page and then returning back is not a safe practice and not supported by uniGUI.
  20. You can simply put a UniScreenMask on form and attach it to any TUniLabel
  21. http://forums.unigui.com/index.php?/topic/1545-version-0880/page__view__findpost__p__6035
  22. General uniGUI components: UniButton, UniEdit,..etc. uniGUI doesn't offer components for a specific purpose, just general components which you can use for any purpose.
×
×
  • Create New...