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

.NET (Core and Framework)

 
GeneralRe: Unable to run the application on machine without VC++ installed Pin
Anonymous17-Feb-05 17:08
Anonymous17-Feb-05 17:08 
GeneralRe: Unable to run the application on machine without VC++ installed Pin
yasinPL17-Feb-05 14:00
yasinPL17-Feb-05 14:00 
Generalcompress fonts at runtime Pin
tuanattech215-Feb-05 19:43
tuanattech215-Feb-05 19:43 
GeneralClick Events in .NET Pin
sarabjs15-Feb-05 9:30
sarabjs15-Feb-05 9:30 
GeneralRe: Click Events in .NET Pin
S. Senthil Kumar15-Feb-05 11:05
S. Senthil Kumar15-Feb-05 11:05 
GeneralRe: Click Events in .NET Pin
sarabjs15-Feb-05 11:58
sarabjs15-Feb-05 11:58 
GeneralRe: Click Events in .NET Pin
sarabjs15-Feb-05 13:03
sarabjs15-Feb-05 13:03 
GeneralRe: Click Events in .NET Pin
S. Senthil Kumar15-Feb-05 18:26
S. Senthil Kumar15-Feb-05 18:26 
If you've done MFC programming, you would have got a clearer picture. Every widget you see in a windows application (well, almost most of them) are windows by themselves. A button is a window, a textbox is a window and so on. Every window has a window procedure which is invoked by the OS (once you register it, of course). The OS takes care of figuring out which input goes to which window and calls the appropriate WndProc. For eg, for a button class

void WndProc(MSG message, LPARAM lParam, WPARAM wParam)
{
switch(message)
{
case WM_BUTTONCLICK:
// Code for invoking the delegate
}
}
If it is not handled by a window, it passes it to the parent window and so on. So you can have a single WndProc in the topmost window handle all messages for you.

So it's Windows that takes care of it, not .NET. That's the difference between Java's Swing and .NET. Swing does all painting/event handling by itself.

"Once the self-executable/dll is ready, .NET I believe is out of the picture."

Not really, it's during runtime that the .NET Runtime and CLR play important roles like GC, CAS etc..

Regards
Senthil

GeneralRe: Click Events in .NET Pin
sarabjs22-Feb-05 10:22
sarabjs22-Feb-05 10:22 
GeneralDeserialization throws "No Top Object" exception. Pin
ganeshvijay14-Feb-05 20:55
ganeshvijay14-Feb-05 20:55 
Generalsuitability of .net for network servers Pin
kon_t14-Feb-05 8:25
kon_t14-Feb-05 8:25 
GeneralRe: suitability of .net for network servers Pin
Mike Dimmick15-Feb-05 2:20
Mike Dimmick15-Feb-05 2:20 
GeneralRe: suitability of .net for network servers Pin
kon_t16-Feb-05 15:42
kon_t16-Feb-05 15:42 
GeneralRe: suitability of .net for network servers Pin
Mike Dimmick17-Feb-05 2:57
Mike Dimmick17-Feb-05 2:57 
GeneralRe: suitability of .net for network servers Pin
kon_t17-Feb-05 11:46
kon_t17-Feb-05 11:46 
GeneralRe: suitability of .net for network servers Pin
Rei Miyasaka22-Feb-05 21:43
Rei Miyasaka22-Feb-05 21:43 
GeneralRe: suitability of .net for network servers Pin
Sebastian Schneider23-Feb-05 2:09
Sebastian Schneider23-Feb-05 2:09 
General.Net Control Printing Pin
khurram rasheed13-Feb-05 22:05
khurram rasheed13-Feb-05 22:05 
GeneralSummation of Hours in Dataset Pin
Vipul Mehta13-Feb-05 21:20
Vipul Mehta13-Feb-05 21:20 
GeneralRe: Summation of Hours in Dataset Pin
yasinPL17-Feb-05 14:09
yasinPL17-Feb-05 14:09 
GeneralCreate of PS Pin
sharathgowda13-Feb-05 18:10
sharathgowda13-Feb-05 18:10 
GeneralRe: Create of PS Pin
Mike Dimmick15-Feb-05 3:02
Mike Dimmick15-Feb-05 3:02 
GeneralGet Top 10 from a search engine Pin
Mohsen Saad12-Feb-05 7:38
Mohsen Saad12-Feb-05 7:38 
General.ARaw Packets Pin
Member 170239812-Feb-05 2:43
Member 170239812-Feb-05 2:43 
GeneralVisual Studio: DLL location for Debug Pin
Jerome RG12-Feb-05 0:51
Jerome RG12-Feb-05 0:51 

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.