Jump to content

stlcours

Members
  • Posts

    91
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by stlcours

  1. Thanks to Oscar Flor But by if it is not IE, you give the alert too?
  2. As you now, if the client use IE6, there are so many problems(I think the main problem is that its JS engine is so slow so some problems occurs.) I think you can make an option to prevent IE8-- run unigui. Event the client cannot use the application with IE6, but it can also avoid some unknown errors, doesn't it? Thanks in advance.
  3. You write your code in the funciton of myFRXreportValue ? Should write in frxReport1GetValue(const VarName: string; var Value: Variant);
  4. Hi, FM 0.94 must use EXT 4.1 or higher? I think 3.4 est more stable, can I continue to use it?
  5. Got a license....Thanks. But where can I download 0.94?
  6. some tools like a "select a rectangle area from a picture", then the client can copy or save the selected area to a new file. I use it to redefine the picture for the client. This functionality is so popular in PHP forum. Thanks a lot!
  7. Can you add this function? Maybe it is not difficult for you. Thanks!
  8. from the France Joyeux Noël
  9. You should carefully read and run all the demos. On the other hand, you can download some new components from this forum to learn. I have already applied it to a middle project and there is none of problem.
  10. Farshad Mohajeri , don't waste your time to install for him. I have ever succeeded in installing unigui on Delphi2010. He just installed IDE add-in which cause many unknown problems. So he should give himself un pure Delphi and try again.
  11. Yes you can. I have already do it like this.
  12. stlcours

    Async to Sync

    use callback, see demos
  13. Now I just use this code, only work in Web: procedure TMainForm.UniFormShow(Sender: TObject); begin if WebMode then if not AFlag then begin Hide; AFlag:=True; LoginForm.Show; end; end; procedure TLoginForm.UniFormClose(Sender: TObject; var Action: TCloseAction); begin MainForm.Show; end; Someone can give me a LoginDemo work both in VCL and Web? Because unigui est special whose MainForm must firstly be shown. Could Farshad Mohajeri add a new demo in your project? Thanks in advance! And I should use which component to create a loginForm with a verification code in picture? Thanks again.
  14. I know there is a solution of Callback for Dialogs. But how to show the forms in sequence? procedure TFrmClientFindPages.BtnClick(Sender: TObject); begin Form1.ShowModal; Form2.ShowModal; end; Thanks for your answer!
  15. I don't understand why we need the savedialog? you can download a file wherever you want to save.
  16. as a new component! because a component should not be very complex for the developer, also for you! For example, Raize has the TRzPanel and RzSizePanel. And maybe you will add the more panels later in version 1.1,2.0...So it can be easy to distinguish the different Panels.
  17. I think this is your problem because I test my project and it has not this problem. you have not installed all files of ext?
  18. check your IIS or Apache options?
  19. Excuse-me I don't understand what is " very memory constrained VPS systems"? But it is linux or windows? And finally it works quite well?
  20. Does it really run in Linux or not? I want to use Apache to load mod_isapi.so, but I cannot succeed. http://forums.unigui.com/index.php?/topic/1328-can-i-run-dll-in-apache2-in-linux/ You can try and tell me the result, thanks.
  21. Hi, First question, can it(.dll) run in apache2 in Linux? I tried to run .dll in Apache2 in Linux. So it should modify "httpd.conf": LoadModule isapi_module modules/mod_isapi.so AddHandler isapi-handler .dll <Directory "\home\myapp"> Options Indexes FollowSymLinks ExecCGI AllowOverride None Order allow,deny Allow from all </Directory> Alias /mywebapps "\home\myapp" But I cannot find the folder "modules" in \etc\apache2, and alos there is none of "mod_isapi.so". I use ubuntu 10.04 and apache2.2.14, but I don't know how to install the package "mod_isapi.so". When I tried to "sudo apt-get install libapache2-mod-isapi", but it is not there. How should I do for continue? (it can already run PHP). Thanks... Best regards.
  22. Your key code? And we can see it for you. thanks.
×
×
  • Create New...