2
votes
4answers
128 views
VC++ ‘Generating Code’, what does it mean?
WHen compiling in visual studio the compiler outputs this at what seems to be its own discretion:
1>Generating Code...
what is it doing here exactly?
0
votes
3answers
133 views
Basic question in C++
I am new to C++ and I have some confusion regarding this program. I am running this in Visual Studio 2008 as win32 console application.
#include <iomanip>
#include & …
0
votes
2answers
41 views
Unresolved external symbol error
I am getting the following error in my VC++ COM project. What is the problem in linking the lib files here?
Error 4 error LNK2019: unresolved external symbol _BVUOpen@8 referenc …
0
votes
4answers
100 views
strange std::vector problem with uint32_t on Visual Studio 2008
This works fine:
std::vector<int> v;
v.push_back(123);
but this throws a std::length_error:
std::vector<uint32_t> v;// or vector<unsigned __int32>
v.p …
0
votes
0answers
1 views
Gettting error S3StatusConnectionFailed
Hi ,
I am writing amazon webservice but i am getting error S3StatusConnectionFailed when i use s3_put_object , I am able to create a bucket but when i want to upload file on buc …
1
vote
0answers
10 views
How to install a Windows service created in VC++ 6.0
Hi,
I have a windows NT service (Maths.exe) created in VC++ 6.0.
I don't have the source code or Visual studio 6.0 installed on my machine.
Can anyone please let me know the comman …
1
vote
2answers
70 views
How to trim an array in .NET?
Say I have an array
array<double>^ buffer = gcnew array<double>(100);
And I want a function that does something like:
void foo(array<double>^% buffer)
{
A …
0
votes
3answers
104 views
Modifying binary files
Hi guys,
I'm trying to write a small program which will search a binary file for a few bytes and replace these with another bunch of bytes. But everytime I try running this small …
0
votes
2answers
23 views
MSHTML MFC Tutorial
Hi,
I know this has been asked twice before but both had no proper replies and are dated so in case someone has found something in these days, I'm asking again!.
Any one knows an …
0
votes
3answers
77 views
How to convert _bstr_t to CString
I have a _bstr_t variable bstrErr and I am having a CString variable csError. How do I set the value which come in bstrErr to csError?
0
votes
3answers
59 views
How to convert tchar pointer to char pointer
I want to conver a tchar* to char * is this possible . if yes how to do it. I use unicode setting
0
votes
0answers
14 views
Illegal Instruction in service using SCM in VC++
Hi guys,
I have issue in service created using VC++ code.
as my ServiceMain function ends. it returns following error in End of the function(in release it crashes.)
Unhandled ex …
0
votes
3answers
41 views
Declaration of IEEE mathematical functions like ‘ilogbf’ in MSVC++6
Hi,
Could someone please help and tell me how to include IEEE mathematical functions in MSVC++6? I tried both and , but I still get these errors:
- error C2065: 'ilogbf' : undec …
0
votes
4answers
79 views
Creating Windows DLL from C++ source files
I have multiple source files in C++ using which i want to create a Dynamic link library.
I see this happening in linux with gcc -shared and ln
however for Windows i suppose i wo …
0
votes
5answers
50 views
How to get all filename in a given directory
I want to get the file name in a given path is there any apis available . My programming environment is vc++ mfc
