No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
title is self explanatory how do i convert it to a std::string? all this LP stuff makes my brain hurt...
hmm well i havnt done it in awhile but when i did i used this function [code]void setcolor(unsigned short color) { HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hCon,color); }[/code] if you loop through the colors like [code]for(int i =0i<=255;i++) { setcolor(i); cout << i; }[/code]
Hello, im not necessarily new to c++ but i cant seem to find a good way to get input from other devices other then the keyboard. To get keyboard input i have been using [ICODE]GetAsyncKeyState();[/ICODE] i was wondering if there was a similar function to get input from other input …
The End.