209 Posted Topics
Re: If you fail to go for the hook, look into I can help you with 2 API functions: [CODE]ShowWinow(HWND, bool); //use false for 2nd arguement to hide GetAsyncKeyState(); //U'll have to AND it with the v_Key if(GetAsyncKeyState('A')&1) //Do somework [/CODE] But LLKBHooks are the best. | |
Re: [CODE=cpp] while(operationselection != "add" && operationselection != "sub" && operationselection == "div" && operationselection == "mult")[/CODE] This evaluates to : 1. String is Not Equal to Add [B]AND[/B] String is not Equal to Sub [B]AND [/B]String is Equal to Mult [B]AND [/B]String is Equal to Div The Loop shouldn't even … | |
Re: You have to declare key inside b.cpp [CODE] b.cpp #include "a.cpp" int main { extern uint32_t key; printf("Key: %.8x\n", key); ........ [/CODE] P.S. Always use Code Tags. | |
![]() | Re: Well done, I was thinking of myself to incorporate a formatting technique to use with my wrapper program for Alex's Syntax Highlighter. ![]() |
Re: float stores with 6 digits of precision. I recommend you go for double (15 digits) & try to output it like [CODE] double var=sqrt(static_cast<double>(2)); printf("%Lf2.15", var); [/CODE] | |
Re: The OP obviously has his misconceived notions about C++. ROFL! XD Thread should be closed. | |
I started out with RMS lately(well last hour only) and laid out methods for my class to use RMS for data persistency. The MIDlet works fine both in my S40 Nokia cell & the emulator(Sun Java) as long as the App is not closed. [U]Steps[/U] 1. I add record to … | |
Re: [CODE]class Node { public: //functions Elem *elem; private: Node(Elem *); }; //functions Elem *sentinel [/CODE] You just cant compare sentinel to elem under functions defined under class List elem is an Object defined in class NODE sentinel is defined under List. Node is Nested under List so under List you … |
The End.