| Thread | Last Post | Replies |
|
| Get access from second form to MainForm | 11 Jun 2004 16:04 GMT | 2 |
I want to read date from contols of first Form (Form1) being in other (eg: DialogOptions). I know how to refer to others froms being in Main, but I can't inversely. Eg:
|
| Could not receive more than 2KB at RECV(..) function. | 11 Jun 2004 14:49 GMT | 1 |
Hello Developpers, I am developping a TCP/IP Client application using Visual C++ .NET Standard on Windows 2000 Pro. I noticed that I could not receive more than 2KB once at a time. The server application sends me intensive data. Before this, I receive a feedback command that ...
|
| namespace not needed | 11 Jun 2004 13:04 GMT | 7 |
namespace MyNS { struct A { int m; };
|
| Could not receive more than 2KB at TCP/IP communication! | 11 Jun 2004 12:35 GMT | 2 |
Hello Developpers, I faced with a problem during developping a TCP/IP Client application. The Client application will receive intensive data from Server. Client is receiving data by using the recv(...) functions, as normal. My code is as follows: ---------- public __gc class Form1 : ...
|
| How do i give a thread a value?? | 11 Jun 2004 08:39 GMT | 1 |
Is it in dotNet possible to give a starting Thread a value on startup?? Thread* connecttoserver = new Thread(new ThreadStart(0, ConnectToServer));
|
| Firing an event that returns an array | 11 Jun 2004 08:22 GMT | 1 |
I'm still trying to get to grips with managed C++. I want to raise an event RaiseEvent which has as one of its arguments a managed array. The event will be raised in a function Func which will
|
| __gc and Array | 11 Jun 2004 07:15 GMT | 6 |
#pragma once using namespace System; __gc class CWords {
|
| Compiler Error | 11 Jun 2004 04:26 GMT | 2 |
I am having a compiler error when running my program. It opens pqueuebh.cpp(this is a priority queue class my teacher already wrote) and points to this line of the Insert code if ( CurrentSize>1 && Element<Array[CurrentSize/2] )
|
| is _MSC_VER broken?? | 10 Jun 2004 19:23 GMT | 2 |
It appears the compiler #define _MSC_VER is broken under .NET, even though when "mousing over" the _MSC_VER it says it's #def'd as 1300. That's exactly what I'd expect. However, when I compile code that uses it - #if _MSC_VER == 1200
|
| Run a console application from a form application | 10 Jun 2004 16:58 GMT | 4 |
how do i set up a window menu in a window application to run a console application
|
| Question about boxing and using Monitor::Enter / Monitor::Exit. | 10 Jun 2004 16:49 GMT | 5 |
If I have a value type such as int that I want to protect in a multi-threaded situation, Is it safe to use Monitor::Enter(__box(value))? I am thinking that a different object pointer is generated each time and thus the protection is not insured. Is this true or not?
|
| Date Time Pickers... | 10 Jun 2004 14:37 GMT | 2 |
The example given in msdn.com on how to create a Date Time Picker involves using the CreateWindowEx function. However, I created a dialog box using the graphical interface, and then used the graphical interface to add a Date Time Picker control to it. The only problem is, I ...
|
| global pointer on second form (managed)? | 10 Jun 2004 12:17 GMT | 2 |
How to do global pointer , which indicates on the second form ? If I want e.g. invoke another form I do it like this : private: System::Void menuItemDlg_Click(System::Object * sender, System::EventArgs * e)
|
| Slow code generation and windows form loading | 10 Jun 2004 11:13 GMT | 2 |
I am experiencing extremely long time for loading a windows form in my Visual C++ .NET project This Windows form has just 40 labels, 4 checkBoxes, 2 buttons and 11 numericUpDown. It takes several minutes to load this form in the form designer when I double click on the . file in the ...
|
| dialog controls breaking dialog box... | 09 Jun 2004 20:41 GMT | 2 |
I'm trying to create a dialog box that pops when a menu item is selected, and it works fine unless I put certain controls in the dialog box. I tried a month calendar, slider, and a date time picker, and with these controls the dialog box doesn't appear when I select the menu ...
|