About 54,500,000 results
Open links in new tab
  1. How can I pass an argument to a PowerShell script?

    Does the Position=0 setting turn it into a positional parameter rather than a flag?

  2. sql - Passing multiple values for a single parameter in Reporting ...

    I have several Multi-Select parameters in my report. I am trying to find a way to pass in multiple values for a single parameter in the web query string? If I pass in a single value, it works fine....

  3. Using parameters in batch files at Windows command line

    Using parameters in batch files: %0 and %9 Batch files can refer to the words passed in as parameters with the tokens: %0 to %9. %0 is the program name as it was called. %1 is the first command line …

  4. What is the purpose of the `self` parameter? Why is it needed?

    For a language-agnostic consideration of the design decision, see What is the advantage of having this/self pointer mandatory explicit?. To close debugging questions where OP omitted a self …

  5. Get the values from the "GET" parameters (JavaScript)

    I had the need to read a URL GET variable and complete an action based on the url parameter. I searched high and low for a solution and came across this little piece of code.

  6. How are parameters sent in an HTTP POST request?

    "In an HTTP POST request, the parameters are not sent along with the URI." - though it can be (just theoretically), do not confuse other people. POST, in accordance to spec, MUST serve non …

  7. SSRS Multi Value Parameter. Check whether "Select All" is selected

    Feb 1, 2012 · I have a multi value parameter in my SSRS Report. I want to find out whether (Select All) is checked in that parameter. In other words, whether all the values in the parameter are checked or …

  8. How to pass a function as a parameter in Java? [duplicate]

    More answers on how to use a Lambda function, or pass it as a parameter: simple example parameter as a function java.

  9. C# Passing Function as Argument - Stack Overflow

    There are a couple generic types in .Net (v2 and later) that make passing functions around as delegates very easy. For functions with return types, there is Func<> and for functions without return types …

  10. Does Java support default parameter values? - Stack Overflow

    I believe parameter defaults are bad practice and overloading is a much cleaner solution. You can even hide the default constructor and use static factory methods to return initialized instances. This is also …