Click here to Skip to main content
15,881,882 members
Home / Discussions / C#
   

C#

 
GeneralRe: CA2214 Do not call overridable methods in constructors Pin
Bernhard Hiller3-Jan-13 22:48
Bernhard Hiller3-Jan-13 22:48 
GeneralRe: CA2214 Do not call overridable methods in constructors Pin
jschell4-Jan-13 13:08
jschell4-Jan-13 13:08 
GeneralRe: CA2214 Do not call overridable methods in constructors Pin
DaveyM695-Jan-13 3:00
professionalDaveyM695-Jan-13 3:00 
GeneralRe: CA2214 Do not call overridable methods in constructors Pin
jschell6-Jan-13 4:42
jschell6-Jan-13 4:42 
AnswerRe: CA2214 Do not call overridable methods in constructors Pin
BobJanova3-Jan-13 1:41
BobJanova3-Jan-13 1:41 
GeneralRe: CA2214 Do not call overridable methods in constructors Pin
DaveyM693-Jan-13 12:29
professionalDaveyM693-Jan-13 12:29 
QuestionBind listview row color to active index Pin
bornefalk2-Jan-13 9:50
bornefalk2-Jan-13 9:50 
QuestionUI Automation and MMC Pin
RonNYC22-Jan-13 5:57
RonNYC22-Jan-13 5:57 
Hi. I'm probably making some subtle (or more likely not so subtle) error. I'm trying to drive MMC via a C# program. I can, as a trial, get to the menus of Calc.exe via this code:

Process calcProcess=Process.Start("c:\\windows\\system32\\calc.exe");
       Thread.Sleep(2000);

       AutomationElement aeDesktop = AutomationElement.RootElement;

       AutomationElement aeCalc = null;
       int numWaits = 0;
       do
       {
           aeCalc = aeDesktop.FindFirst(TreeScope.Children,
             new PropertyCondition(AutomationElement.NameProperty, "Calculator"));
           Console.WriteLine("Looking for calculator . . . ");
           ++numWaits;
           Thread.Sleep(100);
       } while (aeCalc == null && numWaits < 10);
       if (aeCalc == null)
           throw new Exception("Failed to find calc.EXE");
       else
           Console.WriteLine("Found it!");
       AutomationElementCollection menuCalcBars = aeCalc.FindAll(TreeScope.Children, new PropertyCondition(
       AutomationElement.ControlTypeProperty, ControlType.MenuBar));


And I get a Count of 1 (for the one menu). BUT when I do this with MMC, I get a count of 0, no menu. In UISpy I can see the Calc menu but I can't see the MMC menu. Any help is GREATLY appreciated.
Ron

Questionmove a newfolder form a system on other system on the network by c# Pin
a2bj1-Jan-13 23:39
a2bj1-Jan-13 23:39 
AnswerRe: move a newfolder form a system on other system on the network by c# Pin
Jibesh1-Jan-13 23:46
professionalJibesh1-Jan-13 23:46 
AnswerRe: move a newfolder form a system on other system on the network by c# Pin
Simon_Whale2-Jan-13 3:02
Simon_Whale2-Jan-13 3:02 
Questiondata Set Not Coming In GridView Pin
GugliMugli1-Jan-13 17:50
GugliMugli1-Jan-13 17:50 
AnswerRe: data Set Not Coming In GridView Pin
Jibesh1-Jan-13 21:25
professionalJibesh1-Jan-13 21:25 
GeneralRe: data Set Not Coming In GridView Pin
GugliMugli1-Jan-13 23:35
GugliMugli1-Jan-13 23:35 
GeneralRe: data Set Not Coming In GridView Pin
Jibesh1-Jan-13 23:36
professionalJibesh1-Jan-13 23:36 
GeneralRe: data Set Not Coming In GridView Pin
GugliMugli1-Jan-13 23:40
GugliMugli1-Jan-13 23:40 
GeneralRe: data Set Not Coming In GridView Pin
Jibesh1-Jan-13 23:42
professionalJibesh1-Jan-13 23:42 
GeneralRe: data Set Not Coming In GridView Pin
GugliMugli1-Jan-13 23:57
GugliMugli1-Jan-13 23:57 
GeneralRe: data Set Not Coming In GridView Pin
Jibesh2-Jan-13 0:02
professionalJibesh2-Jan-13 0:02 
GeneralRe: data Set Not Coming In GridView Pin
GugliMugli2-Jan-13 1:27
GugliMugli2-Jan-13 1:27 
GeneralRe: data Set Not Coming In GridView Pin
Jibesh2-Jan-13 1:29
professionalJibesh2-Jan-13 1:29 
AnswerRe: data Set Not Coming In GridView Pin
Richard MacCutchan2-Jan-13 1:47
mveRichard MacCutchan2-Jan-13 1:47 
GeneralRe: data Set Not Coming In GridView Pin
Jibesh2-Jan-13 2:06
professionalJibesh2-Jan-13 2:06 
GeneralRe: data Set Not Coming In GridView Pin
GugliMugli2-Jan-13 2:18
GugliMugli2-Jan-13 2:18 
GeneralRe: data Set Not Coming In GridView Pin
Richard MacCutchan2-Jan-13 4:15
mveRichard MacCutchan2-Jan-13 4:15 

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.