Click here to Skip to main content
15,904,416 members
Home / Discussions / C#
   

C#

 
GeneralRe: Detecting instances of Internet Explorer for all users logged in Pin
Ihtesham15-Mar-10 8:58
Ihtesham15-Mar-10 8:58 
GeneralRe: Detecting instances of Internet Explorer for all users logged in Pin
Dave Kreskowiak15-Mar-10 14:37
mveDave Kreskowiak15-Mar-10 14:37 
AnswerRe: Detecting instances of Internet Explorer for all users logged in Pin
#realJSOP15-Mar-10 0:12
professional#realJSOP15-Mar-10 0:12 
QuestionTrail License concept doubts Pin
anishkannan14-Mar-10 19:14
anishkannan14-Mar-10 19:14 
AnswerRe: Trail License concept doubts Pin
Ravi Bhavnani14-Mar-10 19:17
professionalRavi Bhavnani14-Mar-10 19:17 
GeneralRe: Trail License concept doubts Pin
anishkannan14-Mar-10 19:29
anishkannan14-Mar-10 19:29 
GeneralRe: Trail License concept doubts Pin
anishkannan14-Mar-10 23:48
anishkannan14-Mar-10 23:48 
GeneralRe: Trail License concept doubts Pin
Luc Pattyn15-Mar-10 2:03
sitebuilderLuc Pattyn15-Mar-10 2:03 
GeneralRe: Trail License concept doubts Pin
anishkannan15-Mar-10 18:29
anishkannan15-Mar-10 18:29 
GeneralRe: Trail License concept doubts Pin
Luc Pattyn15-Mar-10 18:34
sitebuilderLuc Pattyn15-Mar-10 18:34 
QuestionWriting word in MS word by using voice Pin
Basudevkuet14-Mar-10 18:23
Basudevkuet14-Mar-10 18:23 
AnswerRe: Writing word in MS word by using voice Pin
ScottM114-Mar-10 21:03
ScottM114-Mar-10 21:03 
GeneralRe: Writing word in MS word by using voice in c# Pin
Basudevkuet15-Mar-10 8:31
Basudevkuet15-Mar-10 8:31 
GeneralRe: Writing word in MS word by using voice in c# Pin
ScottM115-Mar-10 20:57
ScottM115-Mar-10 20:57 
AnswerRe: Writing word in MS word by using voice Pin
Andre' Gardiner14-Mar-10 23:28
professionalAndre' Gardiner14-Mar-10 23:28 
GeneralRe: Writing word in MS word by using voice Pin
Basudevkuet15-Mar-10 8:07
Basudevkuet15-Mar-10 8:07 
AnswerRe: Writing word in MS word by using voice Pin
Dave Kreskowiak15-Mar-10 4:07
mveDave Kreskowiak15-Mar-10 4:07 
QuestionProblem while Deserializing [Solved] Pin
nagendrathecoder14-Mar-10 18:23
nagendrathecoder14-Mar-10 18:23 
AnswerRe: Problem while Deserializing Pin
nagendrathecoder14-Mar-10 19:25
nagendrathecoder14-Mar-10 19:25 
QuestionDatagridView Multiple ComboBox issue Pin
kruegersck14-Mar-10 12:08
kruegersck14-Mar-10 12:08 
AnswerRe: DatagridView Multiple ComboBox issue Pin
Dr.Walt Fair, PE14-Mar-10 14:59
professionalDr.Walt Fair, PE14-Mar-10 14:59 
QuestionIs scrollbar hidden? Pin
hain14-Mar-10 11:01
hain14-Mar-10 11:01 
AnswerRe: Is scrollbar hidden? Pin
Luc Pattyn14-Mar-10 11:57
sitebuilderLuc Pattyn14-Mar-10 11:57 
Hi,

AFAIK that will not be simple as there is no .NET support for it. I would suggest:
- getting the Handle;
- calling EnumChildWindows;
- somehow recognizing which of those are scroll bars (don't recall how right now);
- look at their visibility.

That will take a lot of P/Invoke stuff; these prototypes may help:
public delegate bool LP_EnumWindowsProc(IntPtr hWnd, IntPtr lParam);

[DllImport("user32.dll", CallingConvention=CallingConvention.StdCall)]
public  static extern int EnumChildWindows(IntPtr hParent,
    LP_EnumWindowsProc ewp, IntPtr lParam);

[DllImport("user32.dll", CallingConvention=CallingConvention.StdCall)]
public static extern bool IsWindowVisible(IntPtr hWnd);


Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.

AnswerRe: Is scrollbar hidden? Pin
Alan N14-Mar-10 13:10
Alan N14-Mar-10 13:10 
AnswerRe: Is scrollbar hidden? Pin
Luc Pattyn14-Mar-10 13:29
sitebuilderLuc Pattyn14-Mar-10 13: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.