It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I need to check my file references, but I don't seem to have a "Tools" menu and the "References" command doesn't appear in the list for customizations
Thanks
The menu option I think you are looking for to check file references is not accessed directly from Excel, but is inside the VBA interface.
Go to the Developer Tab and then to "Visual Basic". In the menu options there, you will find a Tools menu with a References otion which lets you add and remove file references
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I'm using UFT 15 to automatize some Web GUI Tests using VB Script. I have to click on a WebCheckBox of a pop up but it doesn't work because when I used Record to click on the WebCheckBox, UFT pasted that line:
Browser("A").Window("B").WinObject("Internet Explorer_Server").Click
I understood that WinObject("Internet Explorer_Server") is a generic object.
Could someone help me?
It looks like your browser isn't correctly recognized by UFT, the object hierarchy should be something like: Browser("A").Page("B").WebElement("C").Click (where WebElement could be quite a few things like Link, WebButton etc.).
Check if UFT's agent is enabled in your browser (in this case IE).
During the first launch of IE you should have seen a toolbar like this:
If you didn't click Enable then, you should go to the "Gear icon" -> Manage Add-ons menu and enable the UFT addon:
I am making a system in which, a user can write any questions and answer of that question, those question and answer include all maths and science formulas and other symbols of any subject and its also include images those can be placed by a user in particular question or answer and formate that question or answer, so i am searching for editor or some other idea which can help me, please help me...
Have a look atĀ codecogs editor, that's meet your need of web formula editor
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Google has dropped the instant search feature lately (in the news: the verge).
So, without the instant search how to navigate through the results of a normal google search only with the keyboard?
Note, that with the instant search this question is already answered on this Stackoverflow site.
I created a very simple open source extension to fix this and make keyboard shortcuts configurable.
You can install it from the Chrome Webstore:
Google Search Navigator.
Hope you find it useful, but in any case- feedback is welcome!
You may find Chrome extension RESULTER good for this. It's basically a Google Search productivity extension.
Apart from bringing back the Tab and Arrows navigation keyboard shortcuts on Google Search results page, it introduces a special panel with search results. You can use Alt+A shortcut to open search results list and navigate from there, without going back to the Google Search page. It makes search flow more natural.
You can also focus on the search box with Alt+S keyboard shortcut.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
We developed a database for corporate file sharing. And there is one little problem:
Users choose the file (attachment in rich text field), right click on it and choose "Copy" option. Then they go to windows' explorer, right click at empty space, but the option "paste" is not available.
"My Lotus is broken", - they say...
Is this any way do grant users ability copy-paste attachment from Lotus to hard drive? Or they have to use "Save" option and there is no other way?
If you use the right click and "Copy" something within a Notes document, then it depends on the state, the document is in what happens. If the document is in read- mode then usually the document itself is copied into clipboard. Only Lotus Notes can do anything with this clipboard and other applications will not allow you to paste it.
If the document is in edit- mode, then the selected content will be copied into the clipboard. This can be the attachment, but again only for pasting in Lotus Notes. For other applications there will be only the attachment name in the clipboard.
The solution is simple: Just tell your users to NOT use "Copy", but "Save" or "Save all" from the same context menu. That's the way how Lotus Notes works...
If you need to have a "Copy" action there, then you could make your own context menu, and "mimic" what happens... But I would not do that.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am trying to design a Form in J2ME without the use of Canvas class which has List like structure and an image as a Header.
I want to add command button (OK) So by clicking on it ... i can choose a particular item in list and get navigated to next Screen.
Just create a ImageItem from that image. Take a form and add that image to the form. And to add list, if you are using netbeans ide, you can see various UI examples by doing this: File>New project>Category:Samples>UI Demo then click finish. And run the project. By observing the samples there you will have idea.
Just look at this link. It tells how to create table(list) kind of layout using Canvas. It looks like Table with Row & Column. You can download example from here.