Click here to Skip to main content
16,005,121 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: logical difference Pin
Steve Pullan10-Oct-05 13:57
Steve Pullan10-Oct-05 13:57 
GeneralRe: logical difference Pin
Dave Kreskowiak11-Oct-05 7:18
mveDave Kreskowiak11-Oct-05 7:18 
Questionhttp Request and Response Pin
ybasha9-Oct-05 16:00
ybasha9-Oct-05 16:00 
AnswerRe: http Request and Response Pin
Anonymous9-Oct-05 16:34
Anonymous9-Oct-05 16:34 
GeneralRe: http Request and Response Pin
ybasha9-Oct-05 17:09
ybasha9-Oct-05 17:09 
Questionwin32.Registry Pin
militiaware9-Oct-05 14:52
militiaware9-Oct-05 14:52 
AnswerRe: win32.Registry Pin
Christian Graus9-Oct-05 16:05
protectorChristian Graus9-Oct-05 16:05 
AnswerRe: win32.Registry Pin
Anonymous9-Oct-05 16:06
Anonymous9-Oct-05 16:06 
msdn library?
'example - store a string holding a folder location<br />
Dim backupFolder As String<br />
'ubstantiate a RegistryKey object<br />
Dim regEntry As Microsoft.Win32.RegistryKey<br />
'set it to the location we want:<br />
regEntry = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWARE\\TestApp", True)<br />
'if this is first run then it wont exist yet so create it:<br />
If regEntry Is Nothing Then<br />
    regEntry = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("SOFTWARE\\TestApp")<br />
    'create a subkey:<br />
    regEntry.SetValue("Backup Path", Environment.GetFolderPath(Environment.SpecialFolder.Personal) & "\Backup")<br />
End If<br />
'check we have a usable value in the subkey (and that the subkey exists)<br />
If regEntry.GetValue("Backup Path").ToString = "" Or regEntry.GetValue("Backup Path").ToString = Nothing Then<br />
    'set it to default path<br />
    regEntry.SetValue("Backup Path", Environment.GetFolderPath(Environment.SpecialFolder.Personal) & "\Backup")<br />
End If<br />
'set backupfolder <br />
backupFolder = regEntry.GetValue("Backup Path").ToString<br />
Me.Text = "Current backup folder: " & backupFolder


Creates "HKEY_CURRENT_USE/Spftware/TestApp/Backup Path" on first run.
QuestionTextbox KeyDown Overrides Pin
medicenpringles9-Oct-05 11:19
medicenpringles9-Oct-05 11:19 
AnswerRe: Textbox KeyDown Overrides Pin
Anonymous9-Oct-05 16:02
Anonymous9-Oct-05 16:02 
GeneralRe: Textbox KeyDown Overrides Pin
medicenpringles9-Oct-05 16:17
medicenpringles9-Oct-05 16:17 
GeneralRe: Textbox KeyDown Overrides Pin
Anonymous9-Oct-05 17:01
Anonymous9-Oct-05 17:01 
GeneralRe: Textbox KeyDown Overrides Pin
medicenpringles10-Oct-05 5:51
medicenpringles10-Oct-05 5:51 
Questionproblem on making an exe Pin
saood swar9-Oct-05 11:18
saood swar9-Oct-05 11:18 
AnswerRe: problem on making an exe Pin
Steve Pullan9-Oct-05 14:08
Steve Pullan9-Oct-05 14:08 
QuestionVb.Net Smooth Progress Bar Pin
sumod_madhavan9-Oct-05 9:50
sumod_madhavan9-Oct-05 9:50 
AnswerRe: Vb.Net Smooth Progress Bar Pin
Dave Kreskowiak9-Oct-05 14:37
mveDave Kreskowiak9-Oct-05 14:37 
QuestionEasy bone headed questions: How to read usenet programatically? Pin
TunaSandwich9-Oct-05 8:11
TunaSandwich9-Oct-05 8:11 
AnswerRe: Easy bone headed questions: How to read usenet programatically? Pin
TunaSandwich9-Oct-05 9:05
TunaSandwich9-Oct-05 9:05 
Questionreplacing memory values Pin
nocopro9-Oct-05 3:18
nocopro9-Oct-05 3:18 
AnswerRe: replacing memory values Pin
Robert Rohde9-Oct-05 9:05
Robert Rohde9-Oct-05 9:05 
AnswerRe: replacing memory values Pin
Steve Pullan9-Oct-05 14:11
Steve Pullan9-Oct-05 14:11 
GeneralRe: replacing memory values Pin
nocopro18-Oct-05 17:21
nocopro18-Oct-05 17:21 
QuestionBinding two Custom Collection into single Datagrid Pin
Abhishek Chauhan9-Oct-05 1:48
Abhishek Chauhan9-Oct-05 1:48 
Questionhow to using barcode scanner using vb.net Pin
loochuan8-Oct-05 19:28
loochuan8-Oct-05 19:28 

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.