5
votes
3answers
102 views
If you can’t change a variable’s value in Haskell, how do you create data structures?
As per the title.
I have the following code which creates a binary search tree, but if I want it created and changed dynamically with user input, how would I do that if I can't ch …
0
votes
3answers
23 views
How to use variable in target database name for insert statement?
I want to declare a server name and use this name in an insert statement. So far all i got is an error message.
declare @machine nvarchar(6);
declare @bar nvarchar(3);
set @machin …
0
votes
2answers
23 views
Setting Padding - why it says padding.all is not variable?
Hi,
I do not understand why there is Control.padding.all which is int and according to hint there is set as well as get but I cannot set it (Control.Padding.All=5)? I would be grat …
0
votes
2answers
48 views
Why is this Variable Disappearing?
This should probably have a simple answer I just can't figure out.
Anyway, I have a php document and inside of it I define <?php $pathprefix = '../'; ?>
Later in the docume …
2
votes
6answers
186 views
Declaring a variable in an if-else block in C++
I'm trying to declare a variable in an if-else block as follows:
int main(int argc, char *argv[]) {
if (argv[3] == string("simple")) {
Player & player = *get_Simp …
0
votes
1answer
43 views
NSMutableDictionary Being accessed from different classes, from RootController.m
Hello Everyone,
I have spent a few days on this and not sure what am missing, some light in this darkness really would be apprecaited!!
Background
I have a UItable being loaded …
1
vote
7answers
105 views
Java Instance Variables vs Local Variables
Hi,
I'm in my first programming class in high school. We're doing our end of the first semester project. This project only involves one class, but many methods. My question is bes …
1
vote
1answer
30 views
Javascript Objects: Dynamic variable names?
This is probably a no-brainer, but how can I make this happen:
var name = otherObject.name; //"string"
var o = {
name : otherObject
};
alert(o["string"].name) …
1
vote
6answers
62 views
Is it possible to create eventlisteners for string, int, bool at all?
Is it possible at all to create eventlisteners (i.e. when the value changes) for a variable of type string, int, bool, etc.?
I haven't seen this in any programming language so fa …
0
votes
2answers
44 views
PHP losing data for two variables
I have two scripts that I'm working on. The first receives $agentID via GET (as well as some other data via other GET variables), then looks up $firstName and $lastName in a datab …
3
votes
7answers
285 views
Why use public variables?
Variables, methods and classes can receive various security levels.
From my C# experience, there is:
public
internal
protected
protected internal
private
Now, I understand the us …
1
vote
1answer
72 views
PHP object has semicolon (or other strange character) in variable name
Hi,
I've got an object, which contains semicolons in the property names, when I var_dump, I get:
object(Sales) {
[thisisa:propertyname] => 'some value'
}
So, how do I …
0
votes
3answers
37 views
Assigning variables based on sting data
Hi Gang,
I have a inefficiently constructed form that is obviously sending one type of data per SELECT element. For simplicity's sake, here's an example.
The form posts data from …
0
votes
3answers
52 views
PL/SQL Query with Variables
I have a fairly complex query that will be referencing a single date as a start or stop date multiple times throughout. I'm going to have to run this query for 3 different fiscal y …
0
votes
5answers
130 views
Perl - Why does shift lose its value after being used?
This code works - It takes an array of full txt file paths and strips them so that when $exam_nums[$x] is called, it returns the file name
for (0..$#exam_nums)
{
$exam_nums[$_] = …
