Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Would you share your need/requirement for doing this?Too bad. I must find another way.
Declare Function CreateFile Lib "kernel32" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, ByVal lpSecurityAttributes As Long, ByVal dwCreationDisposition As Long, ByVal dwFlagsAndAttributes As Long, ByVal hTemplateFile As Long) As Long
Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Declare Function SystemTimeToFileTime Lib "kernel32" (lpSystemTime As SYSTEMTIME, lpFileTime As FILETIME) As Long
Declare Function LocalFileTimeToFileTime Lib "kernel32" (lpLocalFileTime As FILETIME, lpFileTime As FILETIME) As Long
Declare Function SetFileTime Lib "kernel32" (ByVal hFile As Long, lpCreationTime As FILETIME, lpLastAccessTime As FILETIME, lpLastWriteTime As FILETIME) As Long
Type FILETIME
dwLowDateTime As Long
dwHighDateTime As Long
End Type
Private Type SYSTEMTIME
wYear As Integer
wMonth As Integer
wDayOfWeek As Integer
wDay As Integer
wHour As Integer
wMinute As Integer
wSecond As Integer
wMilliseconds As Integer
End Type
Const GENERIC_WRITE = &H40000000
Const FILE_SHARE_WRITE = &H2
Const OPEN_EXISTING = 3
Sub abc()
Dim udtFileTime As FILETIME
Dim udtLocalFileTime As FILETIME
Dim udtSystemTime As SYSTEMTIME
udtSystemTime.wYear = Year(Now - 1)
udtSystemTime.wMonth = Month(Now - 1)
udtSystemTime.wDay = Day(Now - 1)
udtSystemTime.wDayOfWeek = Weekday(Now - 1)
udtSystemTime.wHour = Hour(Now)
udtSystemTime.wMinute = Minute(Now)
udtSystemTime.wSecond = Second(Now)
udtSystemTime.wMilliseconds = 0
SystemTimeToFileTime udtSystemTime, udtFileTime
LocalFileTimeToFileTime udtFileTime, udtLocalFileTime
lngHandle = CreateFile("c:\test.any", GENERIC_WRITE, FILE_SHARE_WRITE, ByVal 0&, OPEN_EXISTING, 0, 0)
SetFileTime lngHandle, udtLocalFileTime, udtLocalFileTime, udtLocalFileTime
CloseHandle lngHandle
End Sub