Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JacobY

    Searching a text file

    My regrets, I was too hasty to reply and didn't read all of the code (or even try it out!). SBendBuckeye was correct. Regards to you. Jacob
  2. JacobY

    Searching a text file

    To further clarify my direction... I have been thinking along these lines... But it just isn't clicking... While Not EOF(1) Line Input #1, DPFLine If DPFLine = " 8" Then Line Input #1, DPFLine(I + 1)
  3. JacobY

    Searching a text file

    Thanks for the help! (but) Problem is that I have volumes of different information within the text file and I specifically need the line after. Here is an example of the text file... 0 LAYERSTATEDICTIONARY 0 LAYERSTATE 1 DEMO 91 -1 8 EP-STMSYM 90 8 62 4 370 -3 6 CONTINUOUS 2...
  4. JacobY

    Searching a text file with VBA

    I am trying to gather the value from a line after another line... Sub GetLayerNames() Dim DPFLine As Variant Dim I As Integer Open "C:\Documents and Settings\JEY\Desktop\DEMO.las" For Input As #1 While Not EOF(1) Line Input #1, DPFLine If DPFLine = &quot...
  5. JacobY

    Searching a text file

    I am trying to gather the line after a certain value in a text file.... Any help would be appreciated. Sub GetLayerNames() Dim DPFLine As Variant Dim I As Integer Open "C:\Documents and Settings\JEY\Desktop\DEMO.las" For Input As #1 While Not EOF(1) Line Input #1, DPFLine...
  6. JacobY

    ACAD layer states

    I was wondering if anyone had any information on this extension dictionary. I am programming a layer comparison tool and am at wit's end on how to access the saved layer names and values in each saved layer state. I am using AutoCAD 2002. I am trying to compare the current layer collection with...

Part and Inventory Search

Back
Top