Top "Parameters" questions

Parameters are a type of variable used in a subroutine to refer to the data provided as input to the subroutine.

How do you run a .exe with parameters using vba's shell()?

I have a target file path that is structured like example below. C:\Program Files\Test\foobar.exe /G What …

excel vba shell parameters command-line-arguments
In Swift how to call method with parameters on GCD main thread?

In my app I have a function that makes an NSRURLSession and sends out an NSURLRequest using sesh.dataTaskWithRequest(req, …

parameters swift grand-central-dispatch
How can I read command line parameters from an R script?

I've got a R script for which I'd like to be able to supply several command-line parameters (rather than hardcode …

command-line r parameters
Append values to query string

I have set of URL's similar to the ones below in a list http://somesite.com/backup/lol.php?id=1&…

c# parameters query-string
Perform Segue programmatically and pass parameters to the destination view

in my app I've a button that performs a segue programmatically: - (void)myButtonMethod { //execute segue programmatically [self performSegueWithIdentifier: @"MySegue" …

ios view parameters storyboard segue
Script parameters in Bash

I'm trying to make a shell script which should be used like this: ocrscript.sh -from /home/kristoffer/test.png …

linux bash shell parameters
PHP - include a php file and also send query parameters

I have to show a page from my php script based on certain conditions. I have an if condition and …

php parameters include
Are parameters in strings.xml possible?

In my Android app I'am going to implement my strings with internationalization. I have a problem with the grammar and …

android dynamic parameters string optional
Escaping Double Quotes in Batch Script

How would I go about replacing all of the double quotes in my batch file's parameters with escaped double quotes? …

scripting parameters batch-file escaping quotes
Java generics: multiple generic parameters?

I was wondering if it's possible to write a function that accepts multiple generic types as follows: public int void …

java generics parameters