Thanks a lot (!) Stephan
I don't use MFC as well. Things I can't do with VLisp I use ARX for.
Over the years the code accumulated and I saw it all gone for no reason.
I'll give it a try next week or so.
In case you are curious (but give me some time):
[email protected]
Thanks again
Dieter
Stephan Koster wrote:
> "Dieter Berger" schrieb:
>
>> Germany. Where about and what is Germany ?
>> I just wonder where to get C++.NET 2002 from.
>> All vendors tell me C++.NET 2002? No! Can have 2003, no problem.
>> Read something about downgrading. No problem.
>> Got C++.NET 2003 Standard, EN.
>> No money to throw away. Downgrade. Sorry! Must have Prof or Enterprise.
>> Idea was: order from Microsoft US. Sorry they don't sell
>> software outside US. My name is NOT Bin Laden.
>> So what. Wait until Audodesk comes out with ACAD 2006 (they are late)
>> Any other German speaking fellow around here?
>>
>> Cheers
>> Dieter
>
>
> Dieter,
>
> as long as you don't use MFC you can compile with the compiler
> which comes with the Microsoft .NET Framework SDK 1.0. Maybe you have some
> old CD floating around with it, else you can download it from Microsoft
> (but
> it is big). I think you need SP2 as well (not sure about that).
> I compiled successfully my apps with this compiler.
> I don't have net 2003, only MSVC++ 6.0 Standard.
> In MSVC++ 6.0 I opened my projects and created make files for them
> (Projekt->Makefile exportieren). Then I edited manually this make files,
> changed every occurance of 'vc60' to 'vc70', changed the pathes for the
> objectarx includes and libs.
> You must use cl.exe, link.exe and nmake.exe from vc7, but midl.exe and
> rc.exe
> from VC6 work fine. I'm sure you know that you compile a make file with
> 'nmake
'.
> One of my arx-apps is a com server (doesn't use MFC) which has to be
> linked with
> acedapi.lib. This lib seems to be dependend of mfc70.lib, mfcs70.lib and
> atls.lib
> which I don't have. So I copied and renamed this 3 files:
> Mfc42.lib -> Mfc70.lib
> Mfcs42.lib -> Mfcs70.lib
> Atl.lib -> Atls.lib
> and then my apps compiled smooth and everything seems to be fine (but I
> have
> done that yesterday so I couldn't test it a lot).
>
> Stephan