| Thread | Last Post | Replies |
|
| How to find the length of network streams which do not support see | 24 Aug 2004 14:51 GMT | 2 |
I have a network stream which I got from HttpWebResponse and does not support seeking, How do I find the length of the network stream? HttpWebResponse* response = dynamic_cast<HttpWebResponse*> (request->GetResponse());
|
| Project takes way too long to load, if it does load at all | 24 Aug 2004 13:30 GMT | 1 |
Can someone explain, please, why it takes for a vc++ project (form application) comprising three forms about four miniutes to load at 100% CPU usage? When it finally loads and I want to run the program, the compiler recompiles all the files (about 50 of them), despite the fact that ...
|
| How to use HttpWebRequest and get response back? | 24 Aug 2004 04:18 GMT | 1 |
I have a url, I pass it to Webclient, and I get response without any problem. String* uriString = S"trade7.masterlink.com.tw/futures/QuotePrice.jsp"; String* postData = S""; // Create a new WebClient instance.
|
| Compile managed C++ code for .NET remoting... | 24 Aug 2004 04:13 GMT | 1 |
I am using Visual Studio 2003 .NET. I was wondering how can I compile and link managed C++ code for .NET remoting? I have found several tutorials regarding how to compile .net remoting code in the command line for C# and VB, but I cannot find any info about how to compile
|
| How to make RPC calls in C++ .Net webservice | 23 Aug 2004 22:52 GMT | 1 |
Currenlty we use ISAPI DLLS on our site. These dlls are making rpc calls to another NT services on that same machine. I am planning to use C++ web service using .NET 2003 instead of ISAPI dlls. However i want to use existing mechanisam defined in NT serives. So my question is how ...
|
| Migrating VC++ 6.0 apps to .NET | 23 Aug 2004 18:10 GMT | 1 |
We are considering the ways to migrate our VC++ 6.0 applications to .NET platform. It would be nice to rewrite them completely in C#, but due to the time constraints
|
| Injecting Code to an existing PE | 23 Aug 2004 17:07 GMT | 5 |
Introduction: ************************************************************ I am working on a project that should encrypt PE files ( Portable executable ), this require me to inject some code to existing PEs.
|
| Type, GetType(), and more..... | 23 Aug 2004 09:47 GMT | 4 |
Fri. Aug. 20, 2004 10:50 AM PT I want to create an Object/ Class from its name as string. I will explain it.... Lets say I have a class BaseClass, and from this class I derived 5 classes
|
| Cannot open include file "windows.h" | 23 Aug 2004 07:53 GMT | 2 |
I compiled as following (e.g) cl first.cpp but following message ↓ Cannot open include file "windows.h" :Such a file or directory
|
| vc++ beginner | 23 Aug 2004 05:21 GMT | 1 |
Hi , i am comfortable with C++, but i need help with VC++. somebody could tell me the name of a newsgroup for beginners in VC++. Regards, -K
|
| Assistance with VC6 internal compiler error? | 22 Aug 2004 21:05 GMT | 1 |
A user in Japan is getting an internal compiler error in a template when compiling the latest version of my library with Visual C++ 6 (old version, I know). The previous version of my library worked and I didn't make that many changes to the template code, so I think a workaround ...
|
| vc++ Beginner | 22 Aug 2004 20:03 GMT | 3 |
I know this is not the group for beginners..but i am not able to find one.. can someone tell me the name for the beginners group? Thanx, -K
|
| GetType error | 21 Aug 2004 16:26 GMT | 2 |
The following line raises an "Type cannot be null" exception: DataTable *dtEmployees; dtEmployees->Columns->Add(S"EmployeeID", Type::GetType(S"int")); Why?
|
| where can I find Lib.exe ? | 21 Aug 2004 15:08 GMT | 3 |
I use the VC++ Toolkit 2003 but there is not lib.exe tool included. I have also downloaded the SDK which provides a lib.exe for Win64 but not for Win32. Did you know where I could find this tool on the internet ?
|
| Scope of a variable in a for loop | 21 Aug 2004 15:01 GMT | 1 |
I have a problem understanding the scope of a variable defined in a for loop. As I see it the code below should not compile since the variable i can only be seen in the first for loop.
|