Well after trying many many examples from the internet, I tried programming in visual basic 2008 since I have that as well. Even though I could not display anything properly, I created a sub that was called everytime there was input and when I pressed a button the event fired properly, so it sorta proves there's a connection of some kind at least... After looking through much code I do believe that my problem is the crc. Once calculated I have no idea what type of data it should be sent out to the display as. I believe that the connection is being made like I said, so I think what we need to do more so is look into how the crc should be sent. I was trying to send a clear screen command, since that seems to be just a tad simpler:
Win test says:
aC=6( 6 = Clear LCD),L=0,D="",CRC=0x5B97
therefore the command is 6, data is nothing but there still needs to be a line for the length 0 I believe then followed by the crc, so something like this:
"600x5B97"
However as stated this isn't correct since the crc isn't a string, but I just wrote that as an illustration more so.. What type is used to send data to the cfa 633, one byte at a time, a byte array all at once, string, integer, or whatever? I have to be certain on that first and then convert my 6 and 0 to whatever is needed followed by converting that crc to whatever is needed.
Sorry for any repeats but just decided to post where I am at in my mind for trial and error.