How to open delphi more faster :
You can make your Delphi program faster by this solution by this simple ways :
Opening Delphi Program will be more fast and faster by this step :
Manage your form in delphi 7
1. Put only one or some in Auto-create forms list.
2. And Put other or the rest forms in Available forms list.
3. Make Delphi Exceptions unClick.
4. A little command in opening form.
so the program only create or busy only on one form at the first time and next time
Second step : But will be found an error and you have to make this correction :
Make Delphi Exceptions unClick
After that every time you want to open form, you have to make this command : 
- Example 1 while opening form
 xstatus:='BIN';
 xAllprg := xAllprg + xstatus+'_';
 // judul form judul cetak division......
 try
 frmTrBankOUT.show // or close ;
 except
 frmTrBankOUT := tfrmTrBankOUT.create(self);
 end;
 uTRbankOut.xtitlePR := 'Input Bank Receipt ;BANK RECEIPT VOUCHER;BIN1' ;
 uTRbankOut.xvarusernm := xvarusernm ;
 frmTrBankOUT.show ;
- Example 2
 xstatus:='BPA';
 xAllprg := xAllprg + xstatus+'_';
 // judul form judul cetak division......
 try
 frmTrBankOUT.close ; // or open
 except
 frmTrBankOUT := tfrmTrBankOUT.create(self);
 end;
 uTRbankOut.xtitlePR := 'Input Bank Payment;BANK PAYMENT VOUCHER;BPA1' ;
 uTRbankOut.xvarusernm := xvarusernm ;
 frmTrBankOUT.show ;
fast load file delphi
faster delphi loading
Other topic : Delphi sample function, Delphi Tip and Trick, File manipulation, Quick Report Installing.
AddMe - Search Engine Optimization
have a try,
thanks


 








0 comments:
Post a Comment