Jump to content

mhmda

uniGUI Subscriber
  • Posts

    1141
  • Joined

  • Last visited

  • Days Won

    157

Everything posted by mhmda

  1. Hi all, I work in Msoft LTD which is located in Middle east and Colombia (bogota) and we are searching for employee for full job in bogota for our software product (Msoft-Nasa) for more details visit www.3msoft.net Job Requirements: supporting: Msoft-Nasa (tour & travel backoofice software) Window 8,7,XP Network Printers Network Sharing RDP- remote desktop Mhmda
  2. Hi, You can use "iconAlign" like this: function OnAdded(sender, ownerCt, index) { sender.iconAlign='left'; //sender.iconAlign='right'; //sender.iconAlign='top'; //sender.iconAlign='down'; }
  3. mhmda

    Contabo.com

    Sure, 1. http://79.143.180.27/texam/techExam.dll 2. http://79.143.180.27/roya/roya_1.dll ( username: 1 password: 1) it is in hebrew :-)
  4. mhmda

    Contabo.com

    I'm now 8 months with contabo and I'm very happy Availability 100% https://contabo.com/?show=vps
  5. hi, I didn't understand your question? could you explain more?
  6. Hi, To help you, Please attach your project here :-)
  7. 1. put the icon file in the dirsctory (you can find here any icon you want: http://www.findicons.com) 2. add the css code to ServerModule-->CustomeCSS: .stngs_icon{ background-image: url("images/stngs.png") !important; } Important: the url directory depending on your settings in the servermodule->FilesFolder if you didn't make any changes to "FilesFolder" then use this in the url: "files/images/stngs.png" 3. Set the icon at run time: function OnAfterrender(sender) { var obj=MainForm.UniPageControl1.items.getAt(0).items.getAt(0); obj.setIconCls('stngs_icon'); } Project from here: http://www.3msoft.net/mhmd/tabs_icon.rar Online from here: http://79.143.180.27/animateform/animateform.dll Hope this will help you
  8. يا رب ينعاد على الأمة الإسلامية بالخير واليمن والبركات
  9. Hi, You may try this: (all client side code - js) Project from here: http://www.3msoft.net/mhmd/Tabs.rar function OnClick(sender, e) { //switch position var tab1=MainForm.UniPageControl1.items.getAt(0).items.getAt(0); MainForm.UniPageControl1.items.getAt(0).items.getAt(0).tab.hide(); MainForm.UniPageControl1.items.getAt(0).insert(2,tab1); } If you wish to add icons to tab's title like this: You could use this code: MainForm.UnipageControl1.items.getAt(0).items.getAt(0).setIconCls('stngs_icon'); and the css is: .stngs_icon{ background-image: url("images/stngs.png") !important; } I hope this help you...
  10. Hi, Could you be more clearly give us an example of how the panel dimensions change depending on the data from the record, maybe we we suggest a better solution.
  11. Unitimer is client side and unimodule is server side.... in web development the concept is different from regular programming: in web there is the server side who produce the webpage and do the database work... and the client side which is the page you see in the browser...So the timer is js code which run in the client side (in the browser not in the server). If you wish to run server side code from the timer then use ajax: Put this code in the timer: ajaxRequest(MainForm.window, 'myfunc', [] );//in the [] you may pass params and in the form events "OnAjaxEvent" put this code: procedure TMainForm.UniFormAjaxEvent(Sender: TComponent; EventName: string; Params: TStrings); begin If SameText(EventName, 'myfunc' ) Then Begin myfunc;//your procedure or function End; end; and your func declared in the form or in the mainmodule: procedure TUniMainModule.myfunc; begin showmessage('hello from server side using ajax'); end; I hope it will help you
  12. hi, You may create forms manually: procedure TMainForm.lblClick(Sender: TObject); var frm:Tfrm2;//your form begin frm := Tfrm2.Create(UniApplication); frm.ShowModal(); end; Or you can use client events with ajaxrequest (to run server side code) or regular js code to run client side code.
  13. Hi, try to completely uninstall unigui framework, and reinstall a fresh copy...
  14. Hello, I use a php pages with parts of unigui, I load them in <iframes>... work great... But you can't use a html templates with unigui like in intraweb....
  15. mhmda

    window effect

    Hi, see this cool 3d effect.... Online: http://79.143.180.27/animateform/animateform.dll Project from here: http://www.3msoft.net/mhmd/animateform.rar IE :-(
  16. Hi, The x,y is the relative not the absolute, so see this example :-)
  17. I have updated the project rar file with all files... the port is 8888
  18. OK, I compressed the directory without the projct main files, I'll add them in few minutes...
  19. I have tested it many times and it is working great for me, to get the project try to copy the link and past it in the address bar. It is working great in FF, Chrome..... but Not IE ( as usually :-( )
  20. Hi all, I have used Greensock ActionScript in my flash projects and now I use their GSAP in unigui projects. It is a lovely animation platform written is pure js. http://www.greensock.com/v12/ I have created a login page using unigui and GSAP. You can try it online here ! http://79.143.180.27/myuni1/myuni1.dll Download the project from here: http://www.3msoft.net/mhmd/MyUni1.rar (updated) the port is 8888 I hope you enjoy it :-)
×
×
  • Create New...