怎样制作一个英文软件的汉化包,用VB,DELPHI
讲件思路
怎样实现下面的功能:
  首先是一个启动画面,然后消失,出现一个用户登陆界面,当用户输入正确
后,出现程序的主界面。
  我以前是用VB实现的,VERY EASY 但是现在用DELPHI 我感到好难,谁帮我!

解决方案 »

  1.   

    你是做启动画面吧,给段代码给你:
    SplashFrm就是你的程序的启动画面program splash;uses
      Forms,
      MainFrm in 'MainFrm.pas' {MainForm},
      SplashFrm in 'SplashFrm.pas' {SplashForm};{$R *.RES}
    begin
      Application.Initialize;
      { Create the splash screen }
      SplashForm := TSplashForm.Create(Application);
      SplashForm.Show;   // Display the splash screen
      SplashForm.Update; // Update the splash screen to ensure it gets drawn  { This while loop simply uses the TTimer component on the SplashForm
        to simulate a lengthy process. }
      while SplashForm.tmMainTimer.Enabled do
        Application.ProcessMessages;  Application.CreateForm(TMainForm, MainForm);
      SplashForm.Hide;  // Hide the splash screen
      SplashForm.Free;  // Free the splash screen
      Application.Run;
    end.
      

  2.   

    在主窗口的FormShow中出现登录窗口,用ShowModal
      

  3.   

    同意 dby99(丁白一之反之) 的方法。启动画面也可以放在这里面,不过用Show就行了。
      

  4.   

    上边的兄弟们,人家说的是汉化包,不是做开机画面!
    to rngn () 
    这位人兄,虽然我明白你的意思,而且也正有意愿学习制作汉化包的问题,但是可以说一点资料和想法也没有。为什么大家说做汉化包的一般都用VB呢?这个是为什么呢?能跟我讲讲用VB做汉化包的原理是什么吗?很想知道一下。如果可以请来信吧。[email protected],谢谢。