|
-
Apr 22nd, 2002, 09:50 PM
#1
Thread Starter
Fanatic Member
Keyascii - For Pros
While trying to use the Keyasciis, I had a problem of interference with the Vbhelp function. Every time I typed a keyascii, it gives me an error and opens automatically Vbhelp. What can I do to stop this from happening?
Last edited by Alien_poo; Apr 22nd, 2002 at 09:56 PM.
"A RESPECTED scientist has put forward the stunning - if unsavoury - possibility that humans are descended from sewage dumped overboard by aliens."
"First we read that we are the creation of God, then scientists say we are descended from apes. Now they say we're some sort of alien poo. How much further can we sink?"
- Robert Matthews, Science Correspondent
-
Apr 22nd, 2002, 09:54 PM
#2
Frenzied Member
what do you mean use the keyasciis? Do you mean ALT-#### keyboard combos? please clarify.
You just proved that sig advertisements work.
-
Apr 22nd, 2002, 09:55 PM
#3
Thread Starter
Fanatic Member
No, each time I type keyascii in my code, I get an error and vbhelp comes up.
"A RESPECTED scientist has put forward the stunning - if unsavoury - possibility that humans are descended from sewage dumped overboard by aliens."
"First we read that we are the creation of God, then scientists say we are descended from apes. Now they say we're some sort of alien poo. How much further can we sink?"
- Robert Matthews, Science Correspondent
-
Apr 22nd, 2002, 09:58 PM
#4
Frenzied Member
Please provide an example.
Do you mean using the ascii constants? vbKeyA, vbKeyB, etc...?
You just proved that sig advertisements work.
-
Apr 22nd, 2002, 10:01 PM
#5
Thread Starter
Fanatic Member
VB Code:
Key_press(keyascii as...)
if keyascii = 112 then 'when I put a breakpoint, it brings vbhelp up HERE.
image1.top = 123
end sub
"A RESPECTED scientist has put forward the stunning - if unsavoury - possibility that humans are descended from sewage dumped overboard by aliens."
"First we read that we are the creation of God, then scientists say we are descended from apes. Now they say we're some sort of alien poo. How much further can we sink?"
- Robert Matthews, Science Correspondent
-
Apr 22nd, 2002, 11:15 PM
#6
PowerPoster
You have no end if for one thing...
VB Code:
Private Sub Command1_KeyPress(KeyAscii As Integer)
If KeyAscii = 112 Then 'when I put a breakpoint, it brings vbhelp up HERE.
Command1.Top = 123
End If
End Sub
-We have enough youth. How about a fountain of "Smart"?
-If you can read this, thank a teacher....and since it's in English, thank a soldier.

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
|