| Thread | Last Post | Replies |
|
| Determine if an Object is convertible to double at runtime | 25 Jan 2006 03:15 GMT | 2 |
I have a function that takes variable number of parameters - [ParamArray]Object* args[]. In the function, I need to iterate through args and find those arguments that can be converted (implicitly or explicitly) to double, e.g. integers and doubles themselves. If the conversion is ...
|
| visual c++ .net 2003 bug in c4090 waring | 24 Jan 2006 21:49 GMT | 6 |
The C code (not C++) below (test.c) generates a warning: #include <stdlib.h> int main() {
|
| using Excel object in C++ | 24 Jan 2006 20:27 GMT | 2 |
In C++ project, I need open excel file and write data to it. Can someone give me some intrusction? Thanks, Sherry
|
| How to get over LNK1170 error? | 24 Jan 2006 18:35 GMT | 2 |
Anyone knows how to compile a really (9000 files) huge project using nmake? Here is the output: C:\TEMP\nm114.tmp : fatal error LNK1170: line in command file contains
|
| Array of handles, how to | 24 Jan 2006 15:49 GMT | 3 |
How does one make a gc class that contains an array of handles to an array of X-type? // comments out what I am trying to do: public ref class c0 {
|
| CCW and 0x80131522 | 24 Jan 2006 14:32 GMT | 3 |
We have written a COM wrapper around the FlexGrid control called GridControl. It is written using ATL and completely unmanaged C++. It uses ADO Recordsets for its interaction with clients. We now want to include it into a C++/CLI application. We have code which
|
| If onlyMS had a C++ getting started site | 24 Jan 2006 12:24 GMT | 3 |
So now that I graduated to object oriented programming C#, and I'd like to try C++ but I can't find anything that gets me an understanding of some aspects of the language/compiler. Like what is the meaning of the single underscores? How did the include
|
| C++/CLI : Portable operators? | 23 Jan 2006 19:02 GMT | 1 |
I have a C++/CLI class I wish to have source compatible with regular C++. I'm looking for a good way to handle the operators : public value class SampleClass {
|
| interfaces within IMAPI are not recognized by my debugger..WHY! | 23 Jan 2006 14:42 GMT | 1 |
does anyone know what you need to include to get Visual Studio 2003 or 2005 to recognize IDiscMaster, IDiscRecorder and all the other interfaces in IMAPI? Right my visual studio only recognizes ICDBurn. Any idea would
|
| Checking registry | 23 Jan 2006 11:36 GMT | 1 |
I have a windows application distributed across an intranet using ClickOnce deployment. The problem I have is that my project makes a reference to a COM object on the client machine. Is there any way I can set this up so that my application can check to see
|
| STL.NET | 23 Jan 2006 11:06 GMT | 3 |
When is this going to be available? I've had a search around on the web and on msdn.microsoft.com but apart from some articles from last year it's all gone very quiet.
|
| I have a problem of "unresolved external symbol"... | 23 Jan 2006 10:05 GMT | 1 |
I'm a beginner of COM programming, I have a exercise, but got a compile error with ComFortuneTeller.obj : error LNK2001: unresolved external symbol _IID_IQuotation
|
| Estimate a code snippet | 23 Jan 2006 08:59 GMT | 1 |
I've found this curious code in the System.Windows.Forms.dll: Class: System.Windows.Forms.BindToObject internal void CheckBinding() {
|
| Managed C++ silently ignores my array assignment | 23 Jan 2006 06:59 GMT | 4 |
I am accustomed to using a pointer to traverse an array in native C++. Here I am trying to copy a slice of a native 2-D array into a managed 2-D array to make it accessible by C#. But piData isn't incremented and no value is stored in m_aaSamples. Anyone know why?
|
| Must the predicate be a static member function? | 22 Jan 2006 15:35 GMT | 3 |
Here's my program. { array<Byte> ^buffer = // something int length = Array::FindIndex(buffer, gcnew
|