| Thread | Last Post | Replies |
|
| Newbie Convert int to int * ??? | 05 Apr 2007 21:56 GMT | 2 |
I have a sub: void cdff ( int *m, double *p) {blah; blah;} Later, I call it: private: System::Void button1_Click(System::Object^ sender,
|
| Tool Bar-IE | 05 Apr 2007 19:22 GMT | 1 |
I am making a COM comonent and i am using WebBrowser class methods, the project contains a reference to the Microsoft Internet Controls COM components that are defined in the ShDocVW.dll file.(using namespace Interop::SHDocVw)
|
| _CORBA_Unbounded_Sequence ?? | 05 Apr 2007 19:16 GMT | 1 |
Does anyone know anything about this? What is it? Is it an array? I have to use it and I can't figure out what it would map to in CLI.
|
| Very stupid question part 2 | 05 Apr 2007 14:41 GMT | 3 |
Thanks Folks, Now I need to go the other way. That is, have a textBox display a representation of a double precision number. I have tried (amoung other things):
|
| memory alignment of a struct | 05 Apr 2007 14:30 GMT | 8 |
I heard when define a struct, it is important to make the size of the struct memory aligned. For example, [CODE]
|
| Behavior of VC in return type | 05 Apr 2007 09:23 GMT | 4 |
I am using vs2k5 for C++ IDE. I need to understand concept of the following Code behavior on VC compiler. Code-1 ---
|
| Very stupid newbie question | 04 Apr 2007 23:22 GMT | 5 |
How do I get a string representation of a number in a textbox into a double precision variable. Have tried hundeds like: double F = (textBox1->Text->ToDouble);
|
| Exporting methods from a dll that uses namespaces | 04 Apr 2007 18:12 GMT | 3 |
I have a C++ library partitioned by namespaces. I want to export some of the functions in one of the namespace - how do I do it. Assuming I have the macro MYAPI_EXPORTS #defined to be a declspec import or export (as appropriate ...
|
| compile error: storage size of 'var' isn't known | 04 Apr 2007 16:51 GMT | 3 |
I get a strange compile error when compile such simple program. Any ideas? foo.c: In function `main': foo.c:5: error: storage size of 'var' isn't known foo.c
|
| Using a C Library in a managed DLL | 04 Apr 2007 16:08 GMT | 4 |
I have a .LIB file, built an compiled in C that I need to use in my .NET application. If I build a C++.Net Console application and activate the exposed functions directly the library works perfectly.
|
| Loading PNG\JPG Images in MFC without using GDI\GDI+ | 03 Apr 2007 14:41 GMT | 2 |
I have a MFC Dialog based application. I am not using GDI or GDI+ libraries. I need to load PNG and JPEG images in this Dialog Based application. Can you suggest me how to to do without using GDI\GDI+? Thanks in advance,
|
| tool to check dependency of a .lib file | 02 Apr 2007 20:28 GMT | 2 |
Anyone knows which tool is able to find out the dependency of a .lib file. Seems Depends.exe only works for .dll. Thanks, Jazz
|
| Erasing a List View's items, without erasing the columns | 02 Apr 2007 20:13 GMT | 2 |
I have a list view that will be update dynamically when new information is received. I parse through the information and call the update function to clear the current items that are in the list and print out the new data. My problem is that I dont see a function that
|
| Syntax for Serializing generic ref class | 02 Apr 2007 20:00 GMT | 2 |
Following the example in the help for the generic List class, which shows the Serializable attribute being used on the generic class, like so: [SerializableAttribute] generic<typename T>
|
| Same Class, different Types | 02 Apr 2007 18:02 GMT | 8 |
What I'm actually talking about is, when you put the same class in different assemblies, you get two different types. This is reasonable (if you would call it) in most cases as it avoids possible misuse. However, what about if I do want to consider classes with exactly the same ...
|