Tagged Questions

0
votes
1answer
11 views

Global state in asp.net mvc application

Problem: Our web console shows a list of all computers on which our application is installed. Each machine has some identification information that can be associated with it. Simple strings like …
2
votes
1answer
52 views

haskell global var

The task is to create dynamically linked library, which encapsulates database hard work. Due to some design limitations I have a defined interface, which consist of numerous functions. Each function …
0
votes
1answer
32 views

Is it possible for $_SERVER[’SCRIPT_FILENAME’] to not be set?

Hey everyone, some background info: In the config file for my website, I set the mysql database name, username and password based on the contents of $_SERVER['HTTP_HOST']. Because it is possible for …
0
votes
2answers
36 views

PHP: How to pass existing database connection to static class methods?

I have a set of static class methods. I also have an existing database connection in a script stored in an object variable $DB. How do I call those static class methods and let them use that $DB …
1
vote
1answer
23 views

Creating variables using $GLOBALS

Hi there, I am currently working on a php framework, which is in some cases structured like the ZendFramework. It has MVC etc. I did not found any equal matching to my problem. My "problem" is I …
1
vote
9answers
197 views

How to Avoid Global Variables in Javascript

We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global …
0
votes
3answers
51 views

Create a global static variable in SQL Server?

Is there a way to create a global variable in SQL Server so it's saved even the server is shut down, so I can use it in functions? Example from what I need: DECLARE @@DefaultValue bit This …
1
vote
1answer
45 views

jQuery - make global variable available to multiple plugins

I have a set of jQuery plugins I'm creating for a website. All of these plugin have the common functionality that they make $.getJSON() calls. The URL passed in these calls varies based on Dev, QA …
0
votes
5answers
108 views

Global variables in Visual C#

How do I declare global variables in Visual C#?
2
votes
1answer
77 views

Static initialization and destruction of a static library’s globals not happening with g++

Hi! Until some time ago, I thought a .a static library was just a collection of .o object files, just archiving them and not making them handled differently. But linking with a .o object and linking …
3
votes
3answers
204 views

Is there a better way to create this game loop? (C++/Windows)

I'm working on a Windows game, and I have this: bool game_cont; LRESULT WINAPI WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg) { case WM_QUIT: case WM_CLOSE: …
0
votes
4answers
41 views

[iphone] use NSString in other method?!

It's really embarrassing but i stuck on it for two hours of trial and error. I declared an NSString in the interface as: NSString *testString; Then i made a property and synthesized it. I allocate …
0
votes
3answers
22 views

Is there a better way of recreating $_SERVER[’QUERY_STRING’]

I want to be able to return all of the parameters that are being passed into a specific page using PHP. $_SERVER['QUERY_STRING']; Seems to perform this task adequately, however I have heard many …
0
votes
1answer
13 views

Making Controls public/Global in Netbeans with Java.

So I have multiple forms for my current project and I have made classes that interact and do some utility work behind these forms. However I am unable to access controls on other forms. Say I have …
1
vote
1answer
24 views

How to reference base URLs for images in XAML in Silverlight?

I have images scattered throughout my silverlight app, and because of the structure we decided on, all images are brought in from an HTTP URL. Currently, in XAML an image would be declared as …

1 2 3 4 5 9 next
15 30 50 per page