I don't know why but google is taking hand on my typing, like an autocomplete or suggestions, in cells, in sub-menus parameters. I can't type properly anymore, it blocks my imputs, and I have to press escape on each cell I'm filling. How to get that off ?!?
Autocomplete document properties is off and i'm running windows 7 Pro. Thank you
Related
I am currently working with Google Script which accepts the user input and store in the other spreadsheet. This logic works ok but to facilitate this, I have created a form like provision on my worksheet and placed some images which look like buttons. When I (and other collaborators) open this spreadsheet, we often observe that images are not on their place as shown below,
Note: See above, buttons (images) 'Get Case Details' & 'Deletegate Tasks' are not on their original positions. Ideally, they should appear as below,
As a workaround, I just go to some other tab/worksheet and come back to mine which shows the image location correctly.
I checked this discussion on Google Doc forum but looks like a known issue, no answer yet.
Does anyone have any idea? Has anyone come across this problem?
Besides the discussion that you linked, there a lot of other similar reports over the years on the Google Docs Help Forum and other places on the web.
One alternative is to increase the whitespace around the buttons. Another alternative is to use another UI element like custom menus, a side panel or dialogs.
I am currently working on a project with a really easy task : When I press a button, the form I'm currently in is printed (like a print screen).
I use the method Self.Print; in the said button and everything works fine. My buttons, labels and TextBoxes all get printed. The problem is, I have a RichEdit in the form I'm trying to print and when the page come out of the printer, the RichEdit is blank.
I know there is much better ways to print informations from a form, but this is the current way that the button has to work.
I've found some forums with topics from 2003 that said it was either not possible or I had to use the RichEdit.Print method but this means having 2 pages coming out of the printer instead of one.
Is there a better way to print the whole package?
RichEdit1.Print(RichEdit1.Text);
PrintDialog1.Execute;//Choose your printer from list
I am using twitter typeahead for auto completing and its a great plug-in for auto-completion. However I had one issue using it.
It doesn't show the top suggestions at the beginning of a drop down as shown in image attached
Here the word started with magic, but the suggestion dropdown is showing "Altered Art Magic singles" as first suggestion. I know it has the word magic in it, but shouldn't it be listed at the last of suggestion as there are other words that started with "Magic"
How do I make the drop down to show those suggestions first, that begin with the letter typed and rest at the bottom.
In case of the image, I want to show "Altered Art Magic Singles" at the bottom of drop down list.
Thanks
It will show them in the order received from the server (assuming you're using remote: or prefetch:). Just sort them on the server. (Or if using local, sort them locally :)
Some time in the last year, a tool that I use no longer displays Google search results in one of its frames. I suspect that Google started using JavaScript code to hide itself, if it is being displayed in a frame, which is understandable for most uses.
However, this is a tool that only I use, so I'm not misrepresenting to anyone. I use this tool to research data. One frame has a form where I enter data that I find online. The other frame has the Google results and the pages they link to. I can see both the data form that I'm working on and the changing search/results side-by-side in one window.
I tried going to an older browser version, but I think they are using JavaScript.
Now I have to right-mouse click "open in a new tab" and then click to the new tab, and then close it, a lot of extra overhead when I'm trying to process this repetitive research over and over.
Any ideas? Confirmations as to what has changed? I suppose I could retrieve the page in PHP, strip out the part that hides the page and then put the page source in the other frame. A bit of a challenge for me.
I use Delphi 7 on Vista. So far, I have implemented a simple browser (using TWebBrowser) but I would like to automatically enter information when the web page asks for it. For example, I want to tell my app to go to Google, detect the Search field, enter a search phrase, and then click the Search button and then get the result.
Can someone shed some light on how this is done?
You need to use the DOM to do this. The best online resource for learning this in a Delphi setting is at Brian Cryer's site. Take a look at How to read and write form elements.
In the google instance you could simply call the search URL directly yourself.
Eg. This URL searches for 'jam'
http://www.google.ie/search?q=jam&ie=UTF-8&oe=UTF-8&hl=en&client=safari
Get your code to change jam for your search string and go to that URL. I hope this is what you are looking for.