Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[vba]Datei zeilenweise einlesen wenn Zeilenende nur "0A"

Empfohlene Antworten

Veröffentlicht

Hallo zusammen!

Ich habe folgendes Problem:

Ich möchte in Access2000 eine csv-Datei importieren. Hierzu habe ich mir eine VBA-Routine geschrieben, die die Datei zeilenweise einlesen soll.

Dummerweise hat die zu importierende Datei - die in dem Format geliefert wird - am Zeilenende nicht 0D 0A (also Carriage Return + Line Feed), sondern nur ein 0A. Dies erkennt der blöde "Line Input" Befehl aber nicht. :(

Hat da jemand ne Lödung für mich? :)

Code-Auszug:


    Open strFilename For Input As #1    ' Datei öffnen.

                Do While Not EOF(1)    ' Schleife bis Dateiende.

                    Line Input #1, Textzeile    ' Zeile in Variable einlesen.

                    MsgBox (Textzeile) ' zur Überprüfung

                    If InStr(Textzeile, ";") > 0 Then

                        arInput = Split(Textzeile, ";")

                    Else

                        arInput = Split(Textzeile, ",")

                    End If


                    rsNew.AddNew

                    For I = 0 To rsNew.Fields.Count - 1

                        rsNew(I) = arInput(I)

                    Next

                    rsNew.Update

                Loop

                Close #1    ' Datei schließen.


hi,

das sollte gehen

    Dim sTmp As String

    Dim ff As Long


    ff = FreeFile

    Open sFilename For Input As #ff

    While (Not EOF(ff))

        'immer ein zeichen einlesen

        sTmp = Input(1, #ff)

        'prüfung auf zeilenende

        'macht allerdings aus jedem CrLf zwei zeilenumbrüche...

        If ((sTmp = vbCr) Or (sTmp = vbLf)) Then

            sTmp = vbNewLine

        End If

        'verarbeitung des gelesenen zeichens

        Text1.Text = Text1.Text & sTmp

    Wend

    Close #ff

allerdings ungetestet...

hth

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.