Jump to content

Abaksoft

uniGUI Subscriber
  • Posts

    1558
  • Joined

  • Last visited

  • Days Won

    87

Everything posted by Abaksoft

  1. Hüseyin, Bravo ! - From the technical point of view, Scaning images is greate (can you share it...thx) - Now You can add a in menubar langages Eng - Tur ... For internationalization Regards.
  2. "Trial edition does not contain 64-bit support." http://forums.unigui.com/index.php?/topic/4476-how-compile-demo-project-64-bit-platform-is-it-possible/?view=findpost&p=25861&hl=diagnostic
  3. Thank you very much majori : that's what i was looking for. Thank you adragan for your very nice solution. All the Best for all unigui members...
  4. Hi Majori, Oh...a good idea ! 1. > ...you can close(Block) his port How can I give a special port for each customer ? FireBird has only one port ?! 2. >... to stop and start Customer2 service How can I do this ? Thank you very much...
  5. Hi friends, - Assume we have 10 customers on 10 Folders on a VPS. - Each Customer has his own database : ...\Customer_1\Base1.fdb ...\Customer_2\Base2.fdb ...\Customer_3\Base3.fdb - Assume Customer 2 don't want to paye his annual subscription ! So, Is there a tip to disconnect only Base2.fdb from the VPS Server ? (The others db must be run. I am using FireBird) ______ PS : assume Base2.fdb is always connected 24h/24 from the customer2. So renaming the file Base2.fdb is not a good way. THX.
  6. Hüseyin, congratulations... Nice and fast.
  7. Hello Alessandro, See :http://forums.unigui.com/index.php?/topic/4684-mobile-desktop-switching/?hl=mobile I think since 2014, now you can : 1. Create an hybrid project 2. Set the : serverModule.options SoAutoPlatformSwitch : on But i am not sure. Ask Farshad for this. Regards...
  8. Hello Hendra, See http://forums.unigui.com/index.php?/topic/5116-is-a-standard-delphi-unit-thead-safe/
  9. Hi محمد, For all extra request, Sencha Ext-JS can gives solution : Just put your keyword on search field : clipboard for exemple. https://www.sencha.com/forum/forumdisplay.php?87-Ext-Q-amp-A Regards...
  10. Hellow Erich, For Data property see Topic #8 : http://forums.unigui.com/index.php?/topic/5054-tunitreewview/?hl=obj&do=findComment&comment=25818 Regards.
  11. Hellow Maksim, Try Google search : ------------------- uses Clipbrd; //cut procedure TForm1.Button1Click(Sender: TObject); Var ARect:TRect; begin Clipboard.Assign(Image1.Picture); with Image1.Canvas do begin CopyMode:=cmWhiteness; ARect:=Rect(0,0,Image1.Width,Image1.Height); CopyRect(ARect, Image1.Canvas, ARect); CopyMode:=cmSrcCopy; end; end; //copy procedure TForm1.Button2Click(Sender: TObject); begin Clipboard.Assign(Image1.Picture); end; //paste procedure TForm1.Button2Click(Sender: TObject); begin Image1.Picture.Assign(Clipboard); end; ------------------------- Just replace : - image1 by UniImage1 Regards.
  12. Hello Marco, Yes TreeView is the best Design for web application. If you want to use it, then Frames are the natural choice. Use them like the Demo. See : http://forums.unigui.com/index.php?/topic/5027-each-unitreeview-node-uniframe/ Regards.
  13. Hi all, For who are interesting by developing an embeded android application, with pascal script, you have this: http://sourceforge.net/projects/laztoapk/files/Lazarus%20and%20Android.pdf/download ---- This is not related to unigui, just an info for people who want a simple application as caculated logic (imagine your Key software Generator, in your hand, on your smartphone) without a web server. Regards.
  14. In my knowledge : Yes the two are possible. 1. If you declare it in a global unit (standard Delphi Unit) the constant is the same for all clients (sessions). 2. If you declare it in an UniDataModule or MainModule your constant will be viewed only by one client (its session). Regards...
  15. Hi, Maybe it can help : New release 2.4 http://httpd.apache.org/docs/current/mod/mod_isapi.html
  16. Oh... Very interesting ! It's good to hear. Thx to all, a special mention to adragan with your recital topic.
  17. Hi all, For who are afraid for learning this langage, i discover that it's very easy to use Js Code with unigui. Just add in your code : UniSession.AddJS( ... ) ... is a java script from sencha. See exemples : http://www.sencha.com/forum/showthread.php?196717-Automatically-closing-MessageBox-Showing-differnt-boxes-based-on-success-error-store http://forums.unigui.com/index.php?/topic/3489-how-auto-close-showmessage-dialog-after-1-sec/?hl=dialog+after Regards.
  18. Anyone ? Otherwise, what DB Server are you using with Unigui ? It can give good statistics. Thx...
  19. Hi, I would like your expertise : 1. Best performance with unigui 2. Connectivity (ibDac, myDac, dbExpres...) 3. Stress Increase in load (multi cession) Thx
  20. Hi sokel, yes : - MainModule and UniDataModule are Client side (Target each cession). - ServerModule is Server side. It's dangerous and forbidden to declare a public variable on serverModule. In public section of MainModule, your variable will be global for one thread (1 cession). That's the correct way.
  21. الف شكر محمد Thx Mohammed.
×
×
  • Create New...