This is post #post23776
https://www.excelfox.com/forum/showt...age2#post23776
https://www.excelfox.com/forum/showthread.php/2936-YouTube-Video-making-and-editing-etc-coupled-to-excelfox-(-windows-Movie-Maker-)/page2#post23776
Version 2
I only found 1 so far, masquerading as a 2.6 here:
https://archive.org/details/wmm2installer
This is the important download from there, https://archive.org/details/wmm2installer , https://app.box.com/s/1tddomgrqyfm5h97sdtmz8vvhgpohrrv , from late 2002. It may have been updated around April 2008.
The files it has, shown below, are very similar to those for 2.1, 2.5, 2.6
https://i.postimg.cc/SQLdw105/Version-2-Files.jpgCode:_____ Workbook: Movie Maker Versions.xls ( Using Excel 2013 32 bit )Worksheet: 2 2.1 (2.5)
WMM2ERES.dll WMM2RES.dll license.txt MovieMk.chm 4 KB 4.05 KB 8,16 KB 714 KB Jewano install 2 5 Dec 2023 Erstellte 13 Aug 2009 20.12.2002 20.12.2002 Textdokument Kompilierte HTML-Hilfedatei \ archive org details wmm2installer\Jewano Install Dec 5 2023 wmm2installer.exe 5.50.4134.600 12.286 11.9 12.580.696 12.0 12.582.912 2.0.3312.0 2.0.3312.0 27.01.2003 27.11.2002 Name Movie Maker 1033 moviemk.exe MUI sample.wmv Shared WMM2AE.dll WMM2ERES.dll WMM2EXT.dll WMM2FILT.dll WMM2FXA.dll WMM2FXB.dll WMM2RES.dll WMM2RES2.dll 13.1 15.1 15.854.032 15.1 15.888.384 3,21 MB 628 KB 164 KB 4,00 KB 7,50 KB 393 KB 490 KB 318 KB 4,09 MB 6,00 KB Elementtyp Dateiordner Dateiordner Anwendung Dateiordner Windows Media-Audio-/Videodatei Dateiordner DLL-Datei DLL-Datei DLL-Datei DLL-Datei DLL-Datei DLL-Datei DLL-Datei DLL-Datei Änderungsdatum 05.12.2023 05.12.2023 20.12.2002 05.12.2023 19.11.2002 05.12.2023 14.04.2008 14.04.2008 14.04.2008 14.04.2008 14.04.2008 14.04.2008 14.04.2008 14.04.2008 Dateiversion 2.0.3312.0 2.1.4026.0 2.1.4026.0 2.1.4026.0 2.1.4026.0 2.1.4026.0 2.1.4026.0 2.1.4026.0 2.1.4026.0
The basic coding to get the initial results as shown above
What looked potentially a useful coding way I got from this good source, https://www.youtube.com/watch?v=jTmVtPHtiTg . Summarised, the coding there treats things, (I think probably everything, Folders and files), in a folder as Items of that folder. You loop through those items, and are able to get a lot of properties for each one. Each property is returned from a code line of this general form PropertyValue = objFolder.GetDetailsOf(Fil, 166) (For want of a better descriptions I will refer to this as the windows shell object way)
The basic looping structure would then be of this sort of form
Dim objShell As Shell32.Shell: Set objShell = New Shell32.Shell ' https://i.postimg.cc/fz9zrnnm/tools-referrences-microsoft-shell-controls-and-automation.jpg https://i.postimg.cc/sdc9s54h/tools-...automation.jpg
Dim objFolder As Shell32.Folder: Set objFolder = objShell.Namespace(FullPathToFolder) '
Dim Fil As Shell32.FolderItem
__For Each Fil In objFolder.Items
___PropertyValue = objFolder.GetDetailsOf(Fil, 166)
__Next Fil
So , briefly, Fil is declared as a folder Item, and we loop through each of them in the folder. At each loop we can get a particular property from a number. In that example I have 166, which so far always seems to give me a version number.
To get the full listing of the numbers for the different properties available, see here https://www.youtube.com/watch?v=jTmVtPHtiTg&t=560s
https://www.youtube.com/watch?v=jTmV...8sZ9zYqog9KZ5B
https://www.youtube.com/watch?v=jTmV...UOM9zYlZPKdOpm
Also notes on the basic coding using the windows Shell object can be see here https://www.excelfox.com/forum/showt...ll=1#post23920





Reply With Quote
Bookmarks