okay so i need the program to type a period " . " and thats about it... lol yeah i just dont know the code for it? if anyone can help thatd be great.

Code:
	      keybd_event(0x39, NULL, KEYEVENTF_EXTENDEDKEY, NULL);    // Key down
       keybd_event(0x39, NULL, KEYEVENTF_KEYUP, NULL);          // Key up


to...


	      keybd_event(PERIOD, NULL, KEYEVENTF_EXTENDEDKEY, NULL);    // Key down
       keybd_event(PERIOD, NULL, KEYEVENTF_KEYUP, NULL);          // Key up