all groups > visual c libraries > june 2004
Fails to create implicit library with DLL
Posted by O.B. at 6/30/2004 4:26:17 PM
I have the following command line for building a TEST.DLL, but the implicit .lib
is not being created. Why?
/OUT:"lib/TESTd.dll" /NOLOGO /DLL /DEBUG /PDB:"lib/TESTd.pdb" /OPT:NOREF
/IMPLIB:"lib/TESTd.lib" kernel32.lib user32.lib gdi32.lib winspool.lib
comdlg32.lib advapi32.lib shell32.lib ... more >>
bug? namespace not needed
Posted by Manne Baum via .NET 247 at 6/11/2004 1:10:39 AM
Hi,
encountered a bug (?) using *template* and *namespace* in MS VC++ .Net 2003 (7.1.3088).
After long searches, I could reduce it to the following code:
namespace MyNS {
struct A {
int m;
};
template<typename T> T plus (const T& lhs, const T& rhs) { T ret(lhs); ret.m += rhs.m; retur... more >>
saving a webpage in vc++
Posted by Sachin at 6/9/2004 4:11:01 PM
Hi everybody,
The following snippet is part of a software. This software runs on a webpage and the following snippet saves that webpage. The problem is that untill i close down the website on which the software is working the process of saving file is not getting completed. I want the software t... more >>
VS 2005 May Preview: MSVCRT.lib(cpu_disp.obj) : error LNK2005: __set_SSE2_enable already defined in MSVCRT.lib(MSVCR80.dll)
Posted by Bern McCarty at 6/9/2004 2:34:25 PM
I'm trying to get stuff to compile with the May VS 2005 Tech Preview and I
get the following error when trying to link a .DLL:
MSVCRT.lib(cpu_disp.obj) : error LNK2005: __set_SSE2_enable already defined
in MSVCRT.lib(MSVCR80.dll)
c:\out\MozartVC80Native\Bentley\Program\MicroStation\toolsubs.... more >>
Same code build twice => diff binary
Posted by Viviana Vc at 6/5/2004 3:12:10 PM
Hi all,
I am using Win2k, VS. NET 7.1 (MS development Environment 2003 7.1.3088)
and I noticed that by building the exact same code twice the generated
binaries are different (not much, but they are). To be sure I tried a
simple application like void main(){} and 2 times rebuilding the project... more >>
Porting Code from VC++ 6.0 to VC++.NET
Posted by Shreyash B. Patel at 6/3/2004 5:26:04 AM
I took a code that was written in VC++6.0 using MFC and compiled in VC++.NET. It compiled fine but when I execute the application I get an Debug Assertion Failed Message. The Code works fine in VC++ 6.0 Can someone please tell me what is wrong
Debug Assertion Failed
File: afxwin1.in
Line: 2
Sh... more >>
Visual C++ runtime error - when printing
Posted by Ruth at 6/2/2004 2:46:04 AM
H
Am not really that up on computers so not sure if I have posted this to the right newsgroup! I am running Windows XP and find that, sometimes, when I go to print (whether in word, excel, the internet) a box comes up saying "Microsoft Visual C++ Runtime Library. Runtime Error! Program: C:\Progra... more >>
|