Tagged Questions
2
votes
3answers
53 views
What's the difference between data stored in global variables and data stored in the heap?
int globalInt = 1;
int main(){
int* heapInt = new int(1);
}
What is the difference between globalInt and heapInt? I know that what heapInt points to is in the heap, and I know that globalInt ...
0
votes
2answers
58 views
Updating a global variable in C#
I have a variable that I am gong to access from this bit of code. The variable is: balance
This is a snippet of the code from Form3:
public static int balance = 0;
private void ...
0
votes
1answer
42 views
Compilers and local/global variable
How does a compiler differentiate between local and global variables when
converting the code to instruction sequences?
And secondly am i right in thinking the constants are stored with the
...
-1
votes
2answers
45 views
Perl - Global variables available in all included scripts and modules?
So lets say I have a main.pl script and in that script I need to declare some variables (any kind of variable constant or normal) and those variables need to be available through all scripts and ...
0
votes
1answer
14 views
Declare Global Variable inside a Button1_Click
I tried to google this abit but I could'nt find anything useful. So I in my form1_load I have this variable
Dim Myvariable As String
then in a button click I want
Myvariable = "Hello"
Problem is ...
0
votes
1answer
34 views
Change variable inside function foreach loop
I've a problem that i can't solve. I think it's an easy fix, but after 3 hours of searching and trail-error. I've decided to ask the question over here:
This is my time function for a schedule ...
0
votes
1answer
25 views
Save Global variable or a php like session
I'm working on my app but i need some help.
I need a 'php-like session' in Objective C (without using connection to the internet)
I've thought about global vars, but my app seems to reset them when ...
0
votes
1answer
31 views
restart app when global static variables are killed android
I have many global final constants in my application. I populate these constants from a json file during application startup. As recommended by many people, I am using the application class to keep ...
0
votes
1answer
42 views
Can I use e.parameter in conjunction with a global variable to retrieve an external variable in Google Apps Scripts?
I realize the question is confusing. I'm trying to reference many widgets that were created in the main loop of my script from a secondary function using e.parameter.
Instead of referencing each ...
0
votes
3answers
64 views
javascript global variable (with html template)
How can I create a global variable in javascript?
I need to use an index value (it's incrementation value) on a field's id inside a "for", but the index keeps the "0" value on every loop.
It's on a ...
1
vote
2answers
63 views
Python class instances stored in a list to store seperate instances
from datetime import datetime
class sms_store:
def __init__(self):
self.store = [] #Keeps resetting / not saving data from previous instances
self.message_count = 0 #Keeps ...
0
votes
1answer
18 views
jinja2 gloable set doesnt work
I am writing a template of jinja. In the html file, I wrote:
{% set tmpx, tmpy = 0 %}
{% for greeting in greetings %}
{% if greeting.author %}
{% tmpx = greeting.data_x %}
{% ...
0
votes
4answers
62 views
php global variable not showing correct answer
Its very simple code but i don't understand whats the point :(
function aaa($b){
$a = 30;
global $a,$c;
return $c=($b+$a);}
echo aaa(40); //Output is 40
Why the output is 40 ? When i call the $a ...
0
votes
2answers
53 views
Changing global variables within a function
I'm new to programming, and I'm looking for some advice on what to do. The program I'm trying to write will need several numbers from the user.
I want to use a function to test if the user input a ...
1
vote
2answers
54 views
JavaScript/jQuery one variable used in two functions best solution ? Example
I'm somehow confused. What is the best way to use one variable as global in jQuery - just to use it two click function ? Here is the code :
http://jsfiddle.net/DyqdA/
HTML :
<div id = ...
0
votes
1answer
46 views
Global from User defined GUI
So I think my problem is my understanding of Global Variables and subroutines. Plus the Lists at the start
Heres my code:
https://gist.github.com/anonymous/ff1b16aa4093a2929896
If I place it into ...
-1
votes
1answer
62 views
Kohana Controller actions share variable [closed]
I want write one variable to access any action into same controller. I write one shared or global variable.
I using, Kohana 3.1.
It's possible !? I don't find any example or people with same ...
-2
votes
1answer
245 views
Javascript - Global variable returns undefined after function call
I am calling a function that sets a global variable to a city name that is selected from a map by the user. I have checked and the city name is passing properly and defining the global variable. The ...
1
vote
2answers
74 views
in jaydata: pass variables to filter, only global works
im going crazy here.
i have this function:
function db_borrarServer(idABorrar){
serversDB.servidores
.filter(function(elementoEncontrado) {
return elementoEncontrado.id_local ...
0
votes
1answer
44 views
global variable not working inside anonymous function
var count = 0;
for ( var i = 0; i < 4; i++ ) {
setTimeout(function(){
assert( i == count++, "Check the value of i." );
}, i * 200);
}
Why doesnt this work(i comes equal to 4 rather ...
0
votes
1answer
107 views
Creating global variable in python 3 from functions
I was wondering why I can't access the variable: "variable_for_raw_data" after the function ends. The code is like this:
def htmlfrom(Website_URL):
import urllib.request
response = ...
1
vote
2answers
90 views
JavaScript - Global Variable not Changing
I am trying to store a file list in a global variable, so that individual files can be accessed by links. I have this HTML code:
<input type="file" id="input" multiple ...
0
votes
0answers
87 views
PHP - Passing object variable to function by global [closed]
I have unusual problem with passing my object to function.
I'm using this same method in two different places and in first place everything works good but in second unfortunatelly doesn't.
Here's ...
0
votes
2answers
96 views
Global values inside template function not changing [c++]
I need help with a project. Basically I need to measure the clock ticks for some sorting algorithms. Since they all use comparison and sometimes, swapping functions, I designed them to accept these as ...
0
votes
2answers
57 views
to Global Variables inside functions
I have problem to Global Variables inside functions
<?php
function main(){
$var = "My Variable";
function sub() {
GLOBAL $var;
echo $var; // Will show ...
0
votes
1answer
69 views
General Android Advice: Global Variables
I was wondering what is the best way to handle global variables for android apps. For example, I'm just trying to create a basic login/register system. I've created a user class (that has various ...
0
votes
0answers
63 views
Javascript Variable empty (how is this possible?)!
I have three functions. The second function shown below named draw() defines a local variable named canvasData in which the base64 code from canvas is stored. The third function I have is named ...
1
vote
3answers
67 views
Global variable hidden in actionperformed
I am including a snipped of my code. The variable fnh was declared with class scope ( right after the class definition ). Yet, I can´t et it to print with the last statement. It does print the value ...
1
vote
2answers
110 views
Assigning a value to a PHP global variable to alert
I am working on a very basic random name generator. The generator works great, and is called by an HTML form submit button. Now, in the case that a user wanted to save the name, I will have a second ...
-3
votes
5answers
96 views
using variable throughout Java class
This is probably a really simple answer but I'm not even sure what to search to find it so thought I best ask.
I don't really understand how to create a variable (specifically an array) that I can ...
0
votes
1answer
82 views
JavaScript prototype extending
I'm trying to extend an Abstract object.
var Abstract = function() { code = 'Abstract'; };
Abstract.prototype.getCode = function() { return code; };
Abstract.prototype.getC = function() { return c; ...
0
votes
3answers
92 views
Cakephp - one variable accessible in view and controller
I want to define array which i can use in appcontroller and default layout.
How to do it in cakephp?
0
votes
1answer
162 views
How to pass the value of an innerHTML element to a global variable?
New to Javascript/HTML5, apologies if the terminologies don't make sense
How do you set a global variable to have the same value (preferably int or double) as an innerHTML element from one function, ...
0
votes
2answers
69 views
Use global variable declared in header by more C++ files
I am trying to create a dynamic library from various .cpp files sharing the same .h. It's something like this:
// mylib1.cpp
namespace mylib {
namespace part1 {
void init() {
...
3
votes
4answers
73 views
python dictionary passed as an input to a function acts like a global in that function rather than a local
I am very confused by the behaviour below. Cases 1, 3, and 4 perform as I would expect, but case 2 does not. Why does case 2 allow the function to change the value of the dictionary entry globally, ...
0
votes
6answers
65 views
Why is this global variable not recognised in javascript function?
Despite excessive googling I just don't get why my function doSomething does nothing in the situation below. Any idea why it doesn't work?
Many thanks, Gordon
var arrAttend=new object();
...
0
votes
1answer
80 views
GLOBAL variable in PHP class
I would like to use a simple variable that makes a role in the class... however, this is not working.
$GLOBALS['world'] = "Isara";
class Character{
var $name;
var $status;
static ...
0
votes
4answers
464 views
Passing in and setting global int through main
I've been trying to create a tester for my Stack ADT, by dynamically passing in the amount of items to add to the stack. However, when I try passing in an integer, for instance, 22, it assigns the ...
0
votes
3answers
54 views
PHP Variables Access
Ok this may be a simple/noobish question but can't figure out...
I have a class, wich i include in another php script.
So, i call for example $user->login, but if i want to create a function and ...
0
votes
2answers
102 views
Global Variable Not Assigning between Functions
I am writing an extension for Google Chrome in HTML/Javascript. I am trying to use a global variable to pass information between two functions, however even if I assign my variable in one function it ...
0
votes
1answer
4k views
Excel VBA - Assign value from UserForm ComboBox to Global Variable
I have a userform with a basic combobox and command button. When the user hits the command button, I want the UserForm to close, and the value of the combobox to be saved in a variable that can be ...
0
votes
0answers
18 views
Are there any real world cases where global variables are required?
I have been thinking about this for a while so I though this might be a good forum to inquire about this.
Are there any real world examples where global variables are really needed?
I do understand ...
0
votes
4answers
203 views
Difference between local and global variables in python [duplicate]
Possible Duplicate:
Python passing list as argument
I looked for many topics about that, but I can't understand what happen really.
I have this code:
def altera(L1, L2):
for elemento ...
0
votes
1answer
219 views
How to use Application class to share variables while extending Activity class
Im having problem sharing a global variable that I need to retain across multiple activities. This variable is created in TextPlay class and copied onto DailyDataEntry class. I have done some research ...
0
votes
2answers
122 views
PHP , sharing a variable valuable across external javascript files
http://www.shedlimited.debrucellc.com
The site allows users to upload an image, via PHP script(ajaxupload.php) which is stored in $uploaded_img , inside of the php script. I want to pass the PATH of ...
-2
votes
3answers
91 views
Javascript variables between files [closed]
Ok, so I have two files , index.html and functions.js (index.html correctly includes functions.js).
When clicking a button in the webpage, a function gets called in the functions file, which updates ...
0
votes
0answers
40 views
Why is a python dictionary element changeable inside a function when a variable is not? [duplicate]
Possible Duplicate:
Why is not the keyword global not required in this case?
I have a sample Python dictionary containing information about currently connected users:
mydict = ...
1
vote
2answers
234 views
Static global variables in C++
I would like to make an array of integers via the malloc method. I want this array to be global and be used anywhere in my program. I put code in a header file that looked like this:
static int ...
-1
votes
1answer
57 views
How to use Dynamics variables in layout properties?
Hi i'm a new developer in Android
and i want to create global variable to put them in my Layout like that:
in Java:final dimen myglobalValue = screenSize.width;
final dimen myglobalValue2 = ...
0
votes
1answer
85 views
Passing value from one subreport to another
I have an report with two sub reports. The first sub report has a total that I need use for the second sub report. Is there a way for the sub report to set the parent report parameter or variable or ...






