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: *

  • Users: ferretrunner
  • Order by date
  1. ferretrunner

    Tools you can't live without

    RegEdit (in system folder)
  2. ferretrunner

    Converting metric to imperial with fractions?

    Dim LNewUnit As Double Dim SNewUnit As String LNewUnit = MetricAmount * ConversionNumber 'fill in these For i = 1 To Len(Str(LNewUnit)) If Mid(Str(LNewUnit), i, 1) = "." Then TempWholeNumber = CLng(Mid(Str(LNewUnit), 1, i - 1)) TempDecimaL = CDbl(Mid(Str(LNewUnit), i, Len(Str(LNewUnit)) - i +...
  3. ferretrunner

    Searching for strings within your strings...

    Sorry I didn't read all of your post. Like MattSTech is asking, I would need to know if each string segment you need is a certain length. If it is, loop through the string segments and sort them into an array. If you know the size of the file number and the size of the location number are...
  4. ferretrunner

    Searching for strings within your strings...

    Instr - Determines if one string is found within a second string BIsFound = Instr(1, String1, String2)
  5. ferretrunner

    VB Trick

    Glowworm27, it says this thread was idle for 11 months untill you posted! Is this true? I'm just wondering because I remember reading it a while ago but no where near 11 months and people were still posting... Anyway, thanks for digging it up. I learned so many new shortcuts!
  6. ferretrunner

    Disable all obejcts in a frame

    wowww. nice work vladk.
  7. ferretrunner

    Out of stack error

    you could also follow the code step by step with the little red circle thingys. (click to the right of a line & it will automatically debugg when it gets there)

Part and Inventory Search

Back
Top