讲错了,是Splash画面,这个你总会做吧!
在项目文件中修改:
FrmSplash:=TFrmSplash.Create(Application);
FrmSplash.Show;//此时进度条只有一点点,(我的进度条是几张图片)
Application.CreateForm(TFrmMain, FrmMain);
//在此form的create末尾,写道:frmsplash.pic1.visible:=true;
FrmSplash.Update;
Application.CreateForm(TFrmChild1, FrmChild1);
//在此form的create末尾,写道:frmsplash.pic2.visible:=true;
FrmSplash.Update;
Application.CreateForm(TFrmChild2, FrmChild2);
//在此form的create末尾,写道:frmsplash.pic3.visible:=true;
//这样,进度条就满了,或者可以在最后一个form的create里写这句,随便你啦
FrmSplash.Update;
Application.CreateForm(TFrmChild3, FrmChild3);
FrmSplash.Hide;
FrmSplash.Free;
Application.Run;