In computer programming, a global variable is a variable that is accessible in every scope (unless shadowed). Interaction mechanisms with global variables are called global environment (see also global state) mechanisms. The global environment paradigm is contrasted with the local environment ...
0
votes
2answers
18 views
AS3 Global Variables
Ok so I have managed to do this once before but I simply cannot remember how or find the source I found back then. I am making a simple flash game. There are several characters moving. To make each ...
0
votes
3answers
37 views
Why this variable value returns to default value after exiting the function?
I want to move the knight in a chess program. For this reason,
I have these two variables(currentRow and currentColumn) defined on top of all functions including main. (I did this because I wanted ...
0
votes
0answers
35 views
xsl : Incrementing a global variable
I know the fact that variables in XSL are immutable. But in my scenario, I want to increment a global variable and use the value later. Is there any other way by which this can be done? I have added ...
0
votes
4answers
46 views
PHP How do I “global variable” in an array?
Global variable can't be read on my function. Anyone know what's wrong with my code below?
Please help me.
<?php
global $a = array(2,3,4);
global $b = array(3,5,6);
function test(){
$y ...
0
votes
2answers
51 views
Extract value from a list in another function in Python
I am programming a robot and I want to use an Xbox Controller using pygame. So far this is what I got (original code credits to Daniel J. Gonzalez):
"""
Gamepad Module
Daniel J. Gonzalez
...
3
votes
3answers
155 views
+50
why does $_GET not work in header-function?
I already have a question with this issue but a further question belonging $_GET and header-function:
I have a multidimensional language site. When calling a page that does not exist, .htaccess will ...
0
votes
0answers
15 views
Jenkins Ant Skript Variables
I am using Jenkins to start an ant script.
Some variables i define using the EnvInject Plugin.
I set them in the Properties Content field of the EnvInject Plugin and pass them afterwards to the ant ...
1
vote
2answers
32 views
Does the distance between a program's stack and data segment have an effect on CPU caching?
I've read that on linux, program memory layout can be broadly visualized as follows (and I assume it's similar on most other operating systems):
Now, I'm not sure if I remember correctly, but I ...
0
votes
4answers
27 views
saving textarea input's value in to js variable and make it visible everywhere
HTML:
<textarea id="edit-message"></textarea>
<button type="button" id="guest-button" class="form-submit">Send</button>
JS:
$('#guest-button').click(function() {
if ...
2
votes
3answers
67 views
Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can
Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
0
votes
1answer
50 views
strange behaviour for $_GET
I have a multidimensional language site. When calling a page that does not exist, .htaccess will refer to 404.php in the root direction.
The .htaccess looks like that:
ErrorDocument 404 /404.php
...
0
votes
2answers
56 views
How to convert $_GET into a variable?
I have a problem while using $_GET.
I have a URL that looks like http://www.example.com/404.php?uri=xyz. Now I would like to read out that $_GET['uri'] and convert it into a variable that will be ...
0
votes
2answers
21 views
mod_wsgi: Global statements execute only when the file is modified
I'm using python over mod_wsgi and I have some statements (debug messages and other things) in the global part of the script (outside the application function).
Those global statements are executed ...
2
votes
2answers
37 views
Undefined Reference to a global array while linking the library
I am having a main file which i am building with a shared library libhtml, libhtml is build using another shared library libctpe. I get no errors/warning when i build both libctpe and libhtml but when ...
0
votes
1answer
21 views
unable to use variables defined in class
Hi i am trying to import the configuration variables from a config file that i had created
Config.php has
class Config
{
public $SERVERNAME = '*******';
public $SUSERNAME = '*********';
...
1
vote
4answers
52 views
C implicit extern for global variable, when does it happen, how does it work
I'm trying to understand the ways in which a C global variable can be shared between multiple files (compilation units). I've read the excellent question and answer here. However after doing a few ...
0
votes
3answers
20 views
importing files in php using require() not working
i tried the following code to import two files
<?php echo "php";
require('../globalvasr.php') or die("error");
require('../newcosn.php') or die("error2");
$config = new ...
0
votes
1answer
27 views
global name 'self' is not defined in Tornado [closed]
I'm now reading a O'reilly's book "Introduction to Tornado" and the first example the author writes is as follows (hello.py):
import tornado.httpserver
import tornado.ioloop
import tornado.options
...
0
votes
1answer
39 views
JavaScript - Global variable showing as undefined
There are so many threads about this topic but I still haven't been able to find a suitable answer for my case...
Here is what I'm trying to do:
1) define a function to get geocodes with Google Maps ...
1
vote
2answers
37 views
How do you share a static constant global string between two separate applications in Qt?
I am writing a client and server as separate applications. There are some global strings that both should have access to in order to ensure proper communication between the two. What is the typical ...
0
votes
3answers
36 views
set variables to global scope within a loop
I want to define a number of temporary global variables in PHP called $MyGlobalVar1, $MyGlobalVar2 ... , but the problem is that the keyword 'global' takes the variable name literally:
for ($i = 1; ...
0
votes
2answers
114 views
Sharing a variable between controllers in angular.js
I'm new to angular and I'm wondering how I can share a variable between controllers in angular. I'm using the following scripts -
In Main.js:
function MainCntl($scope) {
---code
}
function ...
0
votes
1answer
37 views
best practice for common constant variables
I have a module with ~40 functions that all take user as a keyword argument.
user is not changed in any of these - it remains constant after being declared.
Is it unpythonic to declare user outside ...
0
votes
2answers
46 views
Python encryption function and global variables [duplicate]
Ok, so I am writing a python encryption code. The code was longer than it needed to be, so I switched part of it over to functions. As soon as I started doing this, it said that it could not find ...
-2
votes
0answers
24 views
matlab fuction - actual argument [closed]
In fortran, when call subroutine,the coding is as fllows.
Call subroutine name (actual argument list)
SUBROUTINE name(dummy argument list)
In matlab, how can I do that?
function name
global ...
-1
votes
1answer
25 views
How do I access a global variable from in a php function? [duplicate]
I looked at the stack over flow discussion Can't access global variable inside function.
It address this question. But I could not get the code to work. I ma trying to access $batch_fl_str ...
1
vote
6answers
41 views
c - using global variables in calculations
Even though this sounds very basic, my eyes have dried out looking for a solution.
I'm trying to do the following, where I assign my global variable to a local variable:
#define DECK_SIZE = 52
...
...
0
votes
1answer
45 views
How can a global variable produce an error on desctruction while local variable does not?
I have a class that I find difficult to debug. The curiosity is that when I use it as local variable it behaves well, but when I use it as global variable it gives an error on program's exit.
For ...
0
votes
1answer
23 views
Structring data flow in GAE without using globals
I am setting up an app in GAE. The app relies on up to three successive AJAX calls from the client that produces an individual string in each request. I would like to retain and combine the data on ...
0
votes
0answers
9 views
Inconsistency with sharing globals across modules
There's a much bigger and more complicated app behind this, but to keep it simple, the question can be boiled down to the examples below. (BTW, I've read the other threads about how bad it is to ...
2
votes
3answers
58 views
Recursive functions and global vs. local variables
I'm writing a recursive function in R, and I want it to modify a global variable such that I know how many instances of the function have been called. I don't understand why the following doesn't ...
0
votes
3answers
25 views
Maintaining a large web service data set when the Application is destroyed
In our application, we rely almost solely on data from our web service. On first launch, we start a LoginActivity where we handle logging in and retrieving this data before continuing onto the ...
0
votes
1answer
24 views
how can form a user in put with text field and without a button
i want to form a textfield in my view controller. After user make his input to this text field and press return or dismiss keyboard with touching to the screen, an action must be done. how can i ...
0
votes
3answers
33 views
define global params in android
want to define some global const parameters (arrs , int etc..) in one java file so the all activity can reach them and use them.
I tried to define them globaly in some activity and do import to this ...
0
votes
0answers
34 views
C# - Windows Form Application Global dataset
Purpose : Load the entire database first in DataSet and then work on it, i.e. Connection opened once only.
I wanted a DataSet visible in my entire project. I was unable to create a global DataSet.
...
0
votes
1answer
49 views
Can not access global variables inside a jQuery event handler
I am using the following code to track the scrolling and I want to put the selected element variables outside the event handler so they are not called each time the user scrolls thereby saving ...
0
votes
3answers
57 views
Proper declaration of global C-constants in Objective-C
I'm trying to declare and initialize global C-variables.
const int numberOfTickMarks = 6;
const double tickValues[numberOfTickMarks] = {500, 2000, 3000, 4000, 6000, 8000};
When I do this in my ...
0
votes
0answers
11 views
Replace Global Vars w
How would I go about not using Global Vars given that I have a start-up form and a second form that relies on data from the start-up?
The first form is like this:
Public Class formOne ...
0
votes
1answer
29 views
global variable not updated when using namespace in javascript d3.js
So Im building a set of functions to call inside a page. They all reside inside a file "seeingPlotFunc.js" and I call it and some of the functions inside the body of the html file. There are dome ...
0
votes
3answers
44 views
Why is use of an array defined in File1 working in File2 (only declared there),even without “extern”?
Here I have two files externdemo1.c and externdemo2.c.In the first file,I have declared and initialized a character array arr at file scope.But I have declared it in the second file externdemo2.c ...
2
votes
1answer
23 views
Is there a way to pass an aggregate sum total to a package level variable?
Ok, I'm fairly new to SSIS and am trying to convert a flat file from one system into a file that is importable into another system.
Part of this file conversion is the utilization of a header record. ...
0
votes
1answer
41 views
Global Array of Structs
I'm like braindead and can't think right now so someone please help me out.
defined struct
typedef struct student {
char name[MAX_NAME_LEN];
int num_courses;
int course_id[MAX_COURSES_PER_STUDENT];
...
-2
votes
2answers
31 views
Globals not dividing?
MAX=100
CURRENT=50
def divide():
global MAX
global CURRENT
print float((CURRENT/MAX))
divide()
Can someone tell me why this prints out 0.0?
-2
votes
1answer
35 views
How to use Global Variables in jQuery
How can i take global variables in jQuery.
this syntax is right that I'm using.
var $val = 2;
or
val = 2; (without using var keyword).
Thnx.
1
vote
1answer
37 views
Javascript - Why are global variables hidden throughout the (body of the) function?
I understand how it works (the disparities between local and global functions), but I don’t quite get the rationale behind hiding the global variables in a functions while a “local” variable is not ...
1
vote
1answer
27 views
i can't see more my global object created by Components.utils.import(“resource://gre/modules/myfile.jsm”) in firefox 17
I have used next code to create MyGlobalObject in my MultiWindows application in firefox 15- .
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
...
0
votes
1answer
21 views
Can't access global variables
In globaldata.h I am defining a typedef struct as GlobalData. In my main cpp program, I'm including globaldata.h, then declaring
GlobalData globalData;
After that declaration, I include ...
2
votes
1answer
33 views
PHP declaring global and session variables
I'm been using PHP5.3.8 for a while now and I've just come across a new error for me;
Warning: Unknown: Your script possibly relies on a session side-effect
which existed until PHP 4.2.3. Please ...
2
votes
4answers
47 views
Why's initializing a global variable with return value of a function failing at declaration,but works fine at file scope?
An 80k reputation contributor R.. told me on SO that we can't initialize global variables with the return value of a function as that's not considered a constant,and global variables must be ...
1
vote
2answers
59 views
Malloced global variable implementation (C)
I would like to make a linked list globally available across multiple .c files.
I've read how to do this but I can't identify what is causing my problem.
I declare the variable with extern in ...




