Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
3k views

How to skip Validating after clicking on a Form's Cancel button

I use C#. I have a Windows Form with an edit box and a Cancel button. The edit box has code in validating event. The code is executed every time the edit box loses focus. When I click on the Cancel ...
5
votes
2answers
1k views

“OAuthException”,“message”:“Error validating application.”

up until 4 days ago this was working just fine, now I keep receiving an error when trying to post a youtube video on my friends (or even my own) wall. Reading user ids from list.txt and send them a ...
4
votes
1answer
3k views

DataGridView Validation & Changing Cell Value

I would like to manipulate a cell in my DataGridView when it is validating so that if the user enters a value that is not valid for the database, but is easily converted to valid data, the program ...
2
votes
2answers
64 views

Python validating web forms data

I am able to extract the form field data, but I am NOT able to Put a check / validate the information to see if The field is not empty. I am writing it in Apache+mod_wsgi, browser FF, Python 2.6, ...
2
votes
3answers
282 views

How do I display error text via Javascript?

I'm validating forms with Javascript, and I found out how to switch borders/backgrounds of input fields if there is an error, but I want to display text next to the box. How would I do that? Thanks! ...
2
votes
2answers
2k views

Prevent Validating/Validated event from firing in custom textbox - vb.net

I have a custom text box component (inherits from system.windows.forms.textbox) that I created in vb.net (2005) that handles the input of numeric data. It works well. I would like to suppress the ...
1
vote
1answer
98 views

In Winforms, why is validation not being fired after leaving TextBox and entering a DataGridView?

I'm overriding the OnValidating event in a custom Winforms text box. I'm finding that if the text box (which is bound to an object) has focus and then I give a grid focus using the mouse, the ...
1
vote
0answers
160 views

validation error - Google +1 button

I'm trying to remove the counter from the google +1 button, but am getting this result: there is no attribute "g:plusone:count" Here is the code: <div id="add" class="addthis_toolbox ...
1
vote
1answer
43 views

Referencing multiple IDs in an XML schema (XSD)

I was wondering whether it's possible to differentiate between ID fields in an XML schema. I'm having the following schema: <element name="define_apple"> <complexType> ...
1
vote
2answers
3k views

How can i check for character , number and special characters in a string?

I want to user to enter only numbers and characters in textbox i.e no special charaters. I don't want to use key press event of textbox. As i need same validation in gridview. So i want to validate ...
1
vote
1answer
359 views

c# Control.Validating event leaves mouse focus on other controls?

I have a c# .net 2.0 winForm with a textbox and a trackbar. The textbox Validating event sets e.cancel if the user clicks the trackbar and the validation fails. I am then left with the cursor in the ...
1
vote
0answers
400 views

validating event getting fired twice in maskedtextbox vb.net

I am facing a issue while using the "validating" event of the maskedtextbox. I have an MDI form, in which there is a main form and another form acting as bottom bar. The bottom bar comprises of ...
1
vote
1answer
1k views

Rails Validating Virtual Attributes

My model looks like this: class Item < ActiveRecord::Base has_many :locations validate :validate_item_location def item_location ...
0
votes
1answer
67 views

How do I validate that a listbox is not empty in C# winforms using an errorProvider

I have an errorProvider control. I would like to use it to validate if a listbox contains at least an element. Here's my code to register the validating event: this.selectedFieldsArea.Validating ...
0
votes
1answer
33 views

PHP, having trouble with sending the form to my email address… Please Help? [closed]

Here is the code for it. I used it on a previous website but it is now not working on the current website I have made. Could someone look at the code and get back to me please? Basically, I am ...
0
votes
2answers
43 views

validating 10 characters, can only be numbers, then redirecting to a web address

So what I need to have happen: User types in 10 digits (only digits) and clicks “Submit” On submit – the user gets redirected to another landing page. Here is what I’ve done…and its redirecting, but ...
0
votes
0answers
26 views

Xcode 4 crashing when I try to submit or validate my app in the organizer

I know barely anything about coding and application developing. So if you answer this, please use words that I can understand, please don't assume I know what you're talking about, chances are, I ...
0
votes
2answers
53 views

Validate HTML from user

How can I validate a HTML code submitted by the user? Looking for <script> tags is easy, but you can also embed JS in for example <div onclick="yyy"></div>. Are there any ready to ...
0
votes
0answers
43 views

Error validating access token message on my website link?

I am developing my website and attaching Facebook as a thread. Here is the site page: http://goldencrossclub.com/contatc-us.php This is the link I have on the webpage: ...
0
votes
2answers
186 views

How to show custom error message in ValidationSummary directly (without validator)?

Can I set custom message to the ValidationSummary control? I've got Delete button in the edit page. I want if the validation fail to set the error message in the validation summery to prevent putting ...
0
votes
1answer
137 views

Use one submit button to enter various pages in Javascript

I want to enter different rooms with on button. How is this possible in Javascript. For example, there are three rooms, "Kitchen, toilet and bedroom". How can I use JS to enter any of these rooms ...
0
votes
0answers
33 views

What's the best way to visual XML data in Silverlight?

My goal is to be able to display XML data and allow a user to edit it and validate it according to some XML Schema that I provide. The XML is from a file and can contain all sorts of information in ...
0
votes
1answer
385 views

Validating against multiple xml schemas with Xerces DOM parser

I was wondering if there was a way to validate against multiple xml schemes using Xerces DOM parser in c++? Here is the use-case: I want to be able to parse multiple xml files against its ...
0
votes
1answer
222 views

Validating event fired from other controls?

I have a CheckBox as part of a custom control on a form. I handle its Validating event to ensure that a maximum of 5 checkboxes have been ticked. If 5 have already been ticked, I cancel the event. ...
0
votes
3answers
183 views

Checking numbers input with Regex - C#

I've always been using Regex to check for user's input validity, ie checking for a correct mail adress, serial number, etc... Now I want to check that the user input is, let's say, a number contained ...
0
votes
2answers
403 views

Validating with errorProvider using dropdownlist in Windows Forms?

So basically I am trying to validate my drop down list (combobox) using the Validating event. This works, but calls the focus to my drop down list, not allowing a selection to be made. Is there any ...
0
votes
1answer
303 views

Validate decimal max/min values in a NSTextField

First of all i have to do this without IB and without advanced Objective-C techniques like KVO. My problem comes from the simple fact that i can't find a way to get the whole new string value of the ...
0
votes
1answer
494 views

How to validate a DataGridView Cell is not empty, when the user never enters the cell?

I just want to check and make sure that a cell has some data in it. My situation is I have 3 columns in a DataGridView. When someone adds a new record the rows are blank. The first column is a ...
0
votes
2answers
438 views

Rails validating full_name

Hey... how would you validate a full_name field (name surname).
0
votes
3answers
1k views

Error while validating HTML “document type does not allow element ”li“ here; missing one of ”ul“, ”ol“, ”menu“, ”dir“ start-tag”

Hey! So I'm trying to code something on wordpress for the first time but the validator doesn't seem to like me. Look at the error I got while validating: Line 87, Column 33: document type does not ...
0
votes
1answer
278 views

validating xml file with dtd using jsp

Is there any way to validate an XML file with its DTD, using a JSP in Eclipse? If so, how can we do it?
0
votes
2answers
783 views

Validating Event Results in Loss of Button Click Event in Winforms

Background: I have a form with a "clear form" and a "cancel" button. If I have invalid data inside a dropdown and click either of these buttons the dropdown's validating event fires. I've added code ...