From: Kyle A. Miller |
|
Subject: Internal Error URW4911 |
NewsGroup: borland.public.delphi.ide.general |
Date Posted: 17-Oct-2005 at 21:58:30 PST |
I've been working on an assembly without error for a while. I am trying
to build now and receiving an internal error, URW4911. Anyone know what
it is? I'm using D2005 with all patches.
|
From: uvn |
|
Subject: Re: Internal Error URW4911 |
NewsGroup: borland.public.delphi.ide.general |
Date Posted: 19-Oct-2005 at 21:34:54 PST |
Kyle A. Miller wrote:
> I've been working on an assembly without error for a while. I am trying
> to build now and receiving an internal error, URW4911. Anyone know what
> it is? I'm using D2005 with all patches.
The letters before the error number identify the type of error. URW is
related to DCU files.
From delphifaq.com:
B : debugger
BC : debugger
BR : browser
C : codegen
CM : command line version of the compiler
D : parser
DB : debugger
DBG: debug info output
DM : IDE version of the compiler
E : parser
EO : debugger/evaluator
FN : filename / pathname parsing
GH : HPP generator
I : code generator
IN : inspectors
L : linker
LI : BPI file writing
LO : object file loading
M : memory allocation
MA : name mangling
MB : multi-byte (MBCS) support
O : object (OMF) file handling
P : package managment
R : resource writing
S : scanner
ST : standard procedure handling
SY : symbol table
T : code generator
TI : RTTI generator
U : parser
UD : IDE version of the compiler
UI : error handling
URW: DCU reading/writing
W : Object file (OMF) writing
X : code generator
P.S.: The above applies directly to Win32 projects, and may or may not
in some way apply to dotNET. Most do.
|
From: Guillem |
|
Subject: Re: Internal Error URW4911 |
NewsGroup: borland.public.delphi.ide.general |
Date Posted: 18-Oct-2005 at 3:45:57 PST |
Kyle A. Miller wrote:
> I've been working on an assembly without error for a while. I am
> trying to build now and receiving an internal error, URW4911. Anyone
> know what it is? I'm using D2005 with all patches.
just for info in case you find another internal error:
http://homepages.borland.com/strefethen/index.php?pagename=Main.Internal
ErrorWhitePaper
Hope you don't need it ever again :-)
--
Best regards :)
Guillem Vicens
Dep. Informática Green Service S.A.
www.clubgreenoasis.com
--
in order to contact me remove the -nospam
|
From: Kyle A. Miller |
|
Subject: Re: Internal Error URW4911 |
NewsGroup: borland.public.delphi.ide.general |
Date Posted: 17-Oct-2005 at 22:21:46 PST |
Never mind. It looks like that was Delphi's way of saying it didn't like
me saying the following...
&String.Format()
When it's...
System.&String.Format()
.... it felt better.
|