Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)meoitMay 23, 2019 at 10:34 AM#NSIS how to convert datetime of WMII am query WMI, result the datetime is 20190523000000.000000+**** How to convert this result to format dd/MM/YYYY ? Thanks.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)AndersMay 23, 2019 at 10:55 AM#That looks like a standard YYYYMMDD ISO date, just use StrCpy to extract the parts you need by using the maxlen and start parameters.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)meoitMay 23, 2019 at 11:00 PM#Thanks Anders. StrCpy $0 '$R2' 2 6 StrCpy $1 '$R2' 2 4 StrCpy $2 '$R2' 4 StrCpy $out '($0/$1/$2)'