Is it possible to add click event to a option group. on click of option group i have to do some operations & i know about value change listeners but it won't be enough for my events
any suggestions are accepted gladly
Thanks in advance
Related
Where to look for code that calls a window like this? Is it JavaScript on browser's side or something else? This modal window is shown to fix an address of work order (when user changes it) and make it the same as the address of account. I do not want it and need to switch the window off.
It is Javascript which is firing on change of your Field (work order).
It is quite easy to turn it off.
Go to Setting--> Customizations click on it
Then click on Customize the system
Then Select your Main form.
Then click on your particualr filed and popup will open something like below
When you double click you will see below option, just uncheck enable and the function which is firing on change of your work order will be disabled.
I want to combine message menu and message button in my slack app.This is the workflow I am trying to achieve.
1) User fires a slack slash command to display the menu. This menu will have one dropdown and three buttons. This I am able to achieve.
2) I want user to select an option from dropdown and press any of the action button.Then only the action should be triggered
Problem is that when i select any option from dropdown, it triggers the action. I do not want the action to be triggered this way. I just want the action to be triggered after clicking on the button
What you are asking is not possible with Slack. Clicking an option in an interactive menu will always issue an action.
Instead I would suggest to implement the workflow in two steps. First show the buttons and then the menu (or other way around).
https://api.slack.com/docs/message-menus
You can mix message buttons and message menus within the same message by including multiple attachments
In office applications i want to get the word on which the user right clicks.
i was able to get for Excel and Word. in outlook and PowerPoint i am not able detect the right click event.
In outlook i want to detect right click on a word in mail body.
In power point i want to detect right click in a slide content.
In outlook i have tried the events:
ItemContextMenuDisplay,
AttachmentContextMenuDisplay,
FolderContextMenuDisplay,
ContextMenuClose,
StoreContextMenuDisplay,
ViewContextMenuDisplay,
In power point i have tried:
WindowBeforeRightClick,
can somebody help me with the events to be used?
I will try to answer the Outlook part.
The Outlook object model doesn't provide any events for that. The only possible solution is to add your control to the context menu and handle the getVisible or getEnabled callbacks. Thus, you will be aware when the context menu is going to be displayed. But it seems MS doesn't provide the required IDs for that menu, see Extending the User Interface in Outlook 2010 for more information.
See Office 2013 Help Files: Office Fluent User Interface Control Identifiers
In the case of PowerPoint, WindowBeforeRightClick is the correct event.
You would find that setting Cancel = True in the handler for that event only works if the right-click is on the slide itself. On a shape or within a text range this fails to work as expected.
Workaround is the lock the screen and switch to a different view and back and then update the screen to prevent the contextual menu from appearing for the shape/text range.
I am trying to write a program in VBScript to automate tasks that I do in Internet Explorer. I need to click a series of buttons and textboxes and I was wondering if someone could give me a hint on how to get VBScript to click them for me?
At the moment I am just telling my program to click "tab" to get to the button I want and click "enter" - which makes the program really slow. I also need to enter data into a series of textboxes and click a button that will add another textbox for me to enter information in.
Any guidance would be greatly appreciated.
Thanks!
Right click the button you want in VBscript to click.
Click Inspect Element.
Find the Element ID of the button.
Make VBscript click the button like the example below:
Document.getElementById("IDGOESHERE").Click
In my VB6 project, I'm using only Toolbar Control in main MDI From (Not menubar), The Toolbar has big pictures denoting actions like New, Save, View, Help etc. I wanted to know if there is any way to create keyboard short-cut for these actions. As far as I know, properties of Toolbar control of MS Windows Common Controls 6.0 isn't showing any relative option to do this. As MDI form doesn't have any key events, I can't create short-cuts by associating keys as well. I don't want menu bar in my form as it has very few items so only Toolbar makes the job. Please suggest any idea to have short-cuts for toolbar buttons...... :-| Thanks in advance.............
One way is to use a local WH_KEYBOARD hook, this article explains how (and provides a library).
Add a key event to your form. You could then process the short cuts by having them call the same function that would have been called on the mouse down event for the menubar.
For example you might have something like
public sub SaveItem_Clicked()
DoSave()
end sub
Then in your keypress check for Alt+S etc, and have it call DoSave()