redzombi19
Programmer
hi i am pretty sure the reason is because it is copied from the cd as read only, but i was wondering if there was a way to remove the read only attribute in code on anything like that??????
Thanks!
Thanks!
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.
lcFileName = "MyFileName"
declare integer GetFileAttributes in Win32Api string lcFileName
declare SetFileAttributes in Win32Api string lcFileName, integer lnAttributes
lnAttributes = GetFileAttributes(lcFileName)
lnAttributes = BitAnd(m.lnAttributes,0)
SetFileAttributes(lcFileName,m.lnAttributes)