The global tag has no wiki summary.
0
votes
0answers
14 views
Numpad Enter as Global Hotkey
I want to use Numpad Enter key as Global Hotkey, I have tried JNA(Java Native Hook) and jIntelljType but not able to achive this.
Has anyone tried this or have any clue about it.
thanks & regards
...
2
votes
3answers
52 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 ...
2
votes
1answer
33 views
php functions playing games
I'm curious as to why variables aren't echoing using a function... (If that makes sense lol..)
function name(){
echo "$info->fullname";
}
When i then use
<?php name(); ?>
anywhere on ...
0
votes
1answer
24 views
Android: Maintaining Global Application State
Android documentation for Application states:
There is normally no need to subclass Application. In most situations, static singletons can provide the same functionality [i.e. maintain global ...
0
votes
1answer
20 views
How do I replace global RegExp matches in JavaScript
In an attempt at simple substitution, I tried something like this:
var dict =
{
...
};
var selector = ("'$greetings' '$friend'").replace(/\$([^']+)/g, dict[RegExp.$1])
But only one of the ...
0
votes
1answer
35 views
Defining a function pointer of an unspecified namespace
I'm making a simple developer console for a game I'm working on with a friend of mine. I'm working on binding functions to the console, so I have an std::map containing a string to hold the name ...
0
votes
0answers
15 views
Magento 1.7: Where to place to a global filter on product collection?
In my case I want to add a global filter, affecting all product collections. At the moment I filter inside a rewritten 'Mage_Catalog_Block_Product_List' (getCollection) resulting in different outputs ...
0
votes
1answer
17 views
global constants in a separate file other than settings.py in django?
I expect to define a lot of constants in a project.
I don't want to pollute settings.py with them.
(as mentioned Defining Constants in Django)
Where/How do you define global constants in django other ...
1
vote
1answer
52 views
Not being able to access global array from in php
i am having the following situation in a wordpress theme which I want to modify in a file called navigation.php
$array_test = array (1,2,3,4);
function func1()
{
global $array_test;
echo ...
2
votes
4answers
60 views
Java “global” object
I'm writing a game in Java. Is it bad practice to have a thing like
public class Constants
{
public static Mouse mouse;
public static Keyboard keyboard;
}
(Mouse and Keyboard are objects ...
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
33 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
0answers
39 views
Python access global instance of connection
I'm using a Velleman K8055 USB experiment board, which has a python module that I'm importing.
For the K8055 to function properly I have to create an instance of the class within the K8055 module, ...
-2
votes
3answers
39 views
how to get all global variable [closed]
instead of using $_POST['var'] I would like to get all globals by their name.
Also for example I have <input type='text' name='surname'> When I submit the form I would like to use ...
1
vote
2answers
49 views
Backbone and Requirejs. How to access to my bacbone router from everywhere
I am working on my firste projetc using requirejs. I have a router and a view and I would like to have access to my Router.navigate() method from the view when an item is clicked. I using ...
0
votes
0answers
16 views
Project Android with Custom Library + Global var
I am creating a book and I'm interested in globalizing variables (objects).
In one project I can do with Singletone:
But if I use it in my library and give it a value, if in my project I consult the ...
0
votes
1answer
22 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
0answers
23 views
Using same menu items on all MDI Child Forms
i'm creating a project which contains a parent form with few controls on it to manage child forms. I was trying to create a save button which will function on all child forms. I mean this button will ...
0
votes
1answer
30 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 ...
1
vote
3answers
43 views
How to import a module of functions and pass variables between modules
A file 'Definitions.py' contains the code:
def testing(a,b):
global result
for count in range(a,b):
result.append(0)
print result
While file 'Program.py' contains the code:
...
2
votes
3answers
73 views
How to affect all objects of a class? (Java)
I was a bit unsure about how to formulate this question. It is about object oriented thinking, in my case in Java, but it's more about the general concepts.
To practice arrays and inheritance and ...
0
votes
2answers
36 views
C: Globally define multidimensional char array
What I have to do is: Read x strings s_1 ... s_x of defined max. length l=1000000 and store them. The variable x is given as an input and the representation should be globally defined.
How I want to ...
0
votes
2answers
96 views
Python import as global name not defined
I have an application that runs on Postgres & Mysql. Each program checks to determine the database and then imports either postgres_db as db_util or mysql_dt as db_util. All works well when code ...
0
votes
0answers
68 views
gprof global constructors keyed to static member
This is the same question asked in
g++ gprof global constructors keyed to static member
My apologies for being a repetitive newbie
But I identified the issue there as being the same as mine but it ...
0
votes
0answers
26 views
Can't create an object from one .py file in another .py file in the same directory
In one file I create a class called Player, but when I try to create an object of that class in another file I'm told that global name "Player" is not defined. Why would this be?
Edit: At the top of ...
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 ...
1
vote
1answer
215 views
Understanding dispatch_async
I have question around this code
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSData* data = [NSData dataWithContentsOfURL:
kLatestKivaLoansURL];
...
2
votes
1answer
25 views
Configurable keyboard shortcut without using content scripts
Chrome Extension: I am looking for a way to assign global keyboard shortcuts that can be invoked even when the current tab has no content (and hence no content script). Some examples of such tabs: ...
1
vote
3answers
62 views
Can you extern a #define variable in another file?
For example abc.c contains a variable
#define NAME "supreeth"
Can extern the variable NAME in def.c?
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
74 views
How to use Global Property name in my JSON input request using SoapUI?
I have a SoapUI project which contains around 60 plus services. Each service requires some input which will be changed for every execution. So I have created certain Global Properties and assign some ...
1
vote
2answers
62 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
27 views
include php file using a function
Inside index.php I need to include files using a php method from inside a class.
I'm calling the method, several times, on index.php and that method is doing include_once or require_once. The ...
0
votes
0answers
16 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 %}
{% ...
-1
votes
0answers
32 views
creating Teradata Stored Procedure with Global Temporary table [closed]
Teradata is not allowing me to compile the stored procedure when Create global temporary table statement exists. Can any one help me how to proceed with this.
0
votes
2answers
64 views
How to have access to global struct from another .cpp file? [duplicate]
in Surface.h I have:
struct Surface{
bool isAllowedOnTile[TILETYPE_COUNT];
float moveBecomes; // When this is 0, it is ignored
float moveChange; // Is ignored if moveBecomes is ...
0
votes
0answers
30 views
Windows keyhook freezing
When ever i run this program my computer seems to freeze up and is unable to do anything. I think this is because i am for some reason always calling the keyboard helper function? could it be ...
3
votes
2answers
57 views
Python += versus .extend() inside a function on a global variable
I've read a few other SO (PythonScope and globals don't need global) but nothing seems to explain as explicitly as I would like and I'm having trouble mentally sifting through whether or not PyDocs ...
0
votes
4answers
61 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
52 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 ...
0
votes
1answer
65 views
Add woocommerce product type to body class array
I am trying to add Woocommerce product types to the Wordpress body tag class array thats called in header.php with
body_class();
I have the following function in functions.php but it is not adding ...
0
votes
2answers
41 views
Class that needs to use containers as look-up tables. Should they be global variables or static members?
I apologize if I break any rules of this site in advance. I just signed up to ask this.
Suppose I make a class. It will have several strings for data members and some functions for some processing ...
1
vote
1answer
34 views
How to pass a bidimensional matrix by parameter to a function in C
I have a question about matrices.
I have a program to calculate checkers moves; I solved it in Java, but it won't run fast enough and I decided to try it in C.
The problem is that in Java I can pass ...
0
votes
1answer
27 views
Adding variables “by name” to local namespace
I know that I can add a variable to the global namespace "by name" with something like:
def getNewVar(name,val):
globals()[name]=val
The things is, I would like to do this in a local namespace. ...
0
votes
0answers
113 views
Create global function in c#
Completely new to C#, so please be patient with me.
I have an application with 2 links. 1 link for anyone to see, 1 for only certain people to see. The code and files and everything are the exact ...
0
votes
2answers
65 views
execfile() cannot be used reliably to modify a function’s locals
The python documentation states "execfile() cannot be used reliably to modify a function’s locals." on the page http://docs.python.org/2/library/functions.html#execfile
Can anyone provide any further ...
0
votes
1answer
87 views
Returning a variable to use within another function in JQuery
I'm making an image gallery, when I click a button I can scroll through to the next image.
I also have the option to 'jump' to a specific image. This all works fine.
However, if I scroll regularly ...




