Subject says it all, I guess.
What is it? What causes it? What does one look for to cure it?
I see then every so often, then after I'll add a few lines of
code, or take them away .. this error vanishes...
This latest one abruptly arose over:
It was in a .PBU module which is at 63K in size. I found out all
I had to do to break it was recode these three lines:
In that I really don't like more than one item on a line so that
I can as always as possible comment every line, and keep it
all visible on the screen, I tried another one. I've also
found that virtually every time I see this erupt, if I ever
get to know what did it, I can pull another stunt to kill it:
Either way lets me go forward with the work. Neither way
puts this .PBU into the 64K size. Most of the time you don't
even have to put anything in the useless SUB, just an END SUB.
Seems inane to me but I'd like to know the reason for this
error .. and whatever I'm doing that evokes it.
Thank you
------------------
Mike Luther
[email protected]
[This message has been edited by Mike Luther (edited August 11, 2001).]
What is it? What causes it? What does one look for to cure it?
I see then every so often, then after I'll add a few lines of
code, or take them away .. this error vanishes...
This latest one abruptly arose over:
Code:
IF DMY% = 0 THEN DMYR$ = DEY$ END IF
I had to do to break it was recode these three lines:
Code:
IF DMY% = 0 THEN DMYR$ = DEY$
I can as always as possible comment every line, and keep it
all visible on the screen, I tried another one. I've also
found that virtually every time I see this erupt, if I ever
get to know what did it, I can pull another stunt to kill it:
Code:
' Just above the SUB in which it erupts add: SUB USELESS() PUBLIC Useless code sub here GGG% = 0 ' Useless operation END SUB
puts this .PBU into the 64K size. Most of the time you don't
even have to put anything in the useless SUB, just an END SUB.
Seems inane to me but I'd like to know the reason for this
error .. and whatever I'm doing that evokes it.
Thank you
------------------
Mike Luther
[email protected]
[This message has been edited by Mike Luther (edited August 11, 2001).]
Comment