| Thread | Last Post | Replies |
|
| Giving one managed wrapper class access to the unmanged part of another managed wrapper class | 31 Aug 2006 17:27 GMT | 1 |
Here is the scenario I'm trying to make work. I've got 2 managed C++ classes, each of which wrappes an unmanaged C++ class, kind of like so: __nogc class UnmanagedClassA
|
| Changing tab [\t] size in TextBox control | 31 Aug 2006 15:32 GMT | 1 |
How can I change the default number of char the caret will move in a multiline TextBox control when a Tab char (\t) is written. Hugo
|
| Marshal::StringToXXX question | 31 Aug 2006 14:55 GMT | 1 |
I need to pass managed String from to C-style APIs. I see I can use Marshal::StringToXXX functions. Is this the best we have? I understand this will allocate a new string and create copy of my String. I want to pass it as constant (LPCWSTR). I don't need allocation and copying,
|
| DLL Class and Resource | 30 Aug 2006 15:42 GMT | 1 |
I am trying to create a dll with an embedded class that I create from my /exe, this is no problem, but I also want to have a RT_RCDATA resource embedded in the dll that can be accessed from the .exe so what I am lookingto do is create a kind of hybird resource dll / extension dll ...
|
| quick BSTR question | 30 Aug 2006 15:37 GMT | 2 |
How can I write a function like this: BSTR Greeting(BSTR name) { //return "Good Morning : " + name ;
|
| Function prototype with default arg fails to compile | 30 Aug 2006 15:34 GMT | 2 |
All: I recently had to include a common header file into a straight C (.c file). This header file contains a function prototype that has a default argument. For example
|
| 15 error(s), 0 warning(s), What can I do to remedy it? Plse Help me... | 30 Aug 2006 14:34 GMT | 2 |
I am new to C++ and need urgent help with this part of my code for a uni coursework I have to submit by Thursday //ClientData.h #ifndef CLIENTDATA_H
|
| URGENT HELP Needed, VC++ errors on build | 30 Aug 2006 14:31 GMT | 1 |
I am new to C++ and need urgent help with this part of my code for a uni coursework I have to submit by Thursday //ClientData.h #ifndef CLIENTDATA_H
|
| adding a event handler in MFC application for c# event | 30 Aug 2006 08:14 GMT | 2 |
Im trying to call my .net c# library functions from my unmanaged vc++(dialog based MFC) application . From that application i want add the event handler for the event generated
|
| Best COM to managed marshaler | 30 Aug 2006 05:56 GMT | 1 |
I have a project that uses both managed C# and an unmanaged COM object. I would like to know the best way to transfer large chunks of data between the two? I have a continuous stream of BYTE arrays that are on average 4k in size that I need to move from the COM object to C# as ...
|
| Old style API function callback conversion to managed C++ | 30 Aug 2006 05:01 GMT | 7 |
I am wrapping a digital camera API using Managed C++ VS .NET 2003). I have this function that called as bellow in the API sample. err = PR_RC_StartViewFinder( m_hCamera, //line 1 (prContext)this, //line 2
|
| Can I create a C++ class library(DLL) and use it in C#? | 30 Aug 2006 00:36 GMT | 6 |
Hi, I have a few C BER coding that I would like to compile into a C++ Class library project and then use it in my C# windows application. Can I do that from C# using pinvoke? If not then does anyone how can I call these
|
| ActiveX control | 29 Aug 2006 23:28 GMT | 2 |
I want to build an ActiveX control using C++ Does anyone have a link that can serve as a tutorial - a how to guide? Basically, I need to know how I may add properties, methods and events, and how I can pass data in the raised events.
|
| How to access a c++ library from a vb.net project? | 29 Aug 2006 21:17 GMT | 3 |
Okay, this is a pretty basic question. I've created a static library using c++. Now, I've started a vb.net project. How do I reference the functions in the static library? I'm using Visual Studio 2005. I.E., how do I add the library to the project, and call it's functions?
|
| Do I have to delete/release a BSTR | 29 Aug 2006 11:03 GMT | 4 |
Lets say I write this line: BSTR b = m_pdoc->Getxml (); where m_pdoc is MSXML2::IXMLDOMDocumentPtr. Now "b" contains the xml text. When I exit the function in which this line
|