Save postgresql query in computer - postgresql

I have this problem that I assume privilege-related. I want to save my query after I executed it, but here is the problem...
Wherever the location, the save button can not be enabled. Any help appreciated.

You need to type the file name in the input box on the top where you have "F:\", append file name there.
For example:
F:\my_file.sql
Once you type that it will make save button enable.

Related

Show a specific text in another file in Swift

I would like to do the following: I have a file in which I can select a product. If the product has been selected (is it true) and the costs should be displayed on another page (with TabView). The problem is that I don't know how to access the variable in the other file.
I have already tried the following:
-if file.init(variable: true){…}
->Error
-if variable == true {…} ->Error
-Text(file.init(variable)
And the image will help you to understand me.
Link to the Images
I hope 🤞 you are the best in swift and can help me!!!

Changing a file to another with the same field names

I have a report built on a file but I want to change the file to another that has the exact same field names, but a different file name. They are both on the same data source.
Is there a way to do this?
Thanks
Go to
Database Lable --> Set Datasource Location--->
select current file and target file and click on update

Tag prefix Win CC

I am busy with a C script in Siemens WinCC.
I would like to open a faceplate on in which I can open other faceplates.
Howerver, I would like to use the Tagprefix from the first faceplate in the second. Does anybody have an idea how I can give the tag prefix through?
Thanks in advance!
Tom
As You know, the tag prefix is a property of the screen window. You need to provide that data to the script running in the context of the picture inside the picture window from the parent screen window.
One solution is by using a text field "tagname" in the "faceplate" and use that as a source of the tag-prefix name. The tag-prefix can be transferred by a simple vbs script that runs "on open".
Use VBS "Item.parent.TagPrefix" and then give the result to the text field.
Or just from a button in the picture "Item.parent.parent.TagPrefix" is also ok.
The same in C would use the functions "GetParentPictureWindow", and return a string(lpsz) containing the name of the picture window. This name can be used to read the property of the object with this name using "GetPropChar" using "Tagprefix" as the property.
//PerD

How to read from an already existing dropdown list and click on OK button using autohotkey?

ControlGet List,List,,DropDownList, Installer Language,English
Control,Choose,1,ComboBox,DropDown
This is the snippet which I am using to read from the dropdownlist and it is not working. Please tell me what is the right snippet to be use here.
Thanks
I'm not sure what you are trying here. This code is something similar to what you require...
Gui, Add, DDL, %chooseMonth% vMonthSelected,January||February|March|April|May|June|July|August|September|October|November|December
It allows you to select Month from the drop down list and stores the selected value in variable chooseMonth

Dynamically add fields to input dialog

Is it possible to somehow add input fields to an input dialog (inputdlg()) in MATLAB when a specific event occurs, e.g. the user types in a certain value in one of the existing fields...?
Or is there any other 'hacky' way to achieve this so that the user doesn't have to click "OK" and I have to code to reopen another input dialog which contains more input fields..
Thanks!
inputdlg is not a built in function, so you might as well copy it, call it by another name and change its functionality.