| Thread | Last Post | Replies |
|
| position cursor in the console | 02 Mar 2006 00:25 GMT | 1 |
I need to print in unmaaged code folowing line into console. #blablabla#. Where # should be rotating line(first |then/ then - then\). How would I do that?
|
| C/C++ syntax | 02 Mar 2006 00:21 GMT | 4 |
OK, my K&R is about 10 years old now, I'm tring to understand the following: typedef struct { union
|
| How can I manipulate text using managed C++ | 01 Mar 2006 22:56 GMT | 3 |
I am using multiple arrays to make tables of rows and columns. When using C++ I was able to manipulate texts by using cout << setw(3) << .... using directives iomanip.h and iostream.h. Now, when using managed C++, How can we do the same manipulation by with
|
| CLR Class Libary | 01 Mar 2006 20:00 GMT | 1 |
Can anyone tell me how to write a CLR Class Library (C++/CLI DLL) I have declared my class in .h file as namespace Test {
|
| mousewheel event in VC++.NET | 01 Mar 2006 19:18 GMT | 4 |
I program a windows form application with VC++.NET, I wish to program an event which occurs when the user uses the mouse wheel in a pictureBox control. Which event should I use? And how can I program that? Thanks in advance
|
| Pointer to Pointers? | 01 Mar 2006 18:28 GMT | 2 |
Let's say I have a function such as: void ConvertCharToString(char* szInput, System::String^ strOutput) { strOutput = Marshal::PtrToStringAnsi(static_cast<System::IntPtr>(szInput));
|
| Thread updating a form | 01 Mar 2006 17:33 GMT | 1 |
i'm new to visual studio 2005 (used to work with Borland CBuilder). I have an application CLR -> Windows Form Application. On Form1 i've placed a listview and i've figured out how to start a thread. But now i'd like to update the listview from the thread.
|
| Truncated Name warning (C4503) in a file specified in the VC 8 directory! | 01 Mar 2006 15:24 GMT | 4 |
I tried building a c++ project in VS 2005, and about 300 warnings, all of the following nature: warning C4503: 'std::_Tree<_Traits>::_Min' : decorated name length exceeded, name was truncated
|
| VS2005 DialogResult | 01 Mar 2006 13:57 GMT | 11 |
According to the docs, I would expect to check the result of an OpenFileDialog in a VS 2005 CLR Windows Forms application this way: if (openFileDialog1->ShowDialog()== DialogResult::OK)
|
| Prohibit pass by value | 01 Mar 2006 13:39 GMT | 4 |
can I prohibit that my class will be passed by value (i.e created a copy on stack when function is called)? I want to prohibit passing my class by value. I thougth that declare a default constructor to private would do the job, but no.
|
| unresolved extern symbol on template member functions | 01 Mar 2006 06:34 GMT | 1 |
I have just installed VC++2005 Express Ed. and I keep getting a LNK2001 error:unresolved external symbol "public: virtual void __thiscall Circle::draw(void)const " (?draw@Circle@@UBEXXZ) when building the following code:
|
| Using text boxes - Managed C++ newbie. | 01 Mar 2006 03:39 GMT | 2 |
I'm looking to teach myself managed C++. I'm trying to make a simple application. How do I import the number from a text box into a variable of data type long. in vb i would do something like
|