Click here to Skip to main content
15,901,666 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: ListView! Please help! Urgent! Pin
Stephen McGuire14-Sep-06 9:02
Stephen McGuire14-Sep-06 9:02 
QuestionVirtual Network Interface Pin
mkrelli13-Sep-06 13:28
mkrelli13-Sep-06 13:28 
AnswerRe: Virtual Network Interface Pin
progload13-Sep-06 14:42
progload13-Sep-06 14:42 
AnswerRe: Virtual Network Interface Pin
Dave Kreskowiak14-Sep-06 6:33
mveDave Kreskowiak14-Sep-06 6:33 
GeneralRe: Help Required to Improve Project Pin
Christian Graus13-Sep-06 11:55
protectorChristian Graus13-Sep-06 11:55 
Questionfileinfo to string?? Pin
Silver-Grey13-Sep-06 6:36
Silver-Grey13-Sep-06 6:36 
AnswerRe: fileinfo to string?? Pin
Christian Graus13-Sep-06 11:57
protectorChristian Graus13-Sep-06 11:57 
AnswerRe: fileinfo to string?? Pin
Gideon Engelberth13-Sep-06 15:27
Gideon Engelberth13-Sep-06 15:27 
You should look into the FileInfo.OpenRead and FileInfo.OpenWrite methods. This will return a FileStream that you can use in the constructor of a StreamReader.

Example

Imports System.IO

Dim fi As FileInfo
'get object from list box
Using fs As FileStream = fi.OpenRead()
'use fi.OpenWrite() for a writeable stream
Using sr As New StreamReader(fs)
'read or write here
End Using
End Using
AnswerRe: fileinfo to string?? Pin
manish2414-Sep-06 0:49
manish2414-Sep-06 0:49 
AnswerRe: fileinfo to string?? Pin
manish2414-Sep-06 0:52
manish2414-Sep-06 0:52 
QuestionHow to determine an array is empty in VBA Pin
mmhu13-Sep-06 4:27
mmhu13-Sep-06 4:27 
AnswerRe: How to determine an array is empty in VBA Pin
Dave Kreskowiak14-Sep-06 6:27
mveDave Kreskowiak14-Sep-06 6:27 
GeneralRe: How to determine an array is empty in VBA Pin
mmhu14-Sep-06 15:26
mmhu14-Sep-06 15:26 
GeneralRe: How to determine an array is empty in VBA Pin
Dave Kreskowiak14-Sep-06 17:24
mveDave Kreskowiak14-Sep-06 17:24 
AnswerRe: How to determine an array is empty in VBA Pin
Coding C#15-Sep-06 22:23
Coding C#15-Sep-06 22:23 
Questionfileinfo to string?? Pin
Silver-Grey13-Sep-06 4:19
Silver-Grey13-Sep-06 4:19 
Questionhow to get Treeview and Textbox together Pin
jeevim13-Sep-06 4:10
jeevim13-Sep-06 4:10 
AnswerRe: how to get Treeview and Textbox together Pin
Dave Kreskowiak14-Sep-06 6:29
mveDave Kreskowiak14-Sep-06 6:29 
QuestionGlobal variables across 2 forms Pin
steve_rm13-Sep-06 4:06
steve_rm13-Sep-06 4:06 
AnswerRe: Global variables across 2 forms Pin
Christian Graus13-Sep-06 11:58
protectorChristian Graus13-Sep-06 11:58 
AnswerRe: Global variables across 2 forms Pin
tanya foster14-Sep-06 4:22
tanya foster14-Sep-06 4:22 
QuestionShoutcast project urgent help required Pin
tarunjain2004407113-Sep-06 3:57
tarunjain2004407113-Sep-06 3:57 
Questionapplication that send's a mail Pin
locaas13-Sep-06 3:06
locaas13-Sep-06 3:06 
AnswerRe: application that send's a mail Pin
Christian Graus13-Sep-06 12:02
protectorChristian Graus13-Sep-06 12:02 
QuestionAbout maximizing the forms into the task bar. Pin
ravindra_p13-Sep-06 0:58
ravindra_p13-Sep-06 0:58 

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.