Click here to Skip to main content
15,921,697 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to display min values in datagridview/listview Pin
Christian Graus4-Jan-06 12:24
protectorChristian Graus4-Jan-06 12:24 
AnswerRe: How to display min values in datagridview/listview Pin
anujvtt4-Jan-06 22:20
anujvtt4-Jan-06 22:20 
GeneralRe: How to display min values in datagridview/listview Pin
irapov5-Jan-06 4:38
irapov5-Jan-06 4:38 
Questionvb6 and PLC interface Pin
rcerva4-Jan-06 10:17
rcerva4-Jan-06 10:17 
AnswerRe: vb6 and PLC interface Pin
Dave Kreskowiak4-Jan-06 17:42
mveDave Kreskowiak4-Jan-06 17:42 
Questioncontrol pc via bluetooth Pin
hoopoe_bidding4-Jan-06 9:08
hoopoe_bidding4-Jan-06 9:08 
QuestionEncapsulation Pin
Jeeva Jose4-Jan-06 8:10
Jeeva Jose4-Jan-06 8:10 
AnswerRe: Encapsulation Pin
Dave Kreskowiak4-Jan-06 9:22
mveDave Kreskowiak4-Jan-06 9:22 
If you're trying to create a new subkey in the registry, you're doing it wrong. Registry and RegistryKey are essentially class factories that create and return new RegistryKey objects.
Dim myNewKey As RegistryKey = Registry.LocalMachine.CreateSubKey("mySubKey")

This will open the Local Machine hive, create a new subkey off of the root of Local Machine, then return the RegistryKey object representing the new subkey.

You can the use that object to create values in the new key.
myNewKey.SetValue("valueName", value)
' Don't forget to Flush! ;) This forces the Registry to commit changes to disk immediately.
' You don't have to call Flush if waiting for the lazy flusher to commit to disk is OK.
myNewKey.Flush()
' You do have to call Close when you done reading/making changes.
myNewKey.Close()



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

QuestionFree Visual Basic.NET videos Pin
DickInYaMum4-Jan-06 6:37
DickInYaMum4-Jan-06 6:37 
QuestionHow to send picture with slow connection and reduce time consuming Pin
Mekong River4-Jan-06 5:48
Mekong River4-Jan-06 5:48 
AnswerRe: How to send picture with slow connection and reduce time consuming Pin
Dave Kreskowiak4-Jan-06 6:15
mveDave Kreskowiak4-Jan-06 6:15 
GeneralRe: How to send picture with slow connection and reduce time consuming Pin
Mekong River4-Jan-06 12:24
Mekong River4-Jan-06 12:24 
GeneralRe: How to send picture with slow connection and reduce time consuming Pin
Dave Kreskowiak4-Jan-06 17:57
mveDave Kreskowiak4-Jan-06 17:57 
QuestionHelp converting a file to a text file Pin
dogo_dogo4-Jan-06 3:11
dogo_dogo4-Jan-06 3:11 
AnswerRe: Help converting a file to a text file Pin
Curtis Schlak.4-Jan-06 7:52
Curtis Schlak.4-Jan-06 7:52 
GeneralRe: Help converting a file to a text file Pin
dogo_dogo4-Jan-06 8:45
dogo_dogo4-Jan-06 8:45 
GeneralRe: Help converting a file to a text file Pin
Curtis Schlak.4-Jan-06 8:47
Curtis Schlak.4-Jan-06 8:47 
GeneralRe: Help converting a file to a text file Pin
AndrewPeters4-Jan-06 16:04
AndrewPeters4-Jan-06 16:04 
QuestionSecurity permissions when running .net application over a network Pin
bricel4-Jan-06 2:09
bricel4-Jan-06 2:09 
AnswerRe: Security permissions when running .net application over a network Pin
Dave Kreskowiak4-Jan-06 6:07
mveDave Kreskowiak4-Jan-06 6:07 
AnswerRe: Security permissions when running .net application over a network Pin
mtone6-Jan-06 17:44
mtone6-Jan-06 17:44 
Questionneed help from all of you... Pin
n_c_s4-Jan-06 1:34
n_c_s4-Jan-06 1:34 
AnswerRe: need help from all of you... Pin
Christian Graus4-Jan-06 10:40
protectorChristian Graus4-Jan-06 10:40 
GeneralRe: need help from all of you... Pin
n_c_s6-Jan-06 3:38
n_c_s6-Jan-06 3:38 
GeneralRe: need help from all of you... Pin
Christian Graus8-Jan-06 9:42
protectorChristian Graus8-Jan-06 9:42 

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.