Click here to Skip to main content
15,902,198 members
Home / Discussions / C#
   

C#

 
GeneralRe: ProcessController Question Pin
Daniel Turini7-Dec-04 4:22
Daniel Turini7-Dec-04 4:22 
GeneralRe: ProcessController Question Pin
realmontanakid7-Dec-04 4:58
realmontanakid7-Dec-04 4:58 
GeneralStrings Constants Pin
Dirso6-Dec-04 23:51
Dirso6-Dec-04 23:51 
GeneralRe: Strings Constants Pin
Robin Panther7-Dec-04 3:17
Robin Panther7-Dec-04 3:17 
GeneralJIT Pin
Amirzeb6-Dec-04 23:19
Amirzeb6-Dec-04 23:19 
GeneralRe: JIT Pin
benjymous7-Dec-04 0:46
benjymous7-Dec-04 0:46 
GeneralMessage loop Pin
akarwa6-Dec-04 22:52
akarwa6-Dec-04 22:52 
GeneralRe: Message loop Pin
Daniel Turini7-Dec-04 4:40
Daniel Turini7-Dec-04 4:40 
akarwa wrote:
1. Is this needed so that the form can continue to receive keyboard and mouse events ?
Yes: actually, any window message, as WM_SETTEXT or WM_PAINT, too.

akarwa wrote:
2. Can only certain classed be used as arguments in the Application.Run(param) method ?
The "param" you're mentioning, is just the form the Application.Run method will keep monitoring while it runs the message loop. As soon as the form "param" closes, the Application.Run call will return. You can have as many Application.Run() calls you may want (only one at a time, sure), and can even not pass any form to it, and the message loop will run until Application.ExitThread is called.

akarwa wrote:
3. If its a message loop doesn't it block the thread ?
Yes - aynthing that needs to be run on this thread will only be processed in a response to a window message, e.g., a button click.

Yes, even I am blogging now!
GeneralCustom control properties Pin
spif20016-Dec-04 22:33
spif20016-Dec-04 22:33 
GeneralRe: Custom control properties Pin
spif20016-Dec-04 23:20
spif20016-Dec-04 23:20 
Generalcount number of rows in query Pin
Stijn Goris6-Dec-04 21:57
Stijn Goris6-Dec-04 21:57 
GeneralRe: count number of rows in query Pin
sreejith ss nair7-Dec-04 1:59
sreejith ss nair7-Dec-04 1:59 
GeneralRe: count number of rows in query Pin
Jay Shankar7-Dec-04 17:00
Jay Shankar7-Dec-04 17:00 
QuestionQuery SPS database? Pin
6-Dec-04 20:57
suss6-Dec-04 20:57 
QuestionHow can I dispose a client activated proxy in .Net Remoting? Pin
Bjoern.adG6-Dec-04 20:57
Bjoern.adG6-Dec-04 20:57 
Generalproblem retrieving values from combo box Pin
Rashid_Mehmood6-Dec-04 20:06
Rashid_Mehmood6-Dec-04 20:06 
GeneralRe: problem retrieving values from combo box Pin
sreejith ss nair6-Dec-04 21:24
sreejith ss nair6-Dec-04 21:24 
GeneralRe: problem retrieving values from combo box Pin
Skynyrd6-Dec-04 23:05
Skynyrd6-Dec-04 23:05 
GeneralGet data type and Create table Pin
Member 10976996-Dec-04 19:37
Member 10976996-Dec-04 19:37 
GeneralEmbedding Win32 dll Pin
Yaakov Davis6-Dec-04 18:43
Yaakov Davis6-Dec-04 18:43 
GeneralRe: Embedding Win32 dll Pin
Daniel Turini6-Dec-04 20:11
Daniel Turini6-Dec-04 20:11 
GeneralRe: Embedding Win32 dll Pin
sreejith ss nair6-Dec-04 21:36
sreejith ss nair6-Dec-04 21:36 
GeneralRe: Embedding Win32 dll Pin
Yaakov Davis7-Dec-04 1:35
Yaakov Davis7-Dec-04 1:35 
GeneralRe: Embedding Win32 dll Pin
sreejith ss nair7-Dec-04 1:53
sreejith ss nair7-Dec-04 1:53 
GeneralRe: Embedding Win32 dll Pin
Yaakov Davis7-Dec-04 2:06
Yaakov Davis7-Dec-04 2:06 

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.