|
-
Oct 22nd, 2000, 07:09 AM
#1
Thread Starter
Addicted Member
how do i make a keypress function like with api ,ex
is it somthing like this
Public declara function keypress(keyascii as integer)
somthing like that
WHat would we do with out Microsoft.
A lot more.
-
Oct 22nd, 2000, 07:19 AM
#2
transcendental analytic
It's called events, and you don't use APi's to declare them, you use delcare them with Event:
Code:
Private WithEvents tb As TextBox
Public Event Keypress(KeyAscii As Integer)
Private Sub tb_KeyPress(KeyAscii As Integer)
'To raise the event use raiseevent
RaiseEvent Keypress(KeyAscii)
End Sub
This is an example how you can raise events with a class containing a textbox.
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Oct 22nd, 2000, 07:48 AM
#3
Thread Starter
Addicted Member
thanks man , sorry i havnt e-mailed you back
WHat would we do with out Microsoft.
A lot more.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|