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

.NET (Core and Framework)

 
AnswerRe: WebBrowser - wait for document to complete (threading?) Pin
Luc Pattyn15-Apr-09 11:02
sitebuilderLuc Pattyn15-Apr-09 11:02 
GeneralRe: WebBrowser - wait for document to complete (threading?) Pin
Viktor Nilsson15-Apr-09 12:02
Viktor Nilsson15-Apr-09 12:02 
GeneralRe: WebBrowser - wait for document to complete (threading?) Pin
Luc Pattyn15-Apr-09 12:08
sitebuilderLuc Pattyn15-Apr-09 12:08 
GeneralRe: WebBrowser - wait for document to complete (threading?) Pin
dojohansen15-Apr-09 21:06
dojohansen15-Apr-09 21:06 
GeneralRe: WebBrowser - wait for document to complete (threading?) Pin
dojohansen15-Apr-09 21:32
dojohansen15-Apr-09 21:32 
AnswerRe: WebBrowser - wait for document to complete (threading?) [modified] Pin
Luc Pattyn16-Apr-09 0:07
sitebuilderLuc Pattyn16-Apr-09 0:07 
QuestionTreeView Check Box State Problems Pin
Tristan Rhodes15-Apr-09 2:24
Tristan Rhodes15-Apr-09 2:24 
AnswerRe: TreeView Check Box State Problems Pin
Henry Minute16-Apr-09 12:24
Henry Minute16-Apr-09 12:24 
The only thing I can think of that might work is to override the two doubleclick event handlers and test for the Level of the node, passed in the eventargs, if Level == 1 (or whatever), return, otherwise do base.onWhatever. THis of course will only work if all of your 'group' nodes are at the same level.

It would look something like:
private override void OnDoubleClick(object sender, TreeNodeMouseClickEventArgs e)
{
    if (e.Node.Level == 1)
    {
        return;
    }

    base OnDoubleClick(sender, e);
}


Hope this helps. Smile | :)

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: TreeView Check Box State Problems Pin
Tristan Rhodes16-Apr-09 23:11
Tristan Rhodes16-Apr-09 23:11 
Question.NET Workflow for Upgrade Wizard? Pin
Brady Kelly14-Apr-09 23:42
Brady Kelly14-Apr-09 23:42 
AnswerRe: .NET Workflow for Upgrade Wizard? Pin
Pete O'Hanlon15-Apr-09 1:35
mvePete O'Hanlon15-Apr-09 1:35 
GeneralRe: .NET Workflow for Upgrade Wizard? Pin
Brady Kelly15-Apr-09 1:39
Brady Kelly15-Apr-09 1:39 
QuestionCreate Custom Event Source by turing UAC ON in Windows VISTA Pin
Vipul Mehta14-Apr-09 23:12
Vipul Mehta14-Apr-09 23:12 
AnswerRe: Create Custom Event Source by turing UAC ON in Windows VISTA Pin
Mark Salsbery15-Apr-09 7:13
Mark Salsbery15-Apr-09 7:13 
Questionvb.net to acceess Pin
radhika bhatt14-Apr-09 21:15
radhika bhatt14-Apr-09 21:15 
AnswerRe: vb.net to acceess Pin
Narendra Reddy Vajrala14-Apr-09 23:31
Narendra Reddy Vajrala14-Apr-09 23:31 
QuestionUnable to emit assembly: Referenced assembly 'Interop.ADODB' does not have a strong name Pin
MarcelloTurnbull14-Apr-09 8:49
MarcelloTurnbull14-Apr-09 8:49 
AnswerRe: Unable to emit assembly: Referenced assembly 'Interop.ADODB' does not have a strong name Pin
Eddy Vluggen14-Apr-09 10:15
professionalEddy Vluggen14-Apr-09 10:15 
QuestionFile search Pin
anandbpsri14-Apr-09 7:03
anandbpsri14-Apr-09 7:03 
AnswerRe: File search Pin
dojohansen14-Apr-09 7:17
dojohansen14-Apr-09 7:17 
Questionproblem in setup project welcome dialog to get new line in welcom text Pin
Narendra Reddy Vajrala14-Apr-09 5:59
Narendra Reddy Vajrala14-Apr-09 5:59 
QuestionProblem while accessing values set in another class function. Pin
Nilesh Hamane14-Apr-09 1:42
Nilesh Hamane14-Apr-09 1:42 
GeneralRe: Problem while accessing values set in another class function. Pin
Nilesh Hamane14-Apr-09 1:46
Nilesh Hamane14-Apr-09 1:46 
GeneralRe: Problem while accessing values set in another class function. Pin
Narendra Reddy Vajrala14-Apr-09 6:02
Narendra Reddy Vajrala14-Apr-09 6:02 
AnswerRe: Problem while accessing values set in another class function. Pin
dojohansen14-Apr-09 7:29
dojohansen14-Apr-09 7: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.