Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

How to Change Controls?


Zzbrandon
 Share

Recommended Posts

Check Public Sub CheckInputKeys() client-side.

```

If GetKeyState(vbKeyControl) < 0 Then

```
[(List here.)](http://msdn.microsoft.com/en-us/library/0z084th3%28v=vs.80%29.aspx)

Also change:

```

If GetAsyncKeyState(VK_CONTROL) >= 0 Then ControlDown = False

```
[(List here.)](http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731%28v=vs.85%29.aspx)

Note that if it is a printable key (a, b, c, d, etc.), you'll have to implement a click-to-type system.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...