From: root <ro...@re...> - 2002-02-03 19:17:26
|
Update of /home/tank_cvs/tank In directory router.bac.net.au:/tmp/cvs-serv29121 Modified Files: tank.dpr Log Message: Changed the IRC Chat interface, the panels were to hard to deal with.. added some stuff like channel topic and user count... **We need to fix how it adds a blank user to the top of the listbox... also whne people disconnect the listbox needs to be updated.. and when we switch channels.. oh.. check out the NEW ABOUT FORM Index: tank.dpr =================================================================== RCS file: /home/tank_cvs/tank/tank.dpr,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tank.dpr 2002/01/25 05:37:13 1.2 --- tank.dpr 2002/02/03 19:21:51 1.3 *************** *** 4,8 **** Forms, Main in 'Main.pas' {Client}, ! NewOptions in 'NewOptions.pas' {Options}; {$R *.res} --- 4,9 ---- Forms, Main in 'Main.pas' {Client}, ! NewOptions in 'NewOptions.pas' {Options}, ! about in 'about.pas' {frmAbout}; {$R *.res} *************** *** 13,16 **** --- 14,18 ---- Application.CreateForm(TClient, Client); Application.CreateForm(TOptions, Options); + Application.CreateForm(TfrmAbout, frmAbout); Application.Run; end. |