Click here to Skip to main content
15,925,661 members
Home / Discussions / C#
   

C#

 
AnswerRe: Error in System.drawing.dll Pin
Judah Gabriel Himango22-Jun-06 4:45
sponsorJudah Gabriel Himango22-Jun-06 4:45 
GeneralRe: Error in System.drawing.dll Pin
Reza Raad23-Jun-06 22:27
Reza Raad23-Jun-06 22:27 
AnswerRe: Error in System.drawing.dll Pin
bannapradeep22-Jun-06 23:02
bannapradeep22-Jun-06 23:02 
GeneralRe: Error in System.drawing.dll Pin
Reza Raad23-Jun-06 20:51
Reza Raad23-Jun-06 20:51 
AnswerRe: Error in System.drawing.dll Pin
Reza Raad25-Jun-06 0:08
Reza Raad25-Jun-06 0:08 
Questionhandling events fired by other threads Pin
Martin2322-Jun-06 2:05
Martin2322-Jun-06 2:05 
AnswerRe: handling events fired by other threads Pin
Stefan Troschuetz22-Jun-06 3:07
Stefan Troschuetz22-Jun-06 3:07 
GeneralRe: handling events fired by other threads Pin
Martin2322-Jun-06 4:41
Martin2322-Jun-06 4:41 
QuestionMultiple columns in treeview control - I Pin
Kais4U22-Jun-06 0:20
Kais4U22-Jun-06 0:20 
AnswerRe: Multiple columns in treeview control - I Pin
led mike22-Jun-06 5:50
led mike22-Jun-06 5:50 
QuestionCrsytal Report in C# Pin
Alamzeb khan22-Jun-06 0:18
Alamzeb khan22-Jun-06 0:18 
QuestionMultiple columns in treeview control Pin
Kais4U22-Jun-06 0:15
Kais4U22-Jun-06 0:15 
AnswerRe: Multiple columns in treeview control Pin
Robert Rohde22-Jun-06 1:01
Robert Rohde22-Jun-06 1:01 
GeneralRe: Multiple columns in treeview control Pin
led mike22-Jun-06 5:53
led mike22-Jun-06 5:53 
QuestionEncryption Pin
sroberts8221-Jun-06 23:32
sroberts8221-Jun-06 23:32 
QuestionConvert FieldInfo to Dictionary Pin
Wilson Wu21-Jun-06 23:23
Wilson Wu21-Jun-06 23:23 
AnswerRe: Convert FieldInfo to Dictionary Pin
Robert Rohde22-Jun-06 0:13
Robert Rohde22-Jun-06 0:13 
AnswerRe: Convert FieldInfo to Dictionary Pin
Wilson Wu22-Jun-06 0:40
Wilson Wu22-Jun-06 0:40 
Questionhow to divide a picture in to many parts an set position for it Pin
superdragon21-Jun-06 23:13
superdragon21-Jun-06 23:13 
Questioninheriting classs from different assembly Pin
Harvey Turtle21-Jun-06 22:55
Harvey Turtle21-Jun-06 22:55 
AnswerRe: inheriting classs from different assembly Pin
KrunalC21-Jun-06 23:27
KrunalC21-Jun-06 23:27 
GeneralRe: inheriting classs from different assembly Pin
Harvey Turtle21-Jun-06 23:44
Harvey Turtle21-Jun-06 23:44 
QuestionRemote computer shutdown Pin
Sangeetha .v21-Jun-06 22:26
Sangeetha .v21-Jun-06 22:26 
AnswerRe: Remote computer shutdown Pin
Sangeetha .v22-Jun-06 19:03
Sangeetha .v22-Jun-06 19:03 
QuestionHow to forbid contextmenu in MSHtml control. Pin
dreamwinter21-Jun-06 22:20
dreamwinter21-Jun-06 22:20 
Confused | :confused: I just only forbid contextmenu in mshtml control. The HtmlDocumentClass containt the event of HTMLDocumentEvents2_Event_oncontextmenu,so I write the code below ------------------------------------------

doc.HTMLDocumentEvents2_Event_oncontextmenu+=new mshtml.HTMLDocumentEvents2_oncontextmenuEventHandler(doc_HTMLDocumentEvents2_Event_oncontextmenu);


private bool doc_HTMLDocumentEvents2_Event_oncontextmenu(mshtml.IHTMLEventObj pEvtObj)
{
return false;
}

//
------------------------------------------------------
But the editor,mshtml control can not edit when the property of designMode is 'On' using keyboard.
Can you tell me why? And how to deal with the error? Thank you very!

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.