MasterDwayne
Programmer
If following conditions occure, your computer will lock up:
1. TableName has a valid file assigned to it.
2. Active is Set to False
AND you have the following Code:
Line1: Table1->Active=false;
Line2: Table1->CreateTable();
Line3: Table1->Active=true;
BCB5 locks up on Line2, and you may have to do a complete reboot.
Line1 is your real problem, Not Line2 as the compiler
notifies you.
Change Line 1 to the following:
if(Table1->Active==true)Table1->Active=false;
Dwayne
1. TableName has a valid file assigned to it.
2. Active is Set to False
AND you have the following Code:
Line1: Table1->Active=false;
Line2: Table1->CreateTable();
Line3: Table1->Active=true;
BCB5 locks up on Line2, and you may have to do a complete reboot.
Line1 is your real problem, Not Line2 as the compiler
notifies you.
Change Line 1 to the following:
if(Table1->Active==true)Table1->Active=false;
Dwayne