Click here to Skip to main content
15,900,511 members
Home / Discussions / C#
   

C#

 
AnswerRe: Rich Text Box to Rich Text Box - Help! Pin
bobsugar22225-Jan-07 23:31
bobsugar22225-Jan-07 23:31 
GeneralRe: Rich Text Box to Rich Text Box - Help! Pin
rvp717y26-Jan-07 9:12
rvp717y26-Jan-07 9:12 
Questionc# to excel Pin
barak16048725-Jan-07 11:28
barak16048725-Jan-07 11:28 
AnswerRe: c# to excel Pin
Ravi Bhavnani25-Jan-07 11:35
professionalRavi Bhavnani25-Jan-07 11:35 
AnswerRe: c# to excel [modified] Pin
mihksoft25-Jan-07 20:05
mihksoft25-Jan-07 20:05 
Answerthank u it helped :) Pin
barak16048726-Jan-07 0:38
barak16048726-Jan-07 0:38 
QuestionSuspending event handling Pin
Drew McGhie25-Jan-07 10:26
Drew McGhie25-Jan-07 10:26 
AnswerRe: Suspending event handling Pin
Abisodun25-Jan-07 11:14
Abisodun25-Jan-07 11:14 
How about using one method to remove the handlers and another to add. Then you're swichting them on and off in just two places.

i.e.
private void RemoveHandlers()
{
button1.Click -= new EventHandler(clickHandler);
----
}

private void AddHandlers()
{
button1.Click += new EventHandler(clickHandler);
----
}
QuestionCast methods Pin
Aaron VanWieren25-Jan-07 10:21
Aaron VanWieren25-Jan-07 10:21 
AnswerRe: Cast methods Pin
Marc Clifton25-Jan-07 12:26
mvaMarc Clifton25-Jan-07 12:26 
GeneralRe: Cast methods Pin
Aaron VanWieren25-Jan-07 12:31
Aaron VanWieren25-Jan-07 12:31 
GeneralRe: Cast methods Pin
Abisodun25-Jan-07 13:48
Abisodun25-Jan-07 13:48 
AnswerRe: Cast methods Pin
Christian Graus25-Jan-07 15:48
protectorChristian Graus25-Jan-07 15:48 
Questionrecord stream from webcam Pin
sini8725-Jan-07 9:30
sini8725-Jan-07 9:30 
AnswerRe: record stream from webcam Pin
Ed.Poore25-Jan-07 12:01
Ed.Poore25-Jan-07 12:01 
QuestionHow to restore the default base path after using an open file dialog Pin
Dan Neely25-Jan-07 8:52
Dan Neely25-Jan-07 8:52 
AnswerRe: How to restore the default base path after using an open file dialog Pin
Dave Kreskowiak25-Jan-07 9:19
mveDave Kreskowiak25-Jan-07 9:19 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Dan Neely25-Jan-07 9:48
Dan Neely25-Jan-07 9:48 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Dave Kreskowiak25-Jan-07 10:26
mveDave Kreskowiak25-Jan-07 10:26 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Martin#25-Jan-07 19:40
Martin#25-Jan-07 19:40 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Dave Kreskowiak26-Jan-07 2:29
mveDave Kreskowiak26-Jan-07 2:29 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Martin#26-Jan-07 3:07
Martin#26-Jan-07 3:07 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Dave Kreskowiak26-Jan-07 14:07
mveDave Kreskowiak26-Jan-07 14:07 
GeneralRe: How to restore the default base path after using an open file dialog Pin
Martin#28-Jan-07 22:59
Martin#28-Jan-07 22:59 
AnswerRe: How to restore the default base path after using an open file dialog Pin
Martin#25-Jan-07 9:29
Martin#25-Jan-07 9:29 

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.