Click here to Skip to main content
15,895,799 members
Home / Discussions / C#
   

C#

 
AnswerRe: convert date and time Pin
User 665825-Sep-06 1:36
User 665825-Sep-06 1:36 
GeneralRe: convert date and time Pin
Yustme25-Sep-06 1:43
Yustme25-Sep-06 1:43 
AnswerRe: convert date and time Pin
eggsovereasy25-Sep-06 3:29
eggsovereasy25-Sep-06 3:29 
GeneralRe: convert date and time Pin
User 665825-Sep-06 4:39
User 665825-Sep-06 4:39 
Questiontab control Pin
Parshant Verma25-Sep-06 0:45
Parshant Verma25-Sep-06 0:45 
QuestionC# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
gagy37925-Sep-06 0:31
gagy37925-Sep-06 0:31 
AnswerRe: C# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
John5025-Jul-15 20:31
John5025-Jul-15 20:31 
GeneralRe: C# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll Pin
vishnukamath31-Oct-17 20:08
vishnukamath31-Oct-17 20:08 
Hi ,

How to click a button using Java Access Bridge with WindowsAccessBridge.dll (C#.net). Please share me complete code for below two classes.
1)AccessibleActionsToDo
2)AccessibleActions


AccessibleActionsToDo actions_to_do;

int temp2 = Marshal.SizeOf(new AccessibleActions());
IntPtr accessible_action_ptr = Marshal.AllocHGlobal(temp2);
JabApi.getAccessibleActions(vmID, currentPtr, accessible_action_ptr);
AccessibleActions actions1 = (AccessibleActions)Marshal.PtrToStructure(accessible_action_ptr, typeof(AccessibleActions));

actions_to_do.actionsCount = actions1.actionsCount;
actions_to_do.actions = actions1.actionInfo;

int temp3 = Marshal.SizeOf(new AccessibleActionsToDo());
IntPtr accessible_action_ptr1 = Marshal.AllocHGlobal(temp3);
JabApi.MouseClickedDelegate mcd1 = new JabApi.MouseClickedDelegate(HandleMouseClicked);
int fp = 0;
JabApi.setMouseClickedFP(null);
Marshal.StructureToPtr(actions_to_do, accessible_action_ptr1, false);
JabApi.doAccessibleActions(vmID, currentPtr, accessible_action_ptr1, &failure);
IntPtr Window_Handle = JabApi.getHWNDFromAccessibleContext(vmID, currentPtr);
QuestionFinding the number of Occurance of a string Pin
praveenqwe24-Sep-06 23:53
praveenqwe24-Sep-06 23:53 
AnswerRe: Finding the number of Occurance of a string Pin
Christian Graus25-Sep-06 0:01
protectorChristian Graus25-Sep-06 0:01 
AnswerRe: Finding the number of Occurance of a string Pin
Ed.Poore25-Sep-06 0:38
Ed.Poore25-Sep-06 0:38 
GeneralRe: Finding the number of Occurance of a string Pin
asishpatnaik25-Sep-06 1:08
asishpatnaik25-Sep-06 1:08 
GeneralRe: Finding the number of Occurance of a string Pin
Ed.Poore25-Sep-06 1:30
Ed.Poore25-Sep-06 1:30 
AnswerRe: Finding the number of Occurance of a string Pin
Guffa25-Sep-06 2:44
Guffa25-Sep-06 2:44 
Questionhow to open gprs connection from my pocket pc 2003 Pin
mohdmeraj24-Sep-06 23:53
mohdmeraj24-Sep-06 23:53 
Questionupdate app.config file at runtime Pin
steve_rm24-Sep-06 23:50
steve_rm24-Sep-06 23:50 
AnswerRe: update app.config file at runtime Pin
Christian Graus24-Sep-06 23:57
protectorChristian Graus24-Sep-06 23:57 
GeneralRe: update app.config file at runtime Pin
steve_rm25-Sep-06 1:22
steve_rm25-Sep-06 1:22 
GeneralRe: update app.config file at runtime Pin
Ed.Poore25-Sep-06 1:31
Ed.Poore25-Sep-06 1:31 
QuestionRe: update app.config file at runtime Pin
steve_rm25-Sep-06 4:47
steve_rm25-Sep-06 4:47 
AnswerRe: update app.config file at runtime Pin
Ed.Poore25-Sep-06 5:25
Ed.Poore25-Sep-06 5:25 
QuestionRe: update app.config file at runtime Pin
steve_rm25-Sep-06 4:48
steve_rm25-Sep-06 4:48 
GeneralRe: update app.config file at runtime Pin
S. Senthil Kumar25-Sep-06 5:20
S. Senthil Kumar25-Sep-06 5:20 
QuestionRe: update app.config file at runtime Pin
steve_rm25-Sep-06 6:42
steve_rm25-Sep-06 6:42 
GeneralRe: update app.config file at runtime Pin
Christian Graus25-Sep-06 10:16
protectorChristian Graus25-Sep-06 10:16 

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.