Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access_asp thread: Submit without submit button


Message #1 by "Samsul Arifin" <samsul@i...> on Tue, 20 Aug 2002 15:38:38 +0700
How can i submit data without the form submit button, example i want to submit data with only pressing
enter...

andra.

Message #2 by "Chetan Kelkar" <chetan@c...> on Tue, 20 Aug 2002 15:05:08 +0530
trap the ascii equivalent of enter key, it is 13 use that..

for eg

Private Sub pass_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
do what you want to do
end if

hope this helps


----- Original Message -----
From: "Samsul Arifin" <samsul@i...>
To: "Access ASP" <access_asp@p...>
Sent: Tuesday, August 20, 2002 2:08 PM
Subject: [access_asp] Submit without submit button


> How can i submit data without the form submit button, example i want to
submit data with only pressing enter...
>
> andra.
>
>
>


  Return to Index