i'm sort of a n00b to VB and was wondering how to make a variable available across multiple Subs. It's just a test app to get familiar with VB. My Code:
Public Class Sentences
Private Sub SentenceBox_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SentenceBox.TextChanged
If Me.Text = Trim(Sentence) Then
MsgBox("Good job!")
Main_Menu.Show()
Me.Close()
End If
End Sub
Private Sub ABCs_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim random As Integer = CInt((Rnd() * 10) + 1)
Dim Sentence As String
Select Case random
Case 1
Sentence = "The quick brown fox jumped over the lazy dog!"
Case 2
Sentence = "Hi there, how are you doing?"
Case 3
Sentence = "What is the answer to life?"
Case 4
Sentence = "The cat in the hat was fat."
Case 5
Sentence = "John and Sam had always been fat."
Case 6
Sentence = "The snow is falling hard."
Case 7
Sentence = "Here, dinner is always served nightly."
Case 8
Sentence = "The dog barks at the passing cars."
Case 9
Sentence = "The dust settles on the books."
Case 10
Sentence = "Fire burns brightly when you add kerosene."
End Select
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
SentenceBox.Text = Sentence
End Sub
End Class
My error is:
"Sentences" is not declared. It may be in accessable due to it's protection level."
you should declare it as a public variable
public sentence as string=string.empty
but if were you i would just declare it in the whole class sampleIf you get this for every webcontrol on page then right Click on the project or folder with error and 'Convert to WebApplication' to auto-generate its designer.vb files (where they get declared in a partial class with the same name).
Variables in VB.NET have a very particular scope, limiting their availability to various portions of your code depending on how and where they are declared.
Your
Sentence
variable has procedure-level scope, which means that it is available only within the procedure in which it was declared. In your case, it's declared in theABCs_Load
method ("Sub"), so it will only be available to code within that method.If, instead, you want to be able to access the
Sentence
variable in any of the methods in your class (Forms
are always classes in VB.NET), you can declare the variable with Module-level scope. To do this, you need to add a private field to yourSentences
class, outside of any particular method (Sub or Function). This declaration will look something like this:Of course, you can also declare the variable as
Public
instead ofPrivate
, which will make it available to other classes outside of the current class. For example, if you had a second form that you wanted to be able to access the contents of yourSentence
variable, you could declare it asPublic
in the first form's class and then access it from one of the methods in the second form's class like so:Notice that because it does lie within another form (a class different than the one it is being accessed in), you have to fully qualify the reference to it. It's like how your family might call you "Mike," but others have to call you "Mike Jones" to differentiate you from "Mike Smith."
For further reading, also see these related articles on MSDN:
Put this under "Public Class Sentences":
And remove the declaration from the ABCs_Load scope.
You should put :
under Public Class Sentences
Read this to learn more : http://msdn.microsoft.com/en-us/library/43s90322%28v=VS.80%29.aspx
Move the line
Dim Sentence As String
from ABCs_Load to immediately afterPublic Class Sentences
.This will make the variable Sentence available to all subs and functions in the class Sentences.