enter key press event when type username and password .
i want to hit enter key press when type username and password .only one time hit enter.so how to do this. so give me suggestion.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Balakrishnan PPosted Dec 26, 2013, 4:39 AM
For one time Enter You can Have a Flag Variable such as ISValid = true, at first Enter change the value to ISValid = False. and check Condition in KeyDown Event as
If(ISValid)
{
//Then Do Action
}