Error #u1073 dont know how to make exporttags_i.obj

  • Thread starter Thread starter omermadni
  • Start date Start date
O

omermadni

Hi ,

Its been a full day i am stuck in this problem . i created a com dll
and built it , it was working very well ... now that i have to hand
over the project i excluded all the un-necessary files from the project
and again tried to rebuild it ... the project showed the U1073 error .
After doing some brain storming i came to know if i include the file
which was created priorly "ExportTags_i.obj" again in the project , no
such error is reported .How can i make with this problem .... any
suggestion will be highly obliged .

Regards ,
Madni.
 
Well, it sounds like when you removed all the 'un-necessary' files one (or
more) of them actually were necessary after all. In fact, you said when you
put one of the files back it compiled.Since you now have the code compiling
(after including the file), what exactly is the problem now?

In general, if it compiles and you remove something and it doesn't compile,
then you removed something you need. Therefore, do what is roughly a 'binary
search' on what you need and don't need. Remove half of the file (comment
out is best procedure) you think you don't need. If it still compiles,
remove half of what's left and repeat. If it doesn't compile, put half of
the code you removed back in (un-comment it in) and see if it compiles.
Keep doing this until you can't remove any more code and still have it
compile.

If that procedure won't work in your case, you need to describe the proble a
bit more in detail...

[==P==]
 
thanks for replying , infact i removed projectname_i.obj from my
project directory ... but this file is generated from projectname_i.c
.... now the problem was that projectname_i.c was not being generated in
the project folder .. so there was failure to create obj file ....
but still i am left with one more problem ....

while i am trying to register exporttags.dll, which is a COM DLL it
returns following message

---------------------------
RegSvr32
---------------------------
DllRegisterServer in
D:\IntechSW_Group\WES\current\Deployment\WES\DebugBin\ExportDevices.dll
failed.
Return code was: 0x80029c4a

exporttagsps.dll however is registered successfully .... the error code
describes
"Error loading type library/DLL. "

can u please help me in this
Regards .

Madni
 
Back
Top