Search the Community
Showing results for tags 'adox'.
-
A one user ask about Creating XLS file with ADO. This was interesting to me so I use uncle google and find this: https://forums.autodesk.com/t5/visual-basic-customization/ado-connection-create-file-excel/td-p/1675928 EDIT: https://msdn.microsoft.com/en-us/library/ms675849...
-
I found some interesting code here: http://allenbrowne.com/func-adox.html The only one line which I do not know how to convert to AutoIt is: lngNext = Nz(DMax(strAutoNum, strTable), 0) + 1For now I have converted that line in this way: $iNext = Nz(DMax($sAutoNum, $sTable), 0) + 1I do not know what i...