0
votes
2answers
22 views
Pass bash script parameters to sub-process unchanged
I want to write a simple bash script that will act as a wrapper for an executable. How do I pass all the parameters that script receives to the executable? I tried
/the/exe $@
b …
0
votes
6answers
90 views
Why is my Variable set to 0?
import java.lang.Math;
public class NewtonIteration {
public static void main(String[] args) {
System.out.print(rootNofX(2,9));
}
// computes x^n
public stat …
0
votes
5answers
82 views
Determine if string from argv[1] starts with a character or number (C-programming)
I'm writing a small application in C that takes two parameters. One is a filename, the other a number, and they may be specified in random order.
./main filename 12345
and
…
0
votes
3answers
45 views
Returning Output Param from SQL Connection
Is this possible or the right way to go about this (if you're not using a stored proc):
conn.CommandText = "set @TotalPts = select SUM (pts) from cars where completedDate is not n …
1
vote
2answers
27 views
Silverlight passing parameters between pages using HyperlinkButton
Hi,
I have a page that displays a list of users. each user has an ID and a HyperlinkButton to watch more details about the user.
When pressing the HyperlinkButton, I would like t …
1
vote
4answers
85 views
C++ positional parameters
Hi.
This is a very basic question, so please bear with me.
Consider the following function in C++:
void foo(int a, int b, int c)
{
//do something
}
can I call this funtion …
2
votes
2answers
63 views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User …
0
votes
2answers
94 views
Parameters cause sql query to time out.
I have a long SQL query, it does some inserts, updates, then deletes. Each query uses the same 2 parameters. If I pass them in as SQL parameters from C#, it times out, after 20 min …
1
vote
4answers
40 views
jQuery POST and GET methods: Construct URL or use data param?
I am using the post and get methods for Ajax calls, and have a general question. There are two methods I've seen people use on the web:
Construct the URL and parameters by
hand …
5
votes
4answers
122 views
Difference between arguments/parameters in C#
What is the difference between an argument & a parameter in C#?
Are they the same thing?
3
votes
3answers
89 views
Java: varargs and the ‘…’ argument
Hello,
Consider the method declaration:
String.format(String, Object ...)
The Object ... argument is just a reference to an array of Objects. Is there a way to use this method …
0
votes
1answer
23 views
APPLET tag missing CODE parameter - not really?
Hello all,
I am trying to implement this demo on my local machine. http://bit.ly/4g4o1r
I have placed these 3 files in a folder:
LittleShootApplet.class
appletLoader.js
filepath …
0
votes
0answers
24 views
How do you force linq to sql to use the correct data type for sql parameters?
I have a situation where a certain linq query that runs against a multi-million row table is taking far to long to run. I dissected the linq query output and found that it was crea …
1
vote
2answers
27 views
How to configure defaults for a parameter with multiple values for a Maven plugin
I'm writing a Maven plugin and I am using default values for all parameters such as this:
/**
* The file with the site structure.
*
* @parameter expression="${generateSite.sit …
0
votes
0answers
46 views
passing url parameters to iframe, using jquery or javascript
After searching a lot over the internet I finally decided to post this question.
I am using THICKBOX jquery tabs.When any of the tab is clicked I want to pass the URL.IDNUMBER to …
