Click here to Skip to main content
15,898,134 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionArray Help Pin
PAguilar0927-Oct-09 20:25
PAguilar0927-Oct-09 20:25 
AnswerRe: Array Help Pin
tosch27-Oct-09 20:38
tosch27-Oct-09 20:38 
GeneralRe: Array Help Pin
PAguilar0927-Oct-09 20:44
PAguilar0927-Oct-09 20:44 
AnswerRe: Array Help Pin
_Damian S_27-Oct-09 20:59
professional_Damian S_27-Oct-09 20:59 
GeneralRe: Array Help Pin
PAguilar0927-Oct-09 21:08
PAguilar0927-Oct-09 21:08 
QuestionError while read Text File Pin
Anubhava Dimri27-Oct-09 20:04
Anubhava Dimri27-Oct-09 20:04 
AnswerRe: Error while read Text File Pin
Christian Graus27-Oct-09 21:31
protectorChristian Graus27-Oct-09 21:31 
GeneralRe: Error while read Text File Pin
Anubhava Dimri27-Oct-09 22:57
Anubhava Dimri27-Oct-09 22:57 
Try
Dim OCAP1 As OpenFileDialog = New OpenFileDialog
Dim Filepath As String
OCAP1.Title = "Select Caption Text File"
OCAP1.Filter = "Text Files (*.txt)|*.txt"
OCAP1.FilterIndex = 2
OCAP1.RestoreDirectory = True
If OCAP1.ShowDialog = Windows.Forms.DialogResult.Cancel Then Exit Sub

Filepath = OCAP1.FileName
Dim Reader1 As StreamReader = New StreamReader(Filepath)
While Reader1.Peek <> -1
ListBarcodecaption.Items.Add(Reader1.ReadLine())
End While
Reader1.Close()
count_barcaptions.Text = ListBarcodecaption.Items.Count.ToString() & " Items"
Button2_Click(Button2, e)
Catch ex As Exception
End Try

If you can think then I Can.

GeneralRe: Error while read Text File Pin
Christian Graus27-Oct-09 23:51
protectorChristian Graus27-Oct-09 23:51 
QuestionMy Application Issue. Pin
Nanda_MR27-Oct-09 18:57
Nanda_MR27-Oct-09 18:57 
AnswerRe: My Application Issue. Pin
Christian Graus27-Oct-09 19:46
protectorChristian Graus27-Oct-09 19:46 
GeneralRe: My Application Issue. Pin
Nanda_MR27-Oct-09 19:59
Nanda_MR27-Oct-09 19:59 
GeneralRe: My Application Issue. Pin
Christian Graus27-Oct-09 21:32
protectorChristian Graus27-Oct-09 21:32 
GeneralRe: My Application Issue. Pin
Nanda_MR27-Oct-09 22:30
Nanda_MR27-Oct-09 22:30 
QuestionVB.Net code wont ework propertly under certain account conditions Pin
Martin Stevens27-Oct-09 17:34
Martin Stevens27-Oct-09 17:34 
AnswerRe: VB.Net code wont ework propertly under certain account conditions Pin
Luc Pattyn27-Oct-09 18:58
sitebuilderLuc Pattyn27-Oct-09 18:58 
GeneralRe: VB.Net code wont ework propertly under certain account conditions Pin
Martin Stevens27-Oct-09 20:33
Martin Stevens27-Oct-09 20:33 
AnswerRe: VB.Net code wont ework propertly under certain account conditions Pin
Dave Kreskowiak28-Oct-09 4:02
mveDave Kreskowiak28-Oct-09 4:02 
QuestionFTP UPLOAD SCRIPT Pin
sris 42627-Oct-09 5:49
sris 42627-Oct-09 5:49 
AnswerRe: FTP UPLOAD SCRIPT Pin
EliottA27-Oct-09 6:46
EliottA27-Oct-09 6:46 
GeneralRe: FTP UPLOAD SCRIPT Pin
sris 42627-Oct-09 7:08
sris 42627-Oct-09 7:08 
GeneralRe: FTP UPLOAD SCRIPT Pin
dan!sh 27-Oct-09 7:12
professional dan!sh 27-Oct-09 7:12 
GeneralRe: FTP UPLOAD SCRIPT Pin
dan!sh 27-Oct-09 7:09
professional dan!sh 27-Oct-09 7:09 
GeneralRe: FTP UPLOAD SCRIPT Pin
Christian Graus27-Oct-09 11:10
protectorChristian Graus27-Oct-09 11:10 
GeneralRe: FTP UPLOAD SCRIPT Pin
Richard MacCutchan27-Oct-09 11:51
mveRichard MacCutchan27-Oct-09 11:51 

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.