Click here to Skip to main content
15,886,362 members
Home / Discussions / C#
   

C#

 
AnswerRe: Hi please why i cant download any zip file from this site Pin
Kornfeld Eliyahu Peter6-Jul-15 2:46
professionalKornfeld Eliyahu Peter6-Jul-15 2:46 
QuestionHow to change keyword Color in Visual Studio 2013? Pin
George Tourtsinakis5-Jul-15 0:22
George Tourtsinakis5-Jul-15 0:22 
AnswerRe: How to change keyword Color in Visual Studio 2013? Pin
OriginalGriff5-Jul-15 0:32
mveOriginalGriff5-Jul-15 0:32 
GeneralRe: How to change keyword Color in Visual Studio 2013? Pin
George Tourtsinakis5-Jul-15 23:51
George Tourtsinakis5-Jul-15 23:51 
GeneralRe: How to change keyword Color in Visual Studio 2013? Pin
OriginalGriff6-Jul-15 0:03
mveOriginalGriff6-Jul-15 0:03 
GeneralRe: How to change keyword Color in Visual Studio 2013? Pin
George Tourtsinakis10-Jul-15 5:07
George Tourtsinakis10-Jul-15 5:07 
GeneralRe: How to change keyword Color in Visual Studio 2013? Pin
Richard MacCutchan6-Jul-15 0:11
mveRichard MacCutchan6-Jul-15 0:11 
QuestionNot able to get JavaAccessibility related info using windowsaccessbridge in c# Pin
Gopi Krishna4-Jul-15 8:46
Gopi Krishna4-Jul-15 8:46 
I have a sample Java app that I got when I downloaded javaaccessablity-2.0.2 that makes use of Java Accessibility (via the Java Access Bridge WindowsAccessBridge-32.dll). Although it calls the getAccessibleContextFromHWND successfully it returns false.

I have a 64-bit Java SDK installed in my windows 64-bit system. And the following is the code I tried.
class Program
{

[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("WindowsAccessBridge-32.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static bool getAccessibleContextFromHWND(IntPtr hwnd, out Int32 vmID, out Int64 acParent);


[DllImport("WindowsAccessBridge-32.dll", CallingConvention = CallingConvention.Cdecl, ThrowOnUnmappableChar = true, CharSet = CharSet.Unicode)]
private extern static void Windows_run();

[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

static void Main(string[] args)
{
Int32 vmID = 0;
Int64 _acParent =0;
Windows_run();
IntPtr hWnd = (IntPtr)FindWindow("SunAwtFrame","Standalone SwingApp");
bool retVal = getAccessibleContextFromHWND(hWnd, out vmID, out _acParent);

}
}

I have read a similar post but it didn't solve my issue.
I tired calling IsJavaWindow method also but it returns false. Any idea how to fix this issue ? The java app I have is the one I downloaded from oracle site named " sample java app"
QuestionLooking for OAuth/winforms experience and help(deliberately vague heading as I don't know where to start) Pin
GuyThiebaut4-Jul-15 1:12
professionalGuyThiebaut4-Jul-15 1:12 
QuestionHow to get all files into network(f12 on browser)? Pin
jeff ninney3-Jul-15 19:15
jeff ninney3-Jul-15 19:15 
AnswerRe: How to get all files into network(f12 on browser)? Pin
Richard MacCutchan3-Jul-15 21:23
mveRichard MacCutchan3-Jul-15 21:23 
AnswerRe: How to get all files into network(f12 on browser)? Pin
OriginalGriff3-Jul-15 21:36
mveOriginalGriff3-Jul-15 21:36 
AnswerRe: How to get all files into network(f12 on browser)? Pin
Dave Kreskowiak4-Jul-15 4:49
mveDave Kreskowiak4-Jul-15 4:49 
Questionserver mappath get outside root Pin
jeyaseelan.A3-Jul-15 17:45
jeyaseelan.A3-Jul-15 17:45 
AnswerRe: server mappath get outside root Pin
Dave Kreskowiak3-Jul-15 18:35
mveDave Kreskowiak3-Jul-15 18:35 
GeneralRe: server mappath get outside root Pin
jeyaseelan.A3-Jul-15 18:39
jeyaseelan.A3-Jul-15 18:39 
GeneralRe: server mappath get outside root Pin
Richard MacCutchan3-Jul-15 21:21
mveRichard MacCutchan3-Jul-15 21:21 
GeneralRe: server mappath get outside root Pin
Dave Kreskowiak4-Jul-15 4:48
mveDave Kreskowiak4-Jul-15 4:48 
QuestionApplication allowed on a single PC Pin
DPaul19943-Jul-15 4:58
DPaul19943-Jul-15 4:58 
GeneralRe: Application allowed on a single PC Pin
Sascha Lefèvre3-Jul-15 5:14
professionalSascha Lefèvre3-Jul-15 5:14 
AnswerRe: Application allowed on a single PC Pin
Dave Kreskowiak3-Jul-15 5:32
mveDave Kreskowiak3-Jul-15 5:32 
AnswerRe: Application allowed on a single PC Pin
OriginalGriff3-Jul-15 6:14
mveOriginalGriff3-Jul-15 6:14 
GeneralRe: Application allowed on a single PC Pin
DPaul19943-Jul-15 10:24
DPaul19943-Jul-15 10:24 
QuestionWPF - Storing and manipulating external data Pin
S_Augure3-Jul-15 2:50
S_Augure3-Jul-15 2:50 
AnswerRe: WPF - Storing and manipulating external data Pin
Eddy Vluggen3-Jul-15 3:08
professionalEddy Vluggen3-Jul-15 3:08 

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.