Rather than having to create a new "About" form for every program that I write; I have written a class which will create a new form at runtime with all the objects placed. This has been designed so that the class can be added to any project that I am doing and executed as a new instance - voila, one "About" box.
The problem I am currently having is the ability to display a logo on said form. Normally, images are...
Search Result
Collapse
7 results in 0.0016 seconds.
Keywords
Members
Tags
-
Getting Global Resource of Application
-
Where are VBA Public variables values stored on a Server
I have an Access database on a Server which is accessed by several users via Remote Desktop. In the VBA code there are several values stored in Public Variables. I am wondering if each user who opens the database has it's own memory space on the server so that they do not overwrite the Public variables from another user? Does anyone know how Public variable data is stored in this situation? -
how to map 1 global image per webpage into multiple images
hello,
i want to secure my webpage's images and code from being copied, so I want to merge (like a grid) all my images into 1 jpg, and use the (index) map of each image instead of its regular url
thus avoiding to upload each image separately by securing them in 1 tight flat image.
can anybody tell me how to do that?
thanks :) -
Can't input to a global object array
Hi,
So I'm making my final project for my CS class. I'm making a pokemon game.
So right now I'm trying to input information(The pokemon the player has) into my array of objects(The list of pokemon the player has). I have the array in a global class so every form can access it. I have it declared as;
...Code:public class GlobalVariables { public static PlayerPokemon[] PlayerPokemonList =Last edited by tlhintoq; Jan 10 '10, 12:30 AM. Reason: [cODE] ...Your code goes between code tags [/CODE] -
Global object variable
Can't object variables be global?
Why isn't following working?
...Code:<head> <script> var o; function func1() { o = document.getElementById("test1"); func2(); } function func2() { o.innerHTML = "Changed"; } </script> </head> <body> <a href="javascript:func1()" id="test1">Test -
global variable in javascript
I wanted to use a global array that can be used on any page that uses the array..
Right now the array gets reset when I load a new page.. or refresh the current page.
What is the solution for this? I cannot use a database.. Also is an external js file a solution??
Thanks,
Sunny -
Global variable and static global variable
I heard that all global variables are static..
If its so then what is the difference between the 2 declarations:
What is the difference between there visibility and how long they remain in memory?Code:#include<stdio.h> int a; static int b; main() { .... }