Ensure That The User Can Only Click The Button?
Nov 25, 2011I need to ensure that the user can only click the button (to acknowledge the message) and not do anything else (like clicking another button). How can I do that?
View 2 RepliesI need to ensure that the user can only click the button (to acknowledge the message) and not do anything else (like clicking another button). How can I do that?
View 2 RepliesWhen I use the OpenFileDialog, I have to click on Open twice before the dialog closes. Is there any way to ensure that the user will only have to click "Open" once?
View 4 RepliesI have a vb.net application that uses Flash movies (AxShockwaveFlashObjects.AxShockwaveFlash). I have buttons in the flash movie. When they first start using the application, they can single click on the buttons in the flash movie and button responds accordingly. But after a while (and I haven't been able to pin-point an exact thing that changes it or my issue would be solved), the user has to double-click on the button in the flash movie for them to work.
View 2 RepliesI have a button on my form where I'm showing a ContextMenu when the user left clicks on it, I'm actually using MouseUp right now to show it.What I would like to have happen is the user click on the button, the button stays pressed while the ContextMenu shows, it returns to normal when the ContextMenu closes (Either a menu item was selected, the user hits the escape key or they click/tab to somewhere else). Also I'd like to position the ContextMenu in the lower left corner if the menu opens down or the top left corner if it opens up. So the left edge of the ContextMenu is flush with the left edge of the button.Moreso the button staying pressed until the ContextMenu is closed.
Edit: I'm also ok with this being it's own control inheriting the FW's Button that used the assigned ContextMenu as well.
I believe there wont be any diff if user clicks the button on the form and the click event is fired OR if we call the button click event / function in the code. Because in one my project, this does make diff. If I click the button on the form, the App works great but same button if I click it thru the form code, the whole process crashes. This happens in Vista / VB.net.
View 12 RepliesI am using tab control in my application, i need some info for using it as i want to display the tab when the user click the specific button
View 13 RepliesI have a simple form that works fine with a button click and the code generated by VB for Button1_Click event.But I want to make the user have to double click the button, So I just modified to: [code]This compiles but nothing happens when you double click.What am I not doing to get this to work?The problem is that if you click the button and the form is the focus, then if you hit the enter key it fires the event (when you didnt want to)
View 9 RepliesWhat is code that we can use if user click next button, it will point to other page, for example if use want to register than he click button register and user we point to register page. i am using visual studio 2005 and sql 2005.
View 2 RepliesI have a form with a drop down combo box and a list view. The user selects a date from the combo box and then they are to select an item from the list view. I want to ensure that the user has selected a date from the combo box before processing the information from the selection in the list view.
If cboYEARMONTH.SelectedItem = Nothing Then MessageBox.Show("Please Select a Year Month")
I have a web application build using classic ASP and VB. How do I print a document from within the back end VB code?
Protected Sub btnPrint_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPrint.Click
End Sub
What i am trying to do is get user to click on button a letter is generated and sent to printer?
I'm creating a CD that when inserted into a CD-Rom will AutoRun, which brings up the program starting with a splash screen, then the first window form. All this works, no problem. On the first window form I have a button (one of many) all buttons work (so far) except this one button. (I actually haven't test3d the buttonjs to see if they work on / from a CD yet, but they work in Debug).
I would like to have the user click the button, and have that button be tied to a zip file or an exe file that is in a folder on my CD, that will be downloaded to the user's computer. I would like the usual window to come up asking the user where the user would like to save the file, the user will choose the folder, click the save button and the file downloads from the CD to the hard drive of the user's computer, so the user can open it later. It doesn't have to Run from the CD, it is just to download to be accessed later.
Some files will be a Zip and others are Exe files that I would like to have downloaded to the user's PC by way of a button click. Of course the user's computer will need to be able to know which drive the CD is in.
This is what I've tried and doesn't seem to work...Have not tried it from directly from CD (Haven't tried anything directly from the CD as of yet, but after this problem my next step is try and make a AutoRun CD and test the program).
Process.Start(Application.StartupPath &
"SoftwareApp1.zip")
I'll start another post for How to Make my Program ready for a CD. I think it may involve Publishing...but publishing only made a setup.exe, which is Not what I want.
I am developing an application and one of the candys of the application is a form where data is extracted from XML from internet. I would like to know, if there is any possibility that, when user clicks button on my form, data is extracted from this XML file [Code]
View 1 RepliesI 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?
i have message box with two buttons yes and no.MessageBoxButtons.YesNo How can i set web Link in Messageboxbuttons yes button?When user click yes button then a link should open.
View 2 RepliesI have two user controls on the same page. One contains a ListView that displays navigation links, the second user control should be updated when user clicks on the buttonlink in the ListView.
View 1 Repliesi need to print my vb.net windows form when the user click a button. what is the method for this?
View 4 RepliesI have a Search form where the user can click a Button that opens up a rtb with every single word (12,800+) used in the King James Bible. Every word is Capitalized ("Thankful, Grateful", etc), so in my code, the user selects a word, then right-clicks and sends the word to the TextBoxSearch in lowercase. Now, if the RTBDisplay (where all search results go) is empty, then a msgbox pops up asking if the user would like to re-search the same word in Uppercase. If they click OK then the word in the TextBoxSearch (lets says: "thankful") is supposed to become "Thankful". But instead, the TextBoxSearch goes blank. I have tried many variations of code, and here is my latest (doesn't work):
If Me.RichTextBoxSearch.Text = "" Then
MsgBox("Would you like to search the same word but in Uppercase?", CType(1, MsgBoxStyle), "Re-Search?")
If CBool(MsgBoxResult.Ok) Then[code]....
I have a User Control that has been added to the page dynamically. When I click a button on that user control[cod]e...
View 2 RepliesSo basically i need to make a loop that only lets the user click it ten times then gives the answer to them.i was gonna use a DO loop that looks like this so far.
Dim counter as integer
counter = 0
Do until counter = 10
loop
and after that i'm kinda lost on what to do, i know that its needs to be if you click btnenter 10 times give the right answer and then your done.
I have a coding to let user select 2 files to import:
-------------------------------------------------------------------
Private Sub btn_Browse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdBrowse1.Click
On Error Resume Next
OpenFileDialog1.Filter = "Lis files|*.lis"
OpenFileDialog1.FilterIndex = 1
[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?
I have created a custom logonui.exe in VB.NET and I know how to make it replace the existing logonui.exe, but I am having trouble with the functions, such as shutdown, restart and log in. I don't need to get the list of users, because there is only one user account on the system and it is not password protected. I just need it to log in to the account when the user clicks a button and to be able to shutdown when the user clicks a different button.
View 15 RepliesI have a User Control. In this user control I have a Repeater. In this repeater I have again a User Control. If I try to catch the click event of an ImageButton in this user control, I'm gettin nothing because the event has not been fired. Is there a way to catch this event?
Some code:
first user control:
[CODE]..........
In myUserControl:
[CODE]..........
This event isn't firing:
[CODE]..............
Also the following does not work because it returns nothing:
[CODE]...................
I want my calculate button to automatically click 4-5 times upon the user clicking it once because it seems that it only works properly if it is clicked multiple times...
View 10 RepliesI need update the text of a textbox when I do click on a button on a user control.
How I can do that?
I need update the text of a textbox when I do click on a button on a user control.
View 1 Repliesi have a User Control.In this user control I have a Repeater.In this repeater I have again a User Control.If I try to catch the click event of an ImageButton in this user control, I'm gettin nothing because the event has not been fired.
View 5 RepliesI found that if you press F5 or refress from browser window, the last event fires again
example, I have clicked on a button, the button event is carried out normally, but if I refresh the page by pressing F5 key the same event is fired again.
I have a problem with a Save button on a toolbar firing the click event twice if the user double clicks the button as opposed to single clicking.Disabling the double click on the toolbar itself seems to make no difference as it is the actual save button that is being clicked twice.I have tried setting a Boolean to stop the event firing twice but it is just too quick!I didn't have this problem with my code before as the server call was not async... and reverting back is not really an option.
My code is as follows:
Protected Sub tlbOrdQuot_ButonClick(ByVal sender
As Object,
ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs)
Handles tlbOrdQuot.ButtonClick
[code]....
I have a GUI with a few button on it and each button start an application. I want to prevent the application to start twice if the user double click on the button. How can I do that?
View 7 RepliesCODE:
I need to take user input, validate to ensure there's no negative numbers and display monthly fee and check fee in a Label.....with a calculate button_Click