Topic profile page for Global variable.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Global variable.
Topic "Global variable" was discussed 2,429 times on 258 sites in last 3 months
Started 3 days, 2 hours ago (2009-11-12 22:37:00)
by worldoffish
Hello, I'm fairly new to VB but I hope you would answer my question anyway. I declared a global variable and used it in a sub. I now want to use the value of that sam variable in another sub. But when the first one closes that value is lost. This is my global one Public PicURL As String And in my sub PicURL = 123Image.ImageUrl So it can't use the static statement ...
Started 3 days, 21 hours ago (2009-11-12 04:01:00)
by Niki AU
Hi all, I have a global variable G1 of string type, and i would to set it as datetime Iso 8601 compliant ( yyyy-MM-ddT00:00:00 ). When i try to pass this global variable to a stored procedure in an "Execute SQL Task", which has only a input parameter (of datetime type), i receive an error of "invalid char for the cast...
Started 4 days, 20 hours ago (2009-11-11 05:08:00)
by gulay
Hi, I am using Oracle Data Integrator 10.1.3 and I am very new to this field. In a package, during a flow, my tables should be updated if and only if the previous ones in the flow have already been updated. In order to do this, I would like to define a global variable which holds the last updated table in my package. Is it possible in ODI? If not, can you suggest any order solutions to ...
Started 1 week, 2 days ago (2009-11-06 22:10:00)
by BruCru
I have am writing a simple accounting program that has a datagrid with a textblock in the header. I want to be able to bind the textblock's Text to a global variable (Company Name). Anyone have any ideas? Thanks Chris
Started 1 week, 2 days ago (2009-11-06 10:48:00)
by keerthivemula
Hi All, Is it possible to store multiple values in one global variable? If not how can we achieve this kind of structure? For example: $GV_VAL = sql('DS_DB', 'select distinct branch_name from bank where area_code = '100' '); Usually it is going to return multiple values, Is there a way to do this? All your help is greatly appreciated, Thanks,...
Started 1 week, 5 days ago (2009-11-04 00:42:00)
by hellsyeah
I have created a picBox inside a function, this function then adds some properties to it and then adds to: Me.Controls.Add(thisarray(count)) thisarray() was declared as a local variable in this function. now I want to delete the picture thisarray(all) since "thisarray()" is not global, and is(should) delete when the function has ended. obviously there is some remnant...
Started 1 week, 5 days ago (2009-11-03 19:36:00)
by tcmo44
I have a program that needs to access a global variable of type double from two different threads. Since it is just type double, do I still have to lock that code? I know this may not be the best programming practice, but for right now, this is what I am stuck with. Thanks!!
Started 1 week, 6 days ago (2009-11-02 16:35:00)
by number6
Please Register to Remove these Ads Forum Members, 1 - I am not a programmer. 2 - I have a Microsoft Excel 2000 workbook with 30 worksheets within it. In location "A8" in each worksheet I manually type the last day of the month. For example: "October 31, 2009". 3 - Is there a way to place a variable in location "A8" in each worksheet so that I need ...
Started 1 week, 6 days ago (2009-11-02 12:50:00)
by MamboRSS
in \components\com_registrationegistration.php function: sendNewPass global: $mosConfig_mailfrom is not declared, therefore causing an error on line 92: mosMail($mosConfig_mailfrom, $mosConfig_fromname, $confirmEmail, $subject, $message); when attempting to request a password reminder sent to the user/email address specified. here is the apache log file error proving the condition:...
Started 2 days, 3 hours ago (2009-11-13 21:33:00)
by LaVolpe
As stated by SambaNeko, don't reuse that variable anywhere else 1. In your bas module declare it public 2. In your class simply reference it as needed Code: Public Sub LoadURLImage() load the image using PicURL End Sub If you have a class that changes the value of that variable Code: Public Sub SetImage(byVal newURL As String) PicURL = newURL End Sub...
Started 5 days, 1 hour ago (2009-11-11 00:00:00)
by skp888
theres a lot of code, too much to post, so ill post the functions that are related to the thread: the main working function. basically converts a .jpg into a bitmap to be rendered as a texture in opengl/glut: Help with Code Tags c Syntax ( Toggle Plain Text ) // Pass the filename, and the glTexture to bind it to // int BuildTexture ( ...