Click here to Skip to main content
15,917,808 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: My Network Places Pin
LokmanHakim16-Feb-04 17:02
LokmanHakim16-Feb-04 17:02 
GeneralNeed help on monthview control Pin
gamerPotatoe12-Feb-04 19:47
gamerPotatoe12-Feb-04 19:47 
GeneralRe: Need help on monthview control Pin
John Kuhn13-Feb-04 16:13
John Kuhn13-Feb-04 16:13 
GeneralBackground Application Pin
Pugman81212-Feb-04 17:53
Pugman81212-Feb-04 17:53 
GeneralRe: Background Application Pin
John Kuhn12-Feb-04 17:59
John Kuhn12-Feb-04 17:59 
GeneralRe: Background Application Pin
John Kuhn13-Feb-04 13:51
John Kuhn13-Feb-04 13:51 
Questioncan you make an array of properties? Pin
Nadroj12-Feb-04 17:21
Nadroj12-Feb-04 17:21 
AnswerRe: can you make an array of properties? Pin
Nadroj12-Feb-04 17:51
Nadroj12-Feb-04 17:51 
ok.. i guess i got it working. here it is, if anyone cares:

Private tempScore(3) As Integer

Property score(ByVal i As Byte) As String
Get
Return tempScore(i)
End Get
Set(ByVal Value As String)
If Value < 0 Then
Console.WriteLine("Score average cannot be less than 0%.")
tempScore(i) = 0
ElseIf Value > 100 Then
Console.WriteLine("Score average cannot be greater than 100%.")
tempScore(i) = 100
Else
tempScore(i) = Value
End If
End Set
End Property

Jordan.
III
QuestionHow to Load Form2 from Form1 Pin
John Kuhn12-Feb-04 17:13
John Kuhn12-Feb-04 17:13 
AnswerRe: How to Load Form2 from Form1 Pin
Edbert P12-Feb-04 18:54
Edbert P12-Feb-04 18:54 
GeneralRe: How to Load Form2 from Form1 Pin
John Kuhn12-Feb-04 19:28
John Kuhn12-Feb-04 19:28 
GeneralRe: How to Load Form2 from Form1 Pin
Edbert P15-Feb-04 14:59
Edbert P15-Feb-04 14:59 
GeneralRe: How to Load Form2 from Form1 Pin
John Kuhn16-Feb-04 9:06
John Kuhn16-Feb-04 9:06 
GeneralProblem accessing component from VB Pin
SripriyaBabu11-Feb-04 23:26
SripriyaBabu11-Feb-04 23:26 
GeneralRe: Problem accessing component from VB Pin
Anonymous12-Feb-04 5:05
Anonymous12-Feb-04 5:05 
GeneralUPPERCASE TEXT Pin
Lim Goh Tong11-Feb-04 21:45
Lim Goh Tong11-Feb-04 21:45 
GeneralRe: UPPERCASE TEXT Pin
-Dr_X-12-Feb-04 13:41
-Dr_X-12-Feb-04 13:41 
GeneralUppercase text Pin
Lim Goh Tong11-Feb-04 20:56
Lim Goh Tong11-Feb-04 20:56 
GeneralRe: Uppercase text Pin
Hesham Amin12-Feb-04 11:48
Hesham Amin12-Feb-04 11:48 
GeneralRe: Uppercase text Pin
Matthew Hazlett13-Feb-04 4:19
Matthew Hazlett13-Feb-04 4:19 
GeneralDefault Button in Vb.net Pin
Tasnim11-Feb-04 20:23
Tasnim11-Feb-04 20:23 
GeneralRe: Default Button in Vb.net Pin
John Kuhn11-Feb-04 20:34
John Kuhn11-Feb-04 20:34 
Generaldefault client attachment problem Pin
Asim N.11-Feb-04 17:48
Asim N.11-Feb-04 17:48 
QuestionHow to attach a scroll bar to a picturebox Pin
MJay11-Feb-04 15:44
MJay11-Feb-04 15:44 
AnswerRe: How to attach a scroll bar to a picturebox Pin
Anonymous12-Feb-04 4:46
Anonymous12-Feb-04 4:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.