Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by itsmetomc

  1. itsmetomc

    serial input displays chinese character

    changed the functions ReadBuffer (wchar_t *str, HANDLE hCom) to ReadBuffer (char *str, HANDLE hCom) earlier I was having problems and i changed everything to wchar in an effort to solve the problems. all the documentation I read was telling me I had to change all my code to be unicode...
  2. itsmetomc

    serial input displays chinese character

    this is my recieving function int ReadBuffer (wchar_t *str, HANDLE hCom) { int ReceiveInterval=1; unsigned long AvailableBytes; unsigned long ReadBytes = 0; Sleep(ReceiveInterval); AvailableBytes=GetInQue (hCom); if(AvailableBytes > 0) { if (ReadFile(hCom, str...
  3. itsmetomc

    serial input displays chinese character

    hello every one I used to visit the tek tips forum regularly but got distracted for a while. I have since picked up were i left off. I very quickly discovered that my builder software would not work on windows 7 so I went to the builder site to look for a compatible upgrade. I have the trial...

Part and Inventory Search

Back
Top