Forum: Legacy and Other Languages Oct 8th, 2007 |
| Replies: 1 Views: 1,259 Hi all,
I have created a batch file to build a set of VC++ projects. Presently, if any one project fails to build, next command is executed (that is next project is build). I want to add a check... |
Forum: C++ Sep 20th, 2007 |
| Replies: 6 Views: 2,017 thanx for the msdn link. but i already mentioned in my first post that i did try using /reference and /lib options but the error thrown was "invalid command line argument."
After that next error... |
Forum: C++ Sep 20th, 2007 |
| Replies: 6 Views: 2,017 hi,
thanx for replying but i din't get you. If you mean to say that i should have searched msdn, then i did that but dint get much from that. If you have the solution, please let me know.
... |
Forum: C++ Sep 20th, 2007 |
| Replies: 6 Views: 2,017 Hi all,
I want to create a script file which builds my projects in VC++, C#, VB and .NET.
When i build a component by command line it gives error for the dependent libraries. How can i give the... |
Forum: C++ Sep 11th, 2007 |
| Replies: 1 Views: 7,230 Hi all,
how to get handle to a window whose name changes dynamically.
I have tried using FindWindow() but here it searches for the window name which matches exactly to the string specified. I... |
Forum: C# Sep 6th, 2007 |
| Replies: 1 Views: 5,515 Hi,
I have two exes, one is in C# and other in C++.
The C++ exe is a windows service. i want to notify my C# executable with events occuring in the windows service.
How can i call a c# code frm... |
Forum: C++ Sep 6th, 2007 |
| Replies: 1 Views: 1,173 Hi,
I have two exes, one is in C# and other in C++.
The C++ exe is a windows service. i want to notify my C# executable with events occuring in the windows service.
How can i call a c# code frm... |
Forum: C++ Jul 19th, 2007 |
| Replies: 3 Views: 2,091 Hi All,
Help needed to remove the unresolved external symbol error in code.
I searched on net and on msdn. it says i need to link the library advapi32.lib, i already did that but still the error... |
Forum: C++ Jul 13th, 2007 |
| Replies: 3 Views: 2,091 Hi,
during the build of my code, i m getting the following error
error LNK2001: unresolved external symbol __imp__QueryServiceStatusEx@20
i have included the library file advapi32.lib in... |
Forum: C++ Jul 12th, 2007 |
| Replies: 2 Views: 1,247 hi,
i m building the code in VC++6.0. (win32 unicode debug)
i m getting the following error in the RPC call
error C2664: 'UuidToStringW' : cannot convert parameter 2 from 'unsigned char ** ' to... |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 ya, its not giving any error for _tcscat() but for sprintf(). couldn't figure out why is it so? |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 Hi,
Given below is the code snippet
BOOL CServiceControl::OpenLog()
{
TCHAR tsFileName[MAX_PATH];
SYSTEMTIME stSystemTime;
TCHAR tsNumber[10];
// Append the file and path |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 hi,
yes you are right. iam passing TCHAR to sprintf. but i dint get what you want to say about using the macro for tchar and all..
can you please explain it more..
thanks a lot!! |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 Hi,
I looked into winsock2.h where it prevents the inclusion of winsock.h in windows.h
#ifndef _WINSOCK2API_
#define _WINSOCK2API_
#define _WINSOCKAPI_ /* Prevent inclusion of winsock.h in... |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 hi,
do u mean to include windows.h after winsock2.h??
i tried that also but still the errors exist.
winsock2.h itself prevents the inclusion of winsock.h in windows.h.
i also tried using... |
Forum: C++ Jul 10th, 2007 |
| Replies: 10 Views: 6,413 Hi,
On building a windows service, i m getting the 57 errors and 11 warnings. All the errors are about structure redefinition. Given below are some of them.
:\Program Files\Microsoft Platform... |