| Thread | Last Post | Replies |
|
| Is there 'is' keyword in C++ | 17 Mar 2007 04:48 GMT | 7 |
hi. Group, C# has a keyword "is" to determine if a object is a given type. Does C++.NET has something simliar? thanks.
|
| CFileDialog Does not show mapped files in system account | 16 Mar 2007 15:10 GMT | 1 |
I have write some simple code,this code does not shows network mapped drives when we run it under system account, otherwise under user account it shows them correctly. Any body tell me why did its behaviour change under system account,
|
| CString Find and Substring functions | 14 Mar 2007 18:39 GMT | 1 |
I am new to Visual C++ and I am having difficulty parsing a string. We have a database that has a text field that contains multiple lines (seperated by a carriage return and new line characters). I retrieve the field into a CString type variable (just because that is what is ...
|
| Unicode to Ascii | 14 Mar 2007 16:38 GMT | 2 |
How do I convert from unicode to ascii string in C++/CLI?
|
| Conversion from System::String^ to LPCTSTR | 14 Mar 2007 15:50 GMT | 14 |
I have seen the following function to convert from a System::String^ to a const wchar_t*. I would like to get a LPCTSTR and AFAIK LPCTSTR is equal to const wchar_t*. Then it should all work right? But I only get the first character. And when I try to do std::wstring ...
|
| Know IDataObject's target | 14 Mar 2007 15:41 GMT | 2 |
I have an IDataObject which deals with retrieving files from another machine and then moving them to the target specified by Explorer. I specify only CF_HDROP as supported clipboard format. I copy the files to the temporary directory and then let Explorer move them by specifying ...
|
| lbcmt.lib reports missing std::exception in VS 2005 prof. | 14 Mar 2007 14:20 GMT | 2 |
Recently I wrote a dll in c++ and to simplify the distribution I decided to link with multithreaded static library (/MT or /MTd option). In debug everything works fine but in release I get this: parseMetadata.obj : error LNK2001: unresolved external symbol "public:
|
| How to subscript a CString? (CSimpleStringT::operator[]) | 14 Mar 2007 04:49 GMT | 13 |
In an antique obsolete version of MFC, a CString expression could be subscripted in order to retrieve one element. Visual Studio 2005 defines CSimpleStringT::operator[]. At first glance it looks like it might have been intended to provide backwards compatibility
|
| Any way to use unmanaged .LIB in MCPP project? | 14 Mar 2007 00:11 GMT | 1 |
Hello, I have a managed C++ project which uses an unmanaged C++ DLL. Normally when I'd have an EXE or DLL which uses another DLL, I'd link the DLL's .LIB into the project but I don't see a way to do this within my MCPP project (so I'm left with a bunch of "unresolved
|
| Anybody can suggest a good C++ book? | 13 Mar 2007 23:11 GMT | 8 |
What's the good C++ book you guys read? Please suggest. Thanks.
|
| Creating unmanaged C++ object in C# | 13 Mar 2007 19:24 GMT | 6 |
I have what I thought was a simple question but I can't find an answer. I need to access (create) unmanaged C++ classes in C#. They aren't COM and they aren't struct just simple classes. What I currently have is the following
|
| Initialize non-static members | 13 Mar 2007 14:55 GMT | 1 |
Is it possible to initialize non-static members inside a value class (structure) ? Thanks.
|
| inter-dependency between C++/CLI and C# dlls | 13 Mar 2007 07:43 GMT | 7 |
There is a C# project which calls C++/CLI dll to be able to call native C++ including templates. But the C++/CLI code itself also requires the C# dll to get the types. For example: C#:
|
| Some questions about optimization and inline | 12 Mar 2007 18:50 GMT | 3 |
Hi,everyone: the questionly code: #include <iostream> using namespace std;
|
| programming OpenGL in vc++, how?? | 12 Mar 2007 18:41 GMT | 2 |
I want to learn to program OpenGL. I have VS2005, so I thought it could be a good idea to learn how to program OpenGL in vc++.... Anybody knows where I can get the latest OpenGL SDK for vc++ or is that SDK a part of VS2005??
|