Click here to Skip to main content
15,891,184 members

Comments by sumitk.cadc (Top 17 by date)

sumitk.cadc 25-Mar-19 23:48pm View    
yes i am using the same but its working fine with winForm application but for java application its only able to find hWnd for parent window not for its child controls.
i need to access values of textboxes
sumitk.cadc 3-Dec-17 7:53am View    
hi,
thanks for posting the link,
but this is for WinForm Datagrid. it wont work for WPF datagrid
Thanks
sumitk.cadc 3-Dec-17 7:49am View    
hi all ,
i want to achieve same thing in WPF datagrid please tell me how to to do this in WPF?
TIA
sumitk.cadc 3-Dec-17 7:40am View    
hi Dave,
Thanks for your comment.
my requirement is i want to check the install location of any product.
so can you help me out how i can achieve this.
or in HKEY_LOCAL_MACHINE\SOFTWARE or HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node
i want to search the name of "Product Folder" and if it is there then i want to read all the values.
For example i want to check McAfee product's folder location in Registry node
sumitk.cadc 28-Nov-17 0:15am View    
Hi Richard,
can you please tell me how to pass query in above method for time span. i am writing like below but it is saying invalid query.

if (EventLog.Exists(LogName))
{
EventLogSession logsession = new EventLogSession();
logsession.ExportLogAndMessages(LogName, PathType.LogName, "*[TimeCreated[@SystemTime>='2017-11-28T02:49:35.000Z' and @SystemTime<='2017-11-28T03:50:51.999Z']]", subfolderpath, false, CultureInfo.CurrentCulture);

}