0
votes
1answer
73 views
PHP: string parameter to __construct not passed correctly.
Hi!
I'm trying my hand at TDD with PHP and am writing a webbased app to access articles in a MySQL database; this is the test function:
class TestArticleTestCase extends UnitTest …
0
votes
3answers
85 views
How to send multiple arguments to jquery click function?
Currently I'm using something like:
$('.myclass').click(function(){
var msg = $(this).attr('id');
alert(msg)
});
And HTML:
< a href="#" class="myclass" id="101"& …
2
votes
4answers
186 views
In common-lisp, how do I modify part of a list parameter from within a function without changing the original list?
I'm trying to pass a list to a function in Lisp, and change the contents of that list within the function without affecting the original list. I've read that Lisp is pass-by-value, …
0
votes
3answers
200 views
MSAccess 2003 - VBA for passing a value from one form to another
So how can I pass a value from one form to another? For example: The user select's an organization from a list and this opens up a trip form that allows a user to enter various inf …
0
votes
2answers
105 views
NSIS get caller file path
I have an altered Java Launcher exe file written in NSIS that launches a JAR file (http://nsis.sourceforge.net/A%5Fslightly%5Fbetter%5FJava%5FLauncher). I want to pass into the JAR …
1
vote
2answers
130 views
How can I get a variable into Silverlight 3 control from my ASP.NET code?
I'm playing with Silverlight 3 at the mo. I'm trying to get the current user ID into the Silverlight 3 page. I've done a bit of research and initParams seems to be the right way …
0
votes
5answers
163 views
C Variable Scope Specific Question
Here is a particular scenario that I have been unclear about (in terms of scope) for a long time.
consider the code
#include <stdio.h>
typedef struct _t_t{
int x;
int y …
0
votes
4answers
430 views
Assembly Function to C Program without Parameter Passing or Return Value
I need to create an assembly function that adds two positive numbers together, called by a C program.
The C program would look like this:
#include <stdio.h>
int main(void) …
0
votes
0answers
46 views
Pass Value from Parent to child
i have create one MDIParent Form
this mdiform exist following items
button1, Button2
if we are click on button form 1 will be displaying
that form1 form contain btNext Button
if …
1
vote
4answers
195 views
how to pass parameters to a function in a .net dll via COM/VB6?
hi guys,
i have a .net dll written in c# which reads data off a data source and acts as a wrapper to allow other apps to call its function to retrieve those data. the thing is i d …
0
votes
6answers
60 views
PHP Variable Passing not working in database call.
This works.
function get_distinct_size_for_bracelets() {
$sql = "SELECT DISTINCT size FROM mytable WHERE id = 27 AND type='plastic' ORDER BY size";
}
This does not work and …
1
vote
2answers
135 views
How do i set an optional parameter in PHP after the first optional parameter
Hi
I'm fairly new to php and I am trying to figure how do I set an optional parameter after the first optional parameter?
For example I have the following code:
function testPar …
0
votes
0answers
47 views
experiencing lag in variable passing between popup and opener
Hey all,
I am getting some strange (at least to me!) behaviour from the javascript in a web application I am developing.
There is a popup window with a form. Upon validation and …
1
vote
4answers
105 views
Passing Files as Parameters
Hello. I have created an example to introduce my question.
public class Algorithm
{
// This is the best, but circumstances prevent me from doing this.
/*public static voi …
0
votes
2answers
351 views
How can I pass MemoryStream data to unmanaged C++ DLL using P/Invoke
I need your help with the following scenario:
I am reading some data from hardware into a MemoryStream (C#) and I need to pass this data in memory to a dll implemented in unmanage …
