Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12125
  • Joined

  • Last visited

  • Days Won

    810

Everything posted by Farshad Mohajeri

  1. One of the components you use creates it. uniGUI doesn't create such a file. There is a problem with credentials here. You must carefully check access rights. You can also try giving full access to everyone for that folder.
  2. Class must be registered first: initialization RegisterClass(TUniForm1); end. Without Registering your Form Class, FindClass will not work neither in VCL nor in web.
  3. I need to know to real exception message. In your code exception is suppressed. Can you send the real exception message?
  4. What is the URL you use to access your ISAPI app?
  5. Try giving full access to IUSR account.for c:\inetpub\wwwroot\markbook folder.
  6. 883 is the final build. Note: MonitorBrowserResize renamed to MonitorScreenResize
  7. I see. We need to implement Align property for TUniForm in web mode. Logged #1083. You can try page mode or use a maximized Form for instead.
  8. BTW, I wonder why you need screen width in OnCreate event. Advanced aligning and anchoring features of uniGUI should be more than enough for all sort of auto-sizing tasks.
  9. After Form OnScreenResize event. In new build 882 it is only available if MainForm.MonitorBrowserResize is True.
  10. I'm looking into issue. I can see the problem and trying to find a solution.
  11. The best solution is to prevent any single IP from owning more than one session at a time. Already logged as #1003 Same thing can be done by tracking cookies.
  12. Try setting UniForm.AutoScroll -> True
  13. For UniDBGrid: function OnCellmousedown(sender, rowIndex, columnIndex, e) { var c = sender.getXY(e); ajaxRequest(sender, 'CellXY', ['x='+c.x, 'y='+c.y]); } Monitor this event on server side to get X and Y.
  14. Do you need a X,Y position?
  15. Position of the mouse? Do you mean the grid cell which is click?
  16. http://delphi.about.com/od/delphitips2007/qt/memory_usage.htm
  17. Task Manager doesn't show the actual memory usage after sessions are released. Windows doesn't immediately release the memory pool reserved for your app. For your case after creating 100 sessions task manager will show 60 MB memory usage. Now terminate all sessions. Task manager still shows 60 MB usage. Now if you recreate another 100 sessions memory usage will not increase because same memory pool is used again.
  18. Then you must find another workaround or redesign your UI.
  19. Alternatively you can show/hide panels.
  20. It is possible only by modifying Z-Index property, but Ext JS manages Z-Index internally and it is not open for general usage. Besides, I think you shouldn't normally need doing this. Ext JS provides lots of other options.
×
×
  • Create New...