Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12126
  • Joined

  • Last visited

  • Days Won

    811

Everything posted by Farshad Mohajeri

  1. I will add a solution in future versions. Logged #1120
  2. Try this: ServerModule->StandAloneServer->True
  3. Add uniGUIBaseClasses uniGUITypes UniGUIAbstractClasses to Uses list. Those properties that aren't published are not implemented.
  4. Those properties aren't implemented for web mode hence not published anymore. For Combo use OnSelect instead of OnChage.
  5. http://forums.unigui...ndpost__p__2689 or http://www.unigui.com/wpblog/2011/07/28/migration-to-version-0-86/
  6. It is not clear from your code. You need to send a test case which reproduces the problem.
  7. Solution: if (document.body) { document.body.addEventListener('touchmove',function(event){ event.preventDefault(); },false); }
  8. and add below to MainForm.Scripts: if (typeof window.event != 'undefined') { /* IE */ document.onkeydown = function() /* IE */ { var kc=event.keyCode; return (kc != 9); } } else { document.onkeypress = function(e) /* FireFox/Others */ { var kc=e.keyCode; return (kc != 9); } }
  9. Something like this: function doNextTab(sender, e) { var c=null; var a=e.getCharCode(); if (a==9) { c=sender.nextSibling(); while (c && !c.events['keypress']) { c=c.nextSibling(); } } if (c) c.focus(); } For each Editable Control add below to OnKeyPress client event: function OnKeypress(sender, e) { doNextTab(sender, e); }
  10. You can try applying same logic we used for up/down key. See below example: http://forums.unigui.com/index.php?/topic/1133-version-0860/page__view__findpost__p__3777
  11. You can say that. Currently we can't prevent browser from tabbing thru visual elements until we implement our own special tab key handler which is planned but not for a near future.
  12. Can't say thing for now. You can add request for this in our survey. There will be a version dedicated to new stuff but I can't say the exact version no.
  13. Tab navigation is handled by browser and the only control we have over it is changing the order of tabbing.
  14. Yes, I was about to post this. Recycling Application Pool in IIS 7will unload the dll.
  15. I'm not aware of any other solution. I update my dlls this way.
  16. Closing browser doesn't terminate sessions. Even if you terminate all sessions IIS will not unload DLL module until you manually do this. Another question, why my dll file work in virtual folder, but it doesn't work in the main floder(C:\Inetpub\wwwroot\Project33.dll), why? IIS doesn't allow this. Another question, can we throw off it's the name of the file dll?(I set it by default for visit, but it doesn't work) so we can visit by www.exemple.com Shown as picture2: For this you need some URL rewriting. I don't know the details but you can search web for IIS and URL rewriting.
  17. Purpose of this survey is simple. I want to shape version 1.0 of uniGUI according to developers' actual real world needs. We already did a similar survey before and we do this again to assure that we won't miss any important feature. Please specify the most important features for you that you'd like to see in version 1.0 of uniGUI. You can write as many as features you want and please write them in order of importance with most important feature at top. Thanks.
  18. Good. I will analyze your workaround and try to integrate it in framework if possible.
  19. A dll can be displayed inside a html iframe tag or TUniURLFrame. But I'm not quite sure if this will work for you.
  20. Already logged as #911 Setting hints at runtime.
  21. Frames instances aren't kept internally. They are like other visual controls and can be access through their Owner object.
  22. Hint can only be set before component is displayed. You can't change it after form is displayed. If I understand your question you want to change hint at run time?
×
×
  • Create New...