I am trying to resolve why on occasion my program produces an
overflow error 6.
The address points to the following line.
DIM F AS LOCAL INTEGER
DIM EdStr AS LOCAL STRING
DIM S AS local string
EdStr=CusStreet+CusCity+CusState
EdStr=EdStr+MKL$(CusZip)
=>EdStr=EdStr+MKQ$(CusTel)
EdStr=EdStr+MKL$(CusDate)
EdStr=EdStr+CusMemo1+CusMemo2
EdStr=EdStr+MKL$(CusBalance)
EdStr=EdStr+MKL$(CusLimit)
CusTel is Dimed as Shared Quad
How can I get a value in CusTel that would cause the error 6?
Is the error address accurate?
The program is compiled with the following directives. I am using PB 3.5
$STRING 8
$STACK 4096
$LIB ALL OFF ' 11-04-97
$DIM ALL
Any ideas would be appreciated?
------------------
overflow error 6.
The address points to the following line.
DIM F AS LOCAL INTEGER
DIM EdStr AS LOCAL STRING
DIM S AS local string
EdStr=CusStreet+CusCity+CusState
EdStr=EdStr+MKL$(CusZip)
=>EdStr=EdStr+MKQ$(CusTel)
EdStr=EdStr+MKL$(CusDate)
EdStr=EdStr+CusMemo1+CusMemo2
EdStr=EdStr+MKL$(CusBalance)
EdStr=EdStr+MKL$(CusLimit)
CusTel is Dimed as Shared Quad
How can I get a value in CusTel that would cause the error 6?
Is the error address accurate?
The program is compiled with the following directives. I am using PB 3.5
$STRING 8
$STACK 4096
$LIB ALL OFF ' 11-04-97
$DIM ALL
Any ideas would be appreciated?
------------------
Comment