No announcements
Found 3810829 threads
-
0 Votes
using declared variable
DECLARE @a INT DECLARE @b INT DECLARE @c INT SET @a=1; SET @b=2; --SET @c=3; SELECT ...Answered | 4 Replies | 1061 Views | Created by Rainbow55 - Monday, December 9, 2013 1:43 PM | Last reply by Rainbow55 - Monday, December 9, 2013 1:55 PM -
1 Votes
How do you store session variable in C#
The session variables are indexed by the name of the variable or by an integer index.Answered | 3 Replies | 126026 Views | Created by frogeyedpeas - Monday, July 9, 2012 6:46 PM | Last reply by Gachu16 - Monday, July 9, 2012 8:41 PM -
0 Votes
Declare and Use Variable
Once you add GO separator (in SSMS), all local declared variables are gone.Answered | 8 Replies | 7978 Views | Created by MDMoura - Wednesday, October 6, 2010 1:48 PM | Last reply by MDMoura - Thursday, October 14, 2010 3:04 PM -
17 Votes
How to declare static local variables in C#?
Use an instance variable---no static declaration---to track calls on just a single instance.Answered | 17 Replies | 86072 Views | Created by haaao85 - Monday, February 9, 2009 10:05 AM | Last reply by Starbuck - Wednesday, July 18, 2012 8:29 PM -
0 Votes
Variables Declaration
Win32 -> Win32 Project Visual C++ -> MFC -> MFC Application Both of these project types use standard C++, so you can ...Answered | 11 Replies | 761 Views | Created by RickSmit123 - Wednesday, August 10, 2016 5:36 AM | Last reply by RickVBplayer - Friday, August 12, 2016 4:19 AM -
0 Votes
Use Implicitly Typed Variable Declaration
I didn't mean to imply that after they are instantiated, variables declared with var are loosly typed.Answered | 11 Replies | 6287 Views | Created by JeffWask - Wednesday, May 19, 2010 4:52 PM | Last reply by RhinoMonkey.com - Wednesday, August 22, 2012 6:40 PM -
3 Votes
Variable not declared?
If it is saying that when you have moved the code into a method then it is becausue there is no variable named "TextBox1" declared in your ...Answered | 7 Replies | 1480 Views | Created by Ginsberg - Sunday, November 25, 2012 9:10 PM | Last reply by Kareninstructor - Monday, November 26, 2012 3:05 AM -
0 Votes
Using variables inside array declaration
Hello Jan, Ok jan, it's the normal way but I was trying to put the variable inside the declaration of the Array. and it was just a syntax solution to ...Answered | 2 Replies | 1019 Views | Created by Eddy Abts - Saturday, July 4, 2020 9:44 AM | Last reply by Eddy Abts - Monday, July 6, 2020 8:19 PM -
1 Votes
Must declare the scalar variable.
Because SQL is a declarative language, we do not use local variables.Answered | 7 Replies | 27281 Views | Created by KamAbA - Thursday, October 3, 2013 11:51 AM | Last reply by Josh Ashwood - Tuesday, October 8, 2013 5:41 AM -
0 Votes
C#NET2008 Declare DateTime Variables
Thank you very much for your suggestion, You are awesome and wonderful is sharing the information and I have learned that I made a mistake declaring the variable ...Answered | 2 Replies | 3382 Views | Created by Tee Leong - Wednesday, January 5, 2011 4:20 AM | Last reply by Tee Leong - Wednesday, January 5, 2011 5:01 AM -
10 Votes
How to declare variable to be used between forms
You need to create a new module for declaring variables that will be recognized by all the forms in a project.Answered | 25 Replies | 1924 Views | Created by Randy Boulter - Tuesday, February 24, 2015 2:59 PM | Last reply by Kareninstructor - Wednesday, February 25, 2015 1:51 PM -
0 Votes
Declare a variable inside a Expression
It is better to declare variables within the scope you want to use the variables if the variables are not global.Answered | 4 Replies | 11392 Views | Created by lilSam21 - Wednesday, October 21, 2009 4:16 PM | Last reply by Manh Hung Chu - Sunday, June 6, 2010 8:30 PM -
7 Votes
Declaring Memory Variables
I don't think is your concern how or with who I am working.Answered | 37 Replies | 7003 Views | Created by MsJae - Thursday, June 2, 2011 2:37 PM | Last reply by Olaf Doschke - Wednesday, June 8, 2011 10:12 AM -
1 Votes
How to Declare a Variable in C#?
I found a sample of code on the web, which should (as far as I can tell) work: using System; using ...Answered | 2 Replies | 2594 Views | Created by ryguy72 - Thursday, January 5, 2012 12:44 AM | Last reply by ryguy72 - Thursday, January 5, 2012 2:27 AM -
4 Votes
VB 2010 Variable used before it's declared?
It is one of the strange warnings which results from the parity with C# which has no default values.Answered | 6 Replies | 1297 Views | Created by DimVB - Monday, October 22, 2012 7:47 PM | Last reply by Frank L. Smith - Monday, October 22, 2012 8:50 PM -
3 Votes
[VB.NET] Declared variable appearing not declared?!
I think instead of MOVING the declaration from the If to the Sub scope you COPIED the declaration so it still exists in both places.Answered | 3 Replies | 3678 Views | Created by Xakepa - Thursday, February 24, 2011 6:13 PM | Last reply by Andrew B. Painter - Thursday, February 24, 2011 7:10 PM -
0 Votes
Cannot use local variable 'MyProcess' unless it is declared
May be you are missing the keyword partial Here is my code which i tried namespace me { public partial class Form1 : Form { ...Answered | 3 Replies | 3287 Views | Created by learner08 - Tuesday, July 7, 2009 8:40 AM | Last reply by Miss. Meetu Choudhary - Tuesday, July 7, 2009 8:58 AM -
0 Votes
Dynamically declaring variable
Hi, Why can t you use HashTable or List or Dictionary to store those values, which will reduce the complexity.Answered | 4 Replies | 6219 Views | Created by Thomas Stanton - Wednesday, March 9, 2011 12:16 AM | Last reply by Derek Smyth - Wednesday, March 9, 2011 8:41 AM -
3 Votes
Why we use "^" instead of directly declaring a variable in C++?
That's how you declare a handle (distinct from a pointer) in managed code.Answered | 7 Replies | 2392 Views | Created by TimoYang - Wednesday, July 4, 2012 8:44 AM | Last reply by TimoYang - Thursday, July 5, 2012 5:07 AM -
0 Votes
How to Bind data to a Session Variable
Use Execute Scalar Method.Answered | 1 Replies | 1936 Views | Created by oceantrain - Friday, July 6, 2012 2:48 PM | Last reply by Sambath Raj.C - Friday, July 6, 2012 3:02 PM - Items 1 to 20 of 3810829 Next ›
No announcements