209 Posted Topics

Member Avatar for i_luv_c++
Member Avatar for Kesarion

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.

Member Avatar for nbaztec
0
181
Member Avatar for pineapple23

[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 …

Member Avatar for amrith92
0
372
Member Avatar for sksingh73

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.

Member Avatar for nbaztec
0
97
Member Avatar for iamthwee

Well done, I was thinking of myself to incorporate a formatting technique to use with my wrapper program for Alex's Syntax Highlighter.

Member Avatar for iamthwee
3
238
Member Avatar for techie1991

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]

Member Avatar for nbaztec
0
173
Member Avatar for o.anhbayar

The OP obviously has his misconceived notions about C++. ROFL! XD Thread should be closed.

Member Avatar for nbaztec
-4
189
Member Avatar for nbaztec

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 …

Member Avatar for nbaztec
0
134
Member Avatar for Swiftle

[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 …

Member Avatar for Swiftle
0
90

The End.