Click here to Skip to main content
15,908,661 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Simple simulator Pin
Zaegra29-Oct-06 1:14
Zaegra29-Oct-06 1:14 
QuestionReversing a registry change? Pin
Code Crapper28-Oct-06 12:25
Code Crapper28-Oct-06 12:25 
AnswerRe: Reversing a registry change? Pin
Christian Graus28-Oct-06 13:36
protectorChristian Graus28-Oct-06 13:36 
GeneralRe: Reversing a registry change? Pin
Code Crapper28-Oct-06 13:42
Code Crapper28-Oct-06 13:42 
GeneralRe: Reversing a registry change? Pin
Christian Graus28-Oct-06 13:50
protectorChristian Graus28-Oct-06 13:50 
GeneralRe: Reversing a registry change? Pin
Code Crapper28-Oct-06 14:02
Code Crapper28-Oct-06 14:02 
GeneralRe: Reversing a registry change? Pin
Christian Graus28-Oct-06 14:07
protectorChristian Graus28-Oct-06 14:07 
GeneralRe: Reversing a registry change? Pin
Code Crapper28-Oct-06 14:15
Code Crapper28-Oct-06 14:15 
Ok well, im sorry for going a bit nasty then but what mainly gets me in VB is when they present you with a code that looks like this:

Dim valueNames As String() = rk.GetValueNames()
Dim s As String
For Each s In valueNames
Dim rvk As RegistryValueKind = rk.GetValueKind(s)
Select Case rvk
Case RegistryValueKind.MultiString
Dim values As String() = CType(rk.GetValue(s), String())
Console.Write(vbCrLf & " {0} ({1}) =", s, rvk)
For i As Integer = 0 To values.Length - 1
If i <> 0 Then Console.Write(",")
Console.Write(" ""{0}""", values(i))
Next i
Console.WriteLine()

I actually know most of that (after hours of reading a crappy book i paid £40 for) now but when i just started out, I was like W T F is this and wandered where to put it.
GeneralRe: Reversing a registry change? Pin
Christian Graus28-Oct-06 15:09
protectorChristian Graus28-Oct-06 15:09 
GeneralRe: Reversing a registry change? Pin
Code Crapper28-Oct-06 15:15
Code Crapper28-Oct-06 15:15 
GeneralRe: Reversing a registry change? Pin
Christian Graus28-Oct-06 17:08
protectorChristian Graus28-Oct-06 17:08 
QuestionAuthenticate through SMTP Server Pin
BBMB3228-Oct-06 10:52
BBMB3228-Oct-06 10:52 
QuestionMake a form refresh itself Pin
Code Crapper28-Oct-06 10:09
Code Crapper28-Oct-06 10:09 
AnswerRe: Make a form refresh itself Pin
Reuven Elliassi28-Oct-06 10:19
Reuven Elliassi28-Oct-06 10:19 
GeneralRe: Make a form refresh itself Pin
Code Crapper28-Oct-06 10:24
Code Crapper28-Oct-06 10:24 
GeneralRe: Make a form refresh itself Pin
Reuven Elliassi28-Oct-06 10:25
Reuven Elliassi28-Oct-06 10:25 
QuestionPersist a datagridview format? Pin
cstrader23228-Oct-06 5:31
cstrader23228-Oct-06 5:31 
QuestionHow to send mail from windos application Pin
balamurugan8228-Oct-06 2:10
balamurugan8228-Oct-06 2:10 
AnswerRe: How to send mail from windos application Pin
cstrader23228-Oct-06 5:36
cstrader23228-Oct-06 5:36 
Questionhow change row color on(in) datagirid Pin
berzegerol27-Oct-06 20:10
berzegerol27-Oct-06 20:10 
AnswerRe: how change row color on(in) datagirid Pin
Janani Divya27-Oct-06 20:22
Janani Divya27-Oct-06 20:22 
GeneralRe: how change row color on(in) datagirid Pin
berzegerol27-Oct-06 22:19
berzegerol27-Oct-06 22:19 
GeneralRe: how change row color on(in) datagirid Pin
Janani Divya29-Oct-06 14:58
Janani Divya29-Oct-06 14:58 
GeneralRe: how change row color on(in) datagirid Pin
berzegerol31-Oct-06 2:27
berzegerol31-Oct-06 2:27 
GeneralRe: how change row color on(in) datagirid Pin
Janani Divya31-Oct-06 17:13
Janani Divya31-Oct-06 17:13 

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.