Hi,
I am trying to make a file read only in VB.
My code is as follows:
Once the message box appears and I open the file, it allows me to write to it. What am I missing? Any thoughts are appreciated.
Thanks.
I am trying to make a file read only in VB.
My code is as follows:
Code:
Dim f2 As New System.Security.Permissions.FileIOPermission(System.Security.Permissions.FileIOPermissionAccess.NoAccess, filen)
MsgBox("locked")
Once the message box appears and I open the file, it allows me to write to it. What am I missing? Any thoughts are appreciated.
Thanks.