Click here to Skip to main content
15,886,019 members
Home / Discussions / C#
   

C#

 
QuestionWhat is the best way to process Ethernet frames in real-time C#? Pin
Tom Paluzzi14-Oct-05 11:02
Tom Paluzzi14-Oct-05 11:02 
Questionquick oops question Pin
youno9014-Oct-05 10:49
sussyouno9014-Oct-05 10:49 
AnswerRe: quick oops question Pin
Andy Brummer14-Oct-05 10:54
sitebuilderAndy Brummer14-Oct-05 10:54 
AnswerRe: quick oops question Pin
shofb14-Oct-05 16:34
shofb14-Oct-05 16:34 
QuestionUrgent Help:Removing all EventHandlers Pin
Shubhabrata Mohanty14-Oct-05 10:48
Shubhabrata Mohanty14-Oct-05 10:48 
AnswerRe: Urgent Help:Removing all EventHandlers Pin
Dave Kreskowiak14-Oct-05 12:19
mveDave Kreskowiak14-Oct-05 12:19 
GeneralRe: Urgent Help:Removing all EventHandlers Pin
Shubhabrata Mohanty14-Oct-05 12:49
Shubhabrata Mohanty14-Oct-05 12:49 
AnswerRe: Urgent Help:Removing all EventHandlers Pin
S. Senthil Kumar14-Oct-05 20:14
S. Senthil Kumar14-Oct-05 20:14 
You have to manually unsubscribe.
private void Subscribe()
{
   otherForm.TextChanged += new TextChangedDelegate(thisForm_TextChanged);
}

private void Unsubscribe()
{
   otherForm.TextChanged -= new TextChangedDelegate(thisForm_TextChanged);
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Urgent Help:Removing all EventHandlers Pin
Shubhabrata Mohanty14-Oct-05 21:13
Shubhabrata Mohanty14-Oct-05 21:13 
QuestionA problem please help ??? Pin
snouto14-Oct-05 9:59
snouto14-Oct-05 9:59 
AnswerRe: A problem please help ??? Pin
Guffa14-Oct-05 11:59
Guffa14-Oct-05 11:59 
QuestionInvalidCast Exception in Typed Dataset Pin
sameerhanda14-Oct-05 8:09
sameerhanda14-Oct-05 8:09 
AnswerRe: InvalidCast Exception in Typed Dataset Pin
snouto14-Oct-05 10:04
snouto14-Oct-05 10:04 
GeneralRe: InvalidCast Exception in Typed Dataset Pin
sameerhanda14-Oct-05 10:10
sameerhanda14-Oct-05 10:10 
QuestionReposition a Control on Scroll Pin
miah alom14-Oct-05 8:02
miah alom14-Oct-05 8:02 
QuestionBusiness layer, Data Layer and entities Pin
tsramkumar14-Oct-05 6:46
tsramkumar14-Oct-05 6:46 
QuestionUse function of VB.NET in C# Pin
rockxuyenmandem14-Oct-05 6:36
rockxuyenmandem14-Oct-05 6:36 
AnswerRe: Use function of VB.NET in C# Pin
Russell Jones14-Oct-05 6:50
Russell Jones14-Oct-05 6:50 
GeneralRe: Use function of VB.NET in C# Pin
miah alom14-Oct-05 7:58
miah alom14-Oct-05 7:58 
GeneralRe: Use function of VB.NET in C# Pin
mav.northwind14-Oct-05 8:51
mav.northwind14-Oct-05 8:51 
QuestionMSMQ Trigger Parameters Pin
Russell Jones14-Oct-05 6:18
Russell Jones14-Oct-05 6:18 
QuestionInternet Explorer Extension (COM) Pin
Milos Stojanovic14-Oct-05 5:44
Milos Stojanovic14-Oct-05 5:44 
QuestionScroll Panel control when mouse is dragged near the edge Pin
Gulfraz Khan14-Oct-05 4:28
Gulfraz Khan14-Oct-05 4:28 
AnswerRe: Scroll Panel control when mouse is dragged near the edge Pin
Dan Neely14-Oct-05 5:12
Dan Neely14-Oct-05 5:12 
QuestionFileSystemWatcher problem Pin
Dan Neely14-Oct-05 3:39
Dan Neely14-Oct-05 3:39 

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.