Jump to content

ibandyop

Members
  • Posts

    36
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ibandyop's Achievements

Newbie

Newbie (1/4)

1

Reputation

  1. I really need SelectedRows. I cannot use UniGui without SelectedRows feature ( i.e. multiselection of rows in a grid ) I see others were asking for it also. http://forums.unigui.com/index.php?/topic/1871-multi-select-in-listbox-and-grids/?hl=selectedrows http://forums.unigui.com/index.php?app=core&module=search&do=search&fromMainBar=1 Can you increase priority please, please. Issue #481
  2. ibandyop

    Themes

    Extra: Please note it is for older version. GUIDE: http://docs.sencha.com/ext-js/4-1/#!/guide/theming URL : http://extbuilder.dynalias.com/springapp/mainpage.htm Docs: http://www.sencha.com/forum/showthread.php?79679-Simple-on-line-Theme-builder-for-ExtJS-3.0.0
  3. ibandyop

    Themes

    There are some fixes here., but it is not complete http://www.sencha.com/forum/showthread.php?140124-Slate-Theme-for-4.0/page2
  4. Try: http://www.raspberrypi.org/wp-content/uploads/2012/02/RPiWerbung3.png press [seturl] then press [encode] button Try: http://aj.gs/2Y.png press [seturl] then press [encode] button Thank you., it works well
  5. zilav and Farshad. Good points. Also I think if the data moves with the user and not the pc . Perhaps save the data with loginname.txt , even include session like Farshad has said if needed.
  6. K0de, Change To @Anders - very nice explanation
  7. When using TUniFileUpload Create your own folder do not use UniGui.LocalFilePath, ie. DestFolder:=UniServerModule.StartPath+'UploadFolder\'; Copy file to UploadFolder from UploadComplete to CopyFile(PChar(AStream.FileName), PChar(DestName), False); Please change direction of slashes from \ to / and use HTTP url format and read http://{url}/Uploadfolder/FName . url should be manually defined to allow domain name in future etc.
  8. Can you explain what you want to achieve. I do not understand you question. Also I should explain setfocus of a Cell in delphi needs EM_SETSEL window message to change to editbox that message is not available in a web browser and other operating systems. I do not know exact solution for you. But if you want focus where you mouse pointer is, you need scripting. Please read document Farshad has described below http://www.unigui.com/wpblog/2011/07/29/client-side-scripting-with-unigui/ and see example ClientEvents in http://prime.fmsoft.net/demo/ucdemo.dll
  9. ibandyop

    SQL Injection

    Use Params to pass user input values to your database., like this qry.SQL.Text := 'update users set name=:name where uid=:uid'; qry.Prepare; qry.ParamByName( 'name' ).AsString := Sanitize(edname.txt); qry.ParamByName( 'uid' ).AsInteger := uid; // not user input qry.ExecSQL; Sanitize depends on database., If using Zeos with Mysql you can use mysql_real_escape_string() in ZPlainMySqlDriver.pas Unfortunately there is no quick solution www.symantec.com/connect/articles/detection-sql-injection-and-cross-site-scripting-attacks 25yearsofprogramming.com/blog/2011/20110205.htm st-curriculum.oracle.com/tutorial/SQLInjection/index.htm msdn.microsoft.com/en-us/library/ms161953(loband).aspx
  10. I think this depends on your theme. You should find the css file and look at x-grid3-row
  11. ibandyop

    Use Keyboard?

    See http://prime.fmsoft.net/demo/ucdemo.dll Example KeyEvents section KeyUp
  12. Yes, each instance should have a different port. i.e., change UniServerModule.Port for each instance by keeping track of last instance in .ini file or checking if port is available.
  13. We use Xampp on windows XP and Windows 2008 with over 50 users with no problem. Win7 should be fine. In httpd.conf I reduced the default ThreadsPerChild 250 to ThreadsPerChild 50 to reduce memory. I notice before service packs are installed the system gets sluggish. a.) You can avoid installing service packs - may not be recommended in your environment b.) Reboot your system once a month after "patch tuesday" after installing service packs c.) Use a RAM fragmentation utility (have not tried) Since your using Win7 I am assuming you have a strong CPU and lots of RAM which are more important than the OS. If your not using odbc32 with PHP., ReactOS has worked fast and reliably for me with Xampp on another low CPU powered system used in production.
×
×
  • Create New...