Here is a routine I'm using. Everything works fine until I get to the line with the ">>>>" in front of it. Then my program dies; no exception, no error, debug just stops. Does anyone have any idea why this might be? john
try { String dbName=theDB.GetName(); String tblName=theTable.GetName(); String theVerdict=dbName + ":" + tblName + ":" + theTable.GetFieldCount();
>>>>>>theTable.MakeNewField( "FirstName", VJDK.TypeShort ); theTable.MakeNewField( "FirstTime", VJDK.TypeString, 25 ); theTable.MakeNewField( "FirstShot", VJDK.TypeString, 25 ); theTable.MakeNewField( "FirstDibs", VJDK.TypeString, 25 ); theTable.MakeNewField( "FirstBlud", VJDK.TypeString, 25 ); } catch (Exception ex) { String errCode = ex.toString(); }
catch(VException vx) { int errCode = vx.GetErrorCode(); String errStr = vx.GetErrorString(); } ©2001 Jones, John |