0
votes
2answers
49 views
Can I use a the value of a variable as the name of property in c#?
How do all!
I want to be able to access a value in a class using the variable passed to a procedure.
e.g. _results.projection[2].Current.FundDC to become something like
…
0
votes
0answers
25 views
Passing variable from shell script to sql statement
I was trying to make cat1.txt as a variable ($2) so that it will be inserted in sql select statement. Is there a way to do this?
my cat1.txt
1111
2334
2234
3333
4444
....
....
etc.
my SQL …
1
vote
4answers
72 views
How to pass javascript variables to php
Hello,
I want to pass javascript variables to php using hidden input of a form.
But i have met a problem here, the $salarieid can't get the value from $_POST['hidden1']. Is there something wrong?
…
0
votes
1answer
35 views
Add variable to jQuery src attribute
I have a script that I reuse in lots of different places. The script has several image paths specified, and I want to make it easier to implement by setting one 'path' variable at the start then …
0
votes
1answer
47 views
How to see the values of a table variable at debug time in T-SQL?
Can we see the values (rows and cells) in a table valued variable in SQL Server Management Studio (SSMS) during debug time? If yes, how?
0
votes
5answers
61 views
How to convert a string value to a variable in javascript?
var test1;
$(document).ready(function () {
test1 = $("#test1ID").jQueryPlugin();
});
var test2;
$(document).ready(function () {
test2 = $("#test2ID").jQueryPlugin();
});
...
This is done …
0
votes
1answer
43 views
Java: Roller program - debug - variables not updating from JTextField and NumberFormatException thrown regardless of valid information.
Problems:
I am unable to get the values of the JTextFields or the rollResultTotal to update.
Even if the data in the JTextFields are valid, a NumberFormatException is still thrown.
Questions: Why …
2
votes
5answers
111 views
How can I edit a JavaScript variable?
Hi,
Say I have a variable
tab_something
I need to drop the tab_ bit.
In php it's easy, using str_replace...
Will
tabSelect = document.location.hash.substr(1,document.location.hash.length);
…
0
votes
6answers
210 views
global vector C++
Is it possible to have a vector as a global variable is C++?
Like this:
class system {...};
vector<system> systems;
when I try to compile this I get an error. The compiler I'm using is gcc …
1
vote
3answers
46 views
Store javascript variables in array
I am sure someone has gone over this but I have had no luck finding some results.
I want to know what is the fastest way to maintain a proper variable scope.
Here is some example jquery code I wrote …
0
votes
3answers
42 views
Clear all script-set variables easily (Javascript/jQuery).
I'm trying to find a simple way to reset all current variables in the DOM. My app has a 'locked' state, but currently, when locked, the last set of information is still visible in the DOM if you look …
2
votes
6answers
130 views
Removing duplicates on a variable without sorting.
I have a variable that contains the following space separated entries.
variable="apple lemon papaya avocado lemon grapes papaya apple avocado mango banana"
How do I remove the duplicates without …
0
votes
5answers
65 views
Input PHP Variable into HTML Select Tag
Hello:
I have a php variable ($list) that is a list of values separated by commas. I am trying to figure out how to convert or input this variable into a HTML select tag. Here is what I have so …
0
votes
1answer
39 views
jquery load a selector contained in a variable
Hello,
Can anyone help me with the right syntax to load some div, please
I try'd to concat it in several ways, except the right way
rcp= "#div02";
$("#content").load("/inc/forms.php " +rcp'"', …
0
votes
1answer
32 views
Defining PHP variables - PHP 101
I'm defining the following variables:
$rel_path = bloginfo('template_directory');
$thumb_directory = "$rel_path/images/portfolio/";
$orig_directory = "$rel_path/images/portfolio/thumbs";
the …
