Jump to content

stlcours

Members
  • Posts

    91
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by stlcours

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. 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.

×
×
  • Create New...