Guest User - Disable Delete Button In Other Forms
Feb 10, 2009
I have a login screen (frmLoginScreen) which links to a main menu (frmMainMenu) then to another form (frmUserDetails). Their are two possible usernames. The first one the user logs in as Admin and the password is 4321, then the second one is Guest and no password. This is the code I have so far:
Dim G As New frmUserDetails
If txtUsername.Text = "Guest" Then
G.btnDelete.Enabled = False
End If
There are no errors.
View 22 Replies
ADVERTISEMENT
Nov 27, 2009
How to know that if the current user is an administrator or normal user or guest?
And how to make the exe can just only run in administrator?
I have tried to set the .manifest to "<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />", but no use. Although I am not logged in as admin, I can still run the exe.
View 1 Replies
Feb 20, 2012
When user retrieve voucher from database to edit on it and this voucher opened by another user .i need this voucher to be read only by disable delete button.
View 1 Replies
Jul 23, 2009
I crated a VB.NET program to write some data to registry. Its working proprely the user loged on Administrator user. But its not working when loged on guest user. Its shows error like
View 4 Replies
Jun 3, 2009
I want to disable the webbrowser for the user, so the user wont be able to click anything (links on site and stuff) but I can still navigate the webbrowser through code.
View 2 Replies
Apr 16, 2010
Is there a way to prevent the Enter key from being interpreted as a button click.
I am trapping key strokes at the form level but if a button has the focus and the ENTER key is pressed I cannot trap the enter because the button consumes it as a button click event. I am also unable to trap the enter key in any of the button's key events.
I am interfacing with magtripe swipe and barcode readers that send their information as keystrokes with a CRLF at the end. I have a work around by chaning the focus to a textbox anytime keystrokes are detected but I am hoping for better control.
Is there a way to disable the buttons ability to do this?
View 1 Replies
Feb 23, 2009
i have uploaded 3 pics shows 3 diff forms.
1. BaseForm.( Includes 2 button, Buttons Text "Form1" and "Form2")
2. Form1. (Just inherited BaseForm)
3. Form2. (Just inherited BaseForm)
If the Button Form1 clicked then it shows Form1 disable Form1 button. and Hide BaseForm. same action for Button Form1.
When I click the Right Top Cross button then the Background BaseForm Still running. I want to close all form If I click cross.
View 6 Replies
Feb 26, 2012
Is there an easy way to disable all form validation when the user clicks on the "X" icon to close an application or when the user clicks on a button in the application that closes the application?[url]...
View 1 Replies
Nov 16, 2009
How would I enable/disable a button if listbox become populated?
View 1 Replies
Apr 16, 2009
I am creating a little form that shows files (on my computer) in a listbox and well i am wanting to be able to click on one of these files in the listbox and hit the delete button and delete it off the listbox and off my computer how can i do this?
View 3 Replies
Jun 19, 2009
I want to allow the user to enable or disable a textbox by clicking either a button (enable) or the reverse. (disable) if the user clicks the enable button the textbox should receive the focus.
View 4 Replies
May 16, 2009
to disable right click and to disable the start button and task bar?
View 4 Replies
Sep 3, 2009
I am trying to close my application and I have coded on the form closing, form closed events to call an exit form which asks the user for confirmation to exit or not. All works fine. When I press the X button on the winform things act different. On the main form where I press the X btn I store some user ID data that I use throughout the app. If I press cancel on the exit form that data is lost from the main form and cannot be used afterwards. So if the user pressed by mistake the X btn and then presses cancel on the exit form the application loses some stored data and many functions stop working.
View 12 Replies
Feb 17, 2009
I have a coding to let user select 2 files to import:
[Code]...
But if user click cancel button at Browse2 button, the system will paste the value from Browse 1 to Browse 2 text box. How to do nothing if user click cancel button at OpenFileDialog?
View 6 Replies
Jul 16, 2009
I have a datagrid being filled by the data adapater connected to my database.I have a delete button on the form, i cant figure out how to delete the selected row on the datagrid when the delete button is clicked.
View 1 Replies
Jul 13, 2004
I'm creating a simple form that could capture keystrokes. How can i capture CTRL-ALT-DELETE key when pressed together so as not to go to the task manager, in short I want to disable any function when the three keys is pressed. I tried to use the keydown event , detecting the three keys when pressed then set e.handled = true, but still it wont work
View 2 Replies
May 26, 2009
This is a simple question, I am VB beginner. I was just wondering how I can disable the Delete Key on a form. Its simple question. I just want it completely disabled, preferably when the form is loaded.
View 4 Replies
Aug 6, 2007
how would you stop someone using the alt key, like alt+F4, alt+ctrl+delete OR alt+tab
View 11 Replies
Jun 6, 2011
I created a Security Log On that starts when i turn the computer On.Like the Windows Log On.
I managed to disable alt+F4, alt+tab, window key, ctrl+esc, but i have only one problem disabling the task manager or the CTRl+Alt+Delete Button, is there a way or any codes to disable this? im using VB.net 2005.
View 7 Replies
Mar 17, 2009
if someone could help about my Guest Reservation SystemI not intending anyone to do it for me,just need some advice want to know what is better or what should I do to make the project better.
View 3 Replies
Mar 15, 2012
someone give an idea or guide to do this: i have two forms. First form is used to ask from, to, departure time and how many people we want to book for. Second form is used to ask for each person that we book what is their name, age, title, phone number. i planned to use a loop to loop form 2 to ask for their info. However i woner how we can do this?? can a form be an array to loop??
View 1 Replies
Feb 5, 2011
i want to excute this command in a guest account
Shell("net user new2 /ADD")
This needs administrator privelages
View 2 Replies
Oct 28, 2010
What I have so far is a program that moves the mouse around my application. I used a bit a maths as well to make the movement smooth. Here's my code for anyone who is interested:
Code:
Public Sub MoveMouseCursor(ByVal DestinationX, ByVal DestinationY)
Dim DifferenceX As Integer = MousePosition.X - DestinationX
Dim DifferenceY As Integer = MousePosition.Y - DestinationY
[Code].....
Now with my problem. When the program is running, the last thing I want is for the user to be moving the mouse because the program would get disrupted. How can I enable and disable the use of the mouse for the users benefits really because if they even knock the mouse slightly it could cause them a few difficulties. Anyway, I am hardly restricting them from using their computer because there is only one mouse. If they want my program to run, then they will have to except the fact that they can't do something else in the mean time. Also, after the program has finished running, I will need to enable the mouse again.
View 8 Replies
Aug 4, 2009
I have a button called "btnContinue". then, i have a textbox beside it for the user to enter a name. If the user has not entered anything, i want the button to be disabled from being clicked. But once the user entered a character into the textbox, the btnContinue will be enabled for clicking.
View 8 Replies
Jul 4, 2011
I have developed a Windows application using C# 4 and SQL Server 2008,
My application works very well.This application is using by six users at the same time.
I want that, whoever click button first from these six users, the button on other 5 user's PC must be disable till the user finishes adding data.. then it must be enabled...
something..
btn.disable = true;
data saved
btn.disable = false;
so, it cant be duplicated..
View 1 Replies
Jun 6, 2011
How do i disable user from goto desktop and when they press Control+Alt+Del it must prompt with admin username/Password.Is it possible to do....i have created a login page but i have no idea on how to make it prompt when user press Control+Alt+Del
View 3 Replies
May 24, 2011
In visual basic how can I make the user's cursor not visible and the keyboard input not "enabled"?
View 1 Replies
Jan 6, 2012
I want that my application will have a splash screen - thats easy. The problem is that I want to give the user the ability to disable the splash screen if he wants. If I set this in the application splash screen settings then there is a splash screen,but there is no way the user can disable it. If I do it without a real splash screen - with a timer that closes the form and opens the real main window - the application closes itself because of the setting "Shutdown application: When startup form closes".I just can't choose the second setting (when last window closes).
View 3 Replies
Jan 23, 2012
I have a vb.net based windows application, where when "GO" button is clicked a bunch of data is loaded into DB. So in my application as soon as "GO" button is clicked I want to just disable it and would like to enable it back when the uploading has completed.Now in my specific method for btnGo_Click() I have:
btnGo.Enabled = False
as first line and
btnGo.Enabled = True
[code]....
View 4 Replies
Jun 6, 2011
How can i disable a button after i click it and shows another form, and enable it after i close the form that was opened.
View 3 Replies