Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
12answers
254 views

UI design so users will actually *read* disclaimer screen/text?

Client insists that users see disclaimer/legal/iAccept screen/text on their way into the web application. Same Client already perceives users as not reading that sort of text when presented with it. ...
3
votes
4answers
1k views

c# AcceptButton and validation

Hi I have a form which contains of several textboxes and two buttons Cancel and Ok. These buttons are assigned to accept and cancel buttons properties in form. The problem is that I have to validate ...
2
votes
4answers
2k views

.NET UserControl accept button best practice?

I have a windows forms app where I have split different functionality into several user controls. I want each of these user controls to have an accept button. Any best practices here? My idèa is to ...
2
votes
3answers
2k views

C# Validate before leaving accept_button event

Excuse me if this is a silly question but i'm a beginer here. I have a simply custom dialog with two buttons: Accept and Cancel. The Accept button is the acceptButton of the form. I want to do some ...
1
vote
1answer
253 views

AcceptsReturn equivalent for WebBrowser .NET control

I have a Windows .NET application and one of the forms has a WebBrowser control, an OK button and a Cancel button. The WebBrowser control hosts a TextArea html element, so I can write inside. If the ...
1
vote
2answers
2k views

Approve/Reject in email generated by SharePoint

When I make a meeting in Outlook, the recipient gets a approve/reject button in the top of the email. I'd like to do a similar thing with SharePoint: when a task is created, an email is sent to the ...
1
vote
2answers
812 views

Key Preview and Accept Button

Using winforms, I have set the KeyPreview property to true and have event handles for the proper key events within the base form as well. Within the forms that inherit from it, I set the ...
0
votes
1answer
46 views

How do i easily find the Accept button and the cancel button on a WPF View

I have my PRISM application set up on a MVP pattern and we display modal windows through custom RegionManager. The problem i face right now is when the users close the Modal Window using an Alt+F4! ...
0
votes
1answer
63 views

AcceptButton doesn't work in case there are TabControl on the form

In the following form, I want the AcceptButton to be OK button, but although I set the property to the Form that OK button is the accept button, the actual result is Test button. How to fix it?
0
votes
1answer
75 views

Setting AcceptButton to None still closes the form on ENTER

I have a MDI windows forms application and my child forms mostly have "OK" and "Cancel" buttons. However I do not want them to be activated with ENTER/ESC keys to prevent accidental saves/aborts. So, ...
0
votes
5answers
1k views

C#: Trouble with Form.AcceptButton

I have a form with an button which is set as the AcceptButton of the form. The form has several other controls. Now when I press Enter on other controls the form gets closed because of the accept ...
0
votes
3answers
366 views

Is the Windows Forms AcceptButton behavior in effect when the referenced button is disabled?

With the following: this.AcceptButton = this.OKButton; this.OKButton.Enabled = false; ... will the OK button click handler still be invoked when the user presses Enter?