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 Mike Lewis 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. IvanhoBlanc

    Help with query

    I think this query can be (a part) of the solution Success SELECT TestTable.Child, TestTable.ReportDate, TestTable.status FROM TestTable WHERE (((TestTable.ReportDate) In (SELECT TOP 2 ReportDate FROM TestTable as S WHERE S.Child = TestTable.Child ORDER BY ReportDate DESC ))) ORDER...
  2. IvanhoBlanc

    rename file with blank characters in file name batch

    ' Replaces all the blanks in the filename in a folder with "_" 'the folder where the files are stored Const Map = "C:\Scripts\SearchBlanks" Set ObjFileSystem = CreateObject("Scripting.FileSystemObject") Set Folder = ObjFileSystem.GetFolder(Map) Set Bestanden = Folder.Files For Each...
  3. IvanhoBlanc

    Opening files in binary mode

    In VB6 there is an possibility to open files in a binary mode for reading and writing byte by byte (Open myFile For Binary As #1). Is there in VBScript such a thing? When using the FileSystemObject it is only possible to open files for TextStream. Low value's or other non printable characters...

Part and Inventory Search

Back
Top