Increase/Decrease a field in OpenOffice Calc - openoffice.org

I'm trying to count (and sum up) different (physical) items and input those counts in a spreadsheet. Is there a way to increase (or decrease) an integer in a field in OpenOffice Calc? Mouse or keyboard input.
Either a shortcut+macro combination or something along the lines of these (fictive) arrows:
i.e. pressing up would increase the field to value 43
In fact I would be happy for any suggestion for an open programme that would digitalize such input and produce some sort of csv or similar output.

Via View - Toolbars - Form Controls get the toolbar Form Controls visible.
There you have Spin Button control (see tooltips).
Insert this on the sheet by clicking it and pull the size of it with the mouse. Pull it longer than width.
Right click the control and select Control... from the context menu.
On the Data tab set the Linked cell to A3 for example.
Now switch the design mode to off by clicking the corresponding button at the toolbar Form Controls (see tooltips).

Related

Power Automate Desktop Fill Data from excel to website but multi UI ELEMENT

I am a newbie working on power automate desktop and sorry if my english is not good. Currently I am making a flow that will populate the website from my excel. Excel I will have a list of lists I want it to populate in order. But I am having a problem that when I finish filling in the first position, it will show the second position and go on to third , ..... The HTML Input ID also changes in ascending order. So when I do this Flow, it only executes at the top of all my list from excel. Is there a way that can automatically jump the column according to that line UI element. Thank you
enter image description here
Input text will increase like adGroupInfo.1.adcontent and then you fill that one it will show your second and i want to fill data from my excel to that it will be adgroupInfo.2.adcontent
enter image description here
It same all DIV, SPAN ,But different Input ID
enter image description here
enter image description here
For this you will make use of a variable.
Dummy data:
Navigate to the element in the element list.
The click on the 3 dots menu to see the options.
Select Edit
Then scroll down to the enabled selector, this will in most cases be the id of the element on the web page.
replace the value with the name of the variable that will hold the control id value
Then in your loop assign the value of the UI element to the variable you used as the identifier.
Line 7 (red 2)
This should then fill the boxes as required.

Google Sheet button updates increases button textbox value

I'm pretty good at VBA but transitioning to Google Sheet scripting is killing me:
I have a drawing shape, with a textbox named
(by the end product there will be 6 text boxes, with identical actions)
I want to have a script which makes it so when I click the text box, the value increases by one.
I also have a reset textbox, which says reset, and when clicked, will set all 6 other textbox values to zero.
In excel, I had the following: subs for each shape which increased the textframe + 1, and a reset sub, but none of that language works in Google.
Please help.
I have also used VBA. Google currently has no equivalent to textframe. It has been requested. There are a number of like things you can try. The link below has a few examples. The first sheet (menu) has a menu named testing. It has four options. On open they will show multiple options. There are three named Button1, Button2, and Button3. Each shows a count. The count is set to 0 on open. If Button1 is clicked, A1 will be 1 and the testing menu will change to Button1 count=1. Clicking Button2 will change A2 to one and the testing menu will now show Botton1 count=1, Button2 count=1, Button3 count=0. The menu option Clear counts sets all button counts back to 0. Actually, the menu is replaced each time. The buttons tab has buttons that increase cell counts in total or separately.The button text does not change. I hope this gives you some ideas.
https://docs.google.com/spreadsheets/d/1ysr90k38hir-Kz8HTRY-vw6e7KFGJJWnNwlt2azzopk/edit?usp=sharing

Coded UI Test Builder assertions cannot access to DOM

I'm tring to make come UI test using Coded UI. Unfortuanley, It seems to not have access to all DOM elements in browser.
I want to assert value of one text block in form, and by"Add Assertion" the lowest element i can assert is form itself. All tags contained by form was flatten and putted to "id" property in "Add Assertion" widnows, like in the screen below:
Is there a way to assert only one tag in form? In this case i want to assert value "Szczegóły przesyłki: 0--1526203258"
It depends on how your web page is designed. From the image shown it it not clear what field contains the Szczegóły przesyłki: 0--1526203258. However, given (1) the scroll bar and (2) that the Id field is shown and is empty, it is probably the Inner Text field.
Given the number of lines shown above and below the required text you are likely to have selected a larger than necessary part of the screen. When creating an assertion is it often best to move the cross hairs tool around the screen to find the smallest control that contains the required field. Such a UI Control will have no child controls.
I have found that occasionally the Coded UI cross hairs tool loses its place and leaves all four (UP, DOWN, LEFT and RIGHT) arrows grey and inactive, as shown in the screenshot. When this happens try clicking the refresh button located between Add Assertion and the arrows. Some of the arrows should then be shown as black and active. If the DOWN arrow is grey (inactive) and some of the other arrows are black then the properties panel shows a UI Control that has no child components. You should be able to find a UI Control that contains only the required text.

Set default text size/color for text boxes in Master Slide PowerPoint 2013

I'm working with a PowerPoint document which annoyingly sets all newly inserted text boxes' color to Red and uses Century Gothic. I believe this is due to the Master Slide being used by the document.
I would like to remove this automatic setting from text boxes in the Master Slide but I cannot figure out how?
I have gone into the Master Slide view and found that there are no text physical text boxes, there are however "Text Placeholders" but no text boxes. I find it strange and wonder:
how are these newly inserted text boxes contain pre-set font type and color?
If you aren't trying to do this in code, StackOverflow isn't really the right place for the question; you want SuperUser for "How do I ..." questions that don't involve code.
But what you want to do is select a text box that's formatted the way you want default text to be, then right click it and choose Set As Default Text Box. You won't get that option if you've clicked WITHIN the text box and have an insertion cursor; in that case press ESC, then rightclick.
If you're trying to do this in code, select a text box formatted to taste then do something like this:
Sub SetMeAsDefault()
Dim oSh As Shape
Set oSh = ActiveWindow.Selection.ShapeRange(1)
With oSh
.SetShapesDefaultProperties
End With
End Sub
The shape and text box defaults are independent of master formatting, which controls only the formatting of placeholders and text within placeholders. Text/shapes inserted via the Insert ribbon/menu follow the defaults set for the presentation as I've described above. Each presentation (and template) can have its own set of defaults.

How to a TFilterComboBox (drop down box) larger?

By default, when I click a Delphi TFilterComboBox it will display only 8 items. To access the rest of them, the user has to scroll down which is such a wast of time. Can I make it display more items (or even all of them)?
I have found an answer that says: "If you click the combobox in the resource template editor, you can drag its "opened" frame size to fit more items".
But I don't know what is this "resource template editor".
Normally one would like to use its DropDownCount property to set the maximum number of items visible in the dropdown window. But that seems to be hidden here (i.e. it is protected). I guess one can send it a message directly:
SendMessage(FilterComboBox1.Handle, CB_SETMINVISIBLE,
WPARAM(YourDropDownCount), 0);

Resources