0
votes
2answers
46 views
Pass a multidimensional array as a parameter in Delphi
I'd like to pass a multi-dimensional array to a constructor like so:
constructor TMyClass.Create(MyParameter: array of array of Integer);
begin
LocalField := MyParameter;
end;
…
2
votes
1answer
39 views
Passing an enum value as a stored procedure (data function) parameter in LINQ to SQL
As mentioned in this question, "LINQ to SQL allows table mappings to automatically convert back and forth to Enums by specifying the type for the column - this works for strings or …
1
vote
4answers
386 views
Stored proc Output parameter + Select not passing back output parameter
Hi
I have a stored procedure that returns two recordsets which i call using GetReader. I iterate the first, call IDataReader.NextResult(), then iterate the second.
I assign value …
1
vote
5answers
62 views
How to name a method that has an out parameter?
Hi,
What is the common preference to name a method that has an out parameter inside?
Usually I use Get as a prefix to mention that the method returns a value (like GetMyBusiness) …
0
votes
0answers
3 views
Parameter is incorrect proxy problem when using bazaar
I've been trying to configure bazaar so that it will be able to pass through our proxy.
I've set the http proxy and https proxy environment variables but the proxy gives the foll …
1
vote
1answer
21 views
SubSonic - calling sproc’s w/o parameters?
I noticed something with SubSonic 2.x that I'm sure others have run into...
Calling a sproc with results = SPs.SpGetCountryList().GetDataSet(); I kept getting a Null reference exc …
0
votes
5answers
75 views
How to create program startup parameters in python
I'm just beginning to learn python and the program I'm writing requires parameters for it to run with a specific task. For example (programs name is Samtho)
samtho -i Mozilla_Fire …
2
votes
4answers
137 views
Switch Statement with Strings C#
I need to write something that will get the start-up arguments and then do something for those start-up args, and I was thinking that switch would be good but it only accepts for i …
1
vote
3answers
178 views
Invalid parameter error with TClientdataset
What is the reason for getting an 'invalid parameter error' when calling the CreateDataSet method in a TClientDataSet component. What causes this error.
Kind Regards
Riaan de Vil …
0
votes
3answers
475 views
Crystal Report subreport loses linked parameter on production server.
I have created a crystal report called 'Order Details'. I used visual studio 2005 (crystal ver 10).
The order details report uses a stored procedure to populate itself.
It contai …
1
vote
2answers
65 views
RDLC, Dynamic Picture based on parameter, c#
Is it possible to add a dynamic picture to a paramter in rdlc?
for example:
=SWITCH(Parameters!picture.Value="1","picture1.jpg",
Parameters!picture.Value="2","picture2.png …
0
votes
4answers
104 views
c++ array access through pointer
A simple question about accessing array information through pointers that I can't seem to figure out. I'm passing a bunch of multi-dimentional arrays into a function. Now they are …
0
votes
1answer
29 views
Passing url as parameter to web service method
Hi
I'm writing a web service which expects one of the parameters (called "hlink") to be a url. Before calling the web service I URLEncode the parameter in question ("hlink"). I t …
0
votes
9answers
159 views
C# Reference parameter passing
hi, i have a piece of code that isn't working, i'd appreciate any help you guys can provide me
the code below is generating an exception ... but i'd think it shouldn't, unless i'm …
1
vote
3answers
109 views
c++: ifstream open problem with passing a string for text file name
hi guys, i'm trying to pass a string from main to another function. this string is a name of text file that needs to be oepened. as far as i can see, i am passing the string alrigh …
