Re: Find/Replace in csv file - using VB
Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance
Note that this code *could* chop off the last line if it ends with a break
inside a field, but I'm sort of assuming that won't happen. If you want to
be sure, then after the For...Next loop, add the following line:
If strLine <> vbNullString Then strWholeFile = strWholeFile & strLine
Rob
.
Relevant Pages
- Re: Wellbrook Shielded?
... Rob wrote: ... Wellbrook makes no such claims and points to the loop configuration as ... is packaged in a sort of plastic hula hoop, ... The exposed metal is the loop. ... (rec.radio.shortwave) - Re: help with VBA
... Within your loop you determine that you're at ... and know that you need to sort everything on all of the rows from 4 to this ... "indraneel" wrote: ... The first thing to do is to name the ranges you want sorted, ... (microsoft.public.excel.worksheet.functions) - Re: conciseness is power
... (maphash (lambda (normal words) ... (push words anagrams))) ... (loop for word = (read-line s nil) ... (loop for group in anagrams do (setf group (sort group #'string-lessp))) ... (comp.lang.lisp) - Very odd Sort problem when modifying DGV bound data
... I have a DGV that is bound to a DataTable that is loaded during application ... I can sort with all the columns and everything works fine. ... a method that can be invoked from a context menu that will loop through the ... Try and sort the ProductID column. ... (microsoft.public.dotnet.languages.csharp) - Re: fastest way to sort 2-D variant arrays?
... and then change the FSO loop section to loop through the ... array, and add the elements to the recordset using the AddNew statement. ... How would I write my variant array to the recordset? ... Here is something that I use on an ASP page to sort files by date there ... (microsoft.public.vb.general.discussion) |
|