Working DLL...

tonymgr

New member
Visual Studio .NET / VB.NET

Hello Everyone. Sorry it took me so long to respond. I will not be able to incorporate a working class because it required customization for the current project I am working on. However, if you download the code from this link it will allow you full functionality to talk to both the 631 or 633.

<a href = "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncodefun/html/code4fun12102003.asp">Click Here</a>

Just remember from the test program, you need to expand the constructor for Sub New and change the instantiation parameters for your unit...

If you are working with the 631 set the baud rate to 115200 otherwise it is 19200. Make sure you also specify the correct Com Port.

The Program catches the 631 keypress events. Listed below in this Thread are the Keycodes for the 633. Remember, this code is free. There is no charge for its use. If you have any questions, feel free to contact me via my website.

http://www.bonacosystems.myfileserver.com

Happy Coding!!!

// CFA-633 key codes returned

#define KEY_UP_PRESS 1
#define KEY_DOWN_PRESS 2
#define KEY_LEFT_PRESS 3
#define KEY_RIGHT_PRESS 4
#define KEY_ENTER_PRESS 5
#define KEY_CANCEL_PRESS 6

#define KEY_UP_RELEASE 7
#define KEY_DOWN_RELEASE 8
#define KEY_LEFT_RELEASE 9
#define KEY_RIGHT_RELEASE 10
#define KEY_ENTER_RELEASE 11
#define KEY_CANCEL_RELEASE 12

// CFA-631 key codes returned

#define KEY_UL_PRESS 13
#define KEY_UR_PRESS 14
#define KEY_LL_PRESS 15
#define KEY_LR_PRESS 16

#define KEY_UL_RELEASE 17
#define KEY_UR_RELEASE 18
#define KEY_LL_RELEASE 19
#define KEY_LR_RELEASE 20
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 
Last edited:
Top