Click here to Skip to main content
15,886,026 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Extended Table Adapters for Dynamic SQL Pin
Jon_Boy15-Aug-08 3:48
Jon_Boy15-Aug-08 3:48 
GeneralRe: Extended Table Adapters for Dynamic SQL Pin
The_Funkster_Deluxe15-Aug-08 3:53
The_Funkster_Deluxe15-Aug-08 3:53 
GeneralRe: Extended Table Adapters for Dynamic SQL Pin
Jon_Boy15-Aug-08 4:15
Jon_Boy15-Aug-08 4:15 
GeneralRe: Extended Table Adapters for Dynamic SQL Pin
The_Funkster_Deluxe15-Aug-08 4:07
The_Funkster_Deluxe15-Aug-08 4:07 
GeneralRe: Extended Table Adapters for Dynamic SQL Pin
Jon_Boy15-Aug-08 4:17
Jon_Boy15-Aug-08 4:17 
QuestionOdd question of the day: Can 1 filestream object be re-used to read several files? Pin
Jon_Boy15-Aug-08 3:12
Jon_Boy15-Aug-08 3:12 
AnswerRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
Jon_Boy15-Aug-08 6:49
Jon_Boy15-Aug-08 6:49 
AnswerRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
astanton197815-Aug-08 7:04
astanton197815-Aug-08 7:04 
Try this...

Dim fs as FileStream
Dim FilesToProcess as New List(Of String)

FilesToProcess.Add("c:\test.txt")
FilesToProcess.Add("C:\boot.ini")

For Each fileToProcess as String in FilesToProcess
  fs = New FileStream(strFile, FileMode.Open, FileAccess.Read)
  'TODO: whatever you need to do with the file
Next 'filetoProcess

GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
jzonthemtn15-Aug-08 7:06
jzonthemtn15-Aug-08 7:06 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
astanton197815-Aug-08 7:10
astanton197815-Aug-08 7:10 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
Jon_Boy15-Aug-08 7:43
Jon_Boy15-Aug-08 7:43 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
astanton197815-Aug-08 8:44
astanton197815-Aug-08 8:44 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
Jon_Boy15-Aug-08 8:59
Jon_Boy15-Aug-08 8:59 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
astanton197815-Aug-08 9:05
astanton197815-Aug-08 9:05 
GeneralRe: Odd question of the day: Can 1 filestream object be re-used to read several files? Pin
Jon_Boy15-Aug-08 13:12
Jon_Boy15-Aug-08 13:12 
QuestionVB.net and Access Database Pin
Rhoden15-Aug-08 1:46
Rhoden15-Aug-08 1:46 
AnswerRe: VB.net and Access Database Pin
Manas Bhardwaj15-Aug-08 2:37
professionalManas Bhardwaj15-Aug-08 2:37 
AnswerRe: VB.net and Access Database Pin
Ashfield15-Aug-08 2:43
Ashfield15-Aug-08 2:43 
GeneralRe: VB.net and Access Database Pin
Rhoden15-Aug-08 6:08
Rhoden15-Aug-08 6:08 
QuestionThe remote server returned an error: (500) Internal Server Error. Pin
Ebube15-Aug-08 1:12
Ebube15-Aug-08 1:12 
AnswerRe: The remote server returned an error: (500) Internal Server Error. Pin
Ashfield15-Aug-08 1:21
Ashfield15-Aug-08 1:21 
AnswerRe: The remote server returned an error: (500) Internal Server Error. Pin
Ebube15-Aug-08 1:46
Ebube15-Aug-08 1:46 
AnswerRe: The remote server returned an error: (500) Internal Server Error. Pin
astanton197815-Aug-08 7:06
astanton197815-Aug-08 7:06 
QuestionUserControl Development and the StyleChanged Event Pin
Graham Irons14-Aug-08 21:32
Graham Irons14-Aug-08 21:32 
AnswerRe: UserControl Development and the StyleChanged Event Pin
~V~14-Aug-08 21:54
~V~14-Aug-08 21:54 

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.