Click here to Skip to main content
15,900,511 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VB.Net q Pin
khalid33324-Oct-12 17:19
khalid33324-Oct-12 17:19 
QuestionCOM Interop between C++ program and VB.NET DLL Pin
_obi_22-Oct-12 13:14
_obi_22-Oct-12 13:14 
AnswerRe: COM Interop between C++ program and VB.NET DLL Pin
Bernhard Hiller22-Oct-12 20:57
Bernhard Hiller22-Oct-12 20:57 
GeneralRe: COM Interop between C++ program and VB.NET DLL Pin
_obi_22-Oct-12 21:23
_obi_22-Oct-12 21:23 
Questioncsv => txt file Pin
dubscat22-Oct-12 9:41
dubscat22-Oct-12 9:41 
AnswerRe: csv => txt file Pin
David Mujica22-Oct-12 10:51
David Mujica22-Oct-12 10:51 
GeneralRe: csv => txt file Pin
dubscat22-Oct-12 11:29
dubscat22-Oct-12 11:29 
GeneralRe: csv => txt file Pin
David Mujica23-Oct-12 3:25
David Mujica23-Oct-12 3:25 
I wrote this just now and it seems to work fine.

Give it a try ...

VB
Dim sr As System.IO.StreamReader
Dim sw As System.IO.StreamWriter
Dim sLine As String
Dim iCount As Integer = 0

sr = New System.IO.StreamReader("C:\temp\file1.txt")
sw = New System.IO.StreamWriter("C:\temp\file2.txt")

sLine = sr.ReadLine()
While Not (sLine Is Nothing)
    iCount = iCount + 1
    If (iCount > 1) Then
        sw.WriteLine(sLine)
    End If
    sLine = sr.ReadLine()
End While

sr.Close()
sr.Dispose()

sw.Close()
sw.Dispose()

GeneralRe: csv => txt file Pin
dubscat23-Oct-12 6:47
dubscat23-Oct-12 6:47 
GeneralRe: csv => txt file Pin
David Mujica23-Oct-12 8:10
David Mujica23-Oct-12 8:10 
GeneralRe: csv => txt file Pin
dubscat23-Oct-12 8:12
dubscat23-Oct-12 8:12 
GeneralRe: csv => txt file Pin
dubscat23-Oct-12 8:14
dubscat23-Oct-12 8:14 
GeneralRe: csv => txt file Pin
dubscat25-Oct-12 8:55
dubscat25-Oct-12 8:55 
GeneralRe: csv => txt file Pin
David Mujica26-Oct-12 3:14
David Mujica26-Oct-12 3:14 
AnswerRe: csv => txt file Pin
ChandraRam24-Oct-12 0:32
ChandraRam24-Oct-12 0:32 
GeneralRe: csv => txt file Pin
dubscat24-Oct-12 5:38
dubscat24-Oct-12 5:38 
GeneralRe: csv => txt file Pin
dubscat25-Oct-12 5:55
dubscat25-Oct-12 5:55 
GeneralRe: csv => txt file Pin
ChandraRam25-Oct-12 6:35
ChandraRam25-Oct-12 6:35 
GeneralRe: csv => txt file Pin
dubscat25-Oct-12 7:22
dubscat25-Oct-12 7:22 
GeneralRe: csv => txt file Pin
ChandraRam25-Oct-12 7:25
ChandraRam25-Oct-12 7:25 
GeneralRe: csv => txt file Pin
dubscat25-Oct-12 7:39
dubscat25-Oct-12 7:39 
GeneralRe: csv => txt file Pin
ChandraRam25-Oct-12 7:44
ChandraRam25-Oct-12 7:44 
GeneralRe: csv => txt file Pin
dubscat25-Oct-12 8:53
dubscat25-Oct-12 8:53 
GeneralRe: csv => txt file Pin
ChandraRam26-Oct-12 3:04
ChandraRam26-Oct-12 3:04 
GeneralRe: csv => txt file Pin
dubscat26-Oct-12 3:25
dubscat26-Oct-12 3:25 

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.