Bug is login verification. Note: Content removed because of security reason (as suggested by DaveAuld).
Khanna Gaurav
Posts
-
Login Authentication Bug -
Lock the USB Pen driveI am looking to lock my usb pen drive. It should ask for password when i try to open the file in the usb pen drive. Is there any way I can do this using vb.net or c#.
-
how to create crystal report into web page at runtime without mapping any columms at design templateRefer this article http://www.codeproject.com/KB/cs/Dynamic_Crystal_Report.aspx
-
Create a folder with full Sharing RightsUse following code Dim strPath As String = "C:\Gaurav" Dim dir As String = IO.Path.Combine(strPath, "Temps") Dim dirSecurity As New System.Security.AccessControl.DirectorySecurity Dim rul As New Security.AccessControl.FileSystemAccessRule("Everyone", Security.AccessControl.FileSystemRights.FullControl, Security.AccessControl.AccessControlType.Allow) dirSecurity.AddAccessRule(rul) IO.Directory.CreateDirectory(dir, dirSecurity) Dim sharename As String = "ServerFolder" Dim cmdstring As String = "cmd /c net share """ & sharename & """=""" & dir & """" & " /unlimited" Shell(cmdstring)
-
Change text color when control is disabled vb.netIt's not possible to change forecolor when it is disabled. You can use ReadOnly property instead.