Click here to Skip to main content
15,923,376 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
General.NET Framework System Requirements Pin
Paul Watson20-Feb-02 10:11
sitebuilderPaul Watson20-Feb-02 10:11 
GeneralRe: .NET Framework System Requirements Pin
Anders Molin20-Feb-02 12:56
professionalAnders Molin20-Feb-02 12:56 
GeneralRe: .NET Framework System Requirements Pin
Aleksey Suvorov20-Feb-02 17:18
Aleksey Suvorov20-Feb-02 17:18 
QuestionHow to do a SetPixel with GDI+ Pin
20-Feb-02 7:06
suss20-Feb-02 7:06 
AnswerRe: How to do a SetPixel with GDI+ Pin
25-Mar-02 7:32
suss25-Mar-02 7:32 
QuestionHow do you make a form close by itself? Pin
HJB41719-Feb-02 21:14
HJB41719-Feb-02 21:14 
AnswerRe: How do you make a form close by itself? Pin
James T. Johnson19-Feb-02 22:29
James T. Johnson19-Feb-02 22:29 
GeneralRe: How do you make a form close by itself? Pin
HJB41720-Feb-02 2:03
HJB41720-Feb-02 2:03 
when I try calling it from outside the constructor, it won't close. What I'm going to try doing is A), create the window in a new background thread and have the foreground thread close it in 3 seconds or B)have the constructor of the new form take a variable.... incomplete thought as of now, will try A) 1st =)


------

The background worker thread method worked

__gc class heh: public Form
{
public:
heh()
{
Size = System::Drawing::Size(300,300);
Text = "I Should be gone soon";
}
};

__gc class test: public Form
{
heh* mm;
void popup(){ mm->ShowDialog(); }
public:
test()
{
Text = "Base Form";
mm = new heh();
Thread* worker = new Thread(new ThreadStart(this, &test::popup));
worker->IsBackground = true;
worker->Start();
Thread::Sleep(100);
mm->Close();
worker->Abort();
}
};

--------------------------
One problem with the programmer's mentality is insecurity. This goes deep. An insulting college litany says that failed mathematicians become computer programmers. They are also ridiculed for being nerdy losers, for being too fat or too skinny, and for having few social skills. Most programmers can be spotted easily in a crowd. Nobody really wants to hang out with them. Put thousands of these people in one company and if you can get them to work, you become a billiona
GeneralNeed Help adding a "new line" to a text box Pin
HJB41719-Feb-02 2:38
HJB41719-Feb-02 2:38 
GeneralGDI+ with VB.NET Pin
Kermitt17-Feb-02 21:41
Kermitt17-Feb-02 21:41 
GeneralRe: GDI+ with VB.NET Pin
Mazdak17-Feb-02 22:56
Mazdak17-Feb-02 22:56 
GeneralRe: GDI+ with VB.NET Pin
Kermitt18-Feb-02 11:23
Kermitt18-Feb-02 11:23 
GeneralRe: GDI+ with VB.NET Pin
James T. Johnson18-Feb-02 17:34
James T. Johnson18-Feb-02 17:34 
GeneralVS.NET and projects Pin
MaTrIX2k216-Feb-02 12:16
MaTrIX2k216-Feb-02 12:16 
GeneralRe: VS.NET and projects Pin
Andres Manggini16-Feb-02 15:05
Andres Manggini16-Feb-02 15:05 
GeneralRe: VS.NET and projects Pin
19-Feb-02 20:49
suss19-Feb-02 20:49 
GeneralVS.NET Enterprise Install - Fails Pin
Giles13-Feb-02 6:24
Giles13-Feb-02 6:24 
QuestionIs there a way to run managed c++ programs on computers w/o VS.NET (like win98, winme or win2k machines)? Pin
HJB41711-Feb-02 4:07
HJB41711-Feb-02 4:07 
AnswerRe: Is there a way to run managed c++ programs on computers w/o VS.NET (like win98, winme or win2k machines)? Pin
Mazdak11-Feb-02 4:24
Mazdak11-Feb-02 4:24 
Generalattributed programming Pin
omkamal9-Feb-02 6:32
omkamal9-Feb-02 6:32 
GeneralRe: attributed programming Pin
Michael Dunn9-Feb-02 7:51
sitebuilderMichael Dunn9-Feb-02 7:51 
GeneralRe: attributed programming Pin
James T. Johnson9-Feb-02 20:31
James T. Johnson9-Feb-02 20:31 
GeneralRe: attributed programming Pin
omkamal10-Feb-02 4:36
omkamal10-Feb-02 4:36 
GeneralRe: attributed programming Pin
James T. Johnson10-Feb-02 8:44
James T. Johnson10-Feb-02 8:44 
QuestionWhat to do when events, messages & overrides don't work... Pin
Darren Schroeder8-Feb-02 15:58
Darren Schroeder8-Feb-02 15:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.