Results 1 to 6 of 6

speed up my code?

Threaded View

  1. #1
    mpeplow
    Guest

    speed up my code?

    I need speed!

    Can you help speed this up?
    (The files might be the problem, each file contains 35,760 lines of numbers,)
    I think the problem might be the file size. If anyone knows of a different way to store the file and import it that would be worth a shot.

    Sub LoadData()
    Dim Theme As Theme 'This is just my background
    Set Theme = New Theme
    Dim Brain As Brain 'This specifies the column and a couple other variables
    Set Brain = New Brain
    Dim PIO As Object
    Set PIO = frmGetPID.Spreadsheet1.Sheets("Skus & PID")
    Dim i As Long
    Dim Brain_Item As String
    Dim ImportantFile as String
    
    If Brain.optAllowErrors = False Then
        On Error GoTo ErrorHandler
    End If
    Application.StatusBar = "Loading Product ID Lookup... Please Wait."
    
    ImportantFile = Brain.INI_Path & "Skus.ini"
    
    'Open file to read
    FileNum = FreeFile
    Open ImportantFile For Input As FileNum
    
    'Loop through File
    Do While Not EOF(1)
    Input #FileNum, Brain_Item
        i = i + 1
        PIO.Range("A" & i).Value = Brain_Item
    Loop
    
    'Close File
    Close #1
    i = 0
    ImportantFile = Brain.INI_Path & "PID.ini"
    
    'Open file to read
    FileNum = FreeFile
    Open ImportantFile For Input As FileNum
    
    'Loop through File
    Do While Not EOF(1)
    Input #FileNum, Brain_Item
        i = i + 1
        PIO.Range("B" & i).Value = Brain_Item
    Loop
    Application.StatusBar = False
    Close #1
    
    Exit Sub
    ErrorHandler:
        frmError.Show (vbModeless)
        Resume Next
    End Sub
    Last edited by mpeplow; 06-17-2007 at 01:52 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1