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...
' 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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.