well, for me none of the above methods worked, but I had a workaround. I added the first parameter, as usual, using the data editor. My first parameter name: "username" is a string. I would like to add a second parameter: "password". To do this, I took the following steps:
- Open the datawindow window (double-click the datawindow object)
- Click the data source toolbar button
- Select Design / Convert to Syntax
- Click back and save the data window.
After that, open the data source:
- Right-click the datawindow object
- Change Source
- String search like: arguments = (("
- In my case, these were: arguments = (("username", string))
- Add the second argument this way (in my case): arguments = (("username", string), ("password", string))
So, you just need to copy the first argument after the decimal point. Of course, you must specify the name and type for the second argument, as in my example!
Br. Gabor
source share