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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ben146

    Starting out in VC++

    #include <iostream>
  2. ben146

    calculating vector angles

    Hi all, my ? is.is there a better way to calculate vector angles than the code below?if u have a better way i would realy like to know.any help would be appreciated.take a look below. void VectorAngles( const float *forward, float *angles ) { float tmp, yaw, pitch; if (forward[1] == 0...
  3. ben146

    Word Count?

    #include <iostream> #include <string> using namespace std; int main() { // The string to be searched string text = &quot;Smith, where Jones had had \&quot;had had\&quot;, had had \&quot;had\&quot;.&quot; &quot; \&quot;Had had\&quot; had had the examiners' approval.&quot...
  4. ben146

    How to cout a string??

    oops forgot the token &quot;;&quot; after hello.
  5. ben146

    How to cout a string??

    #include <iostream> #include <string> using namespace std; int main() { string word = &quot;Hello!&quot; cout << endl << word << endl; cin.ignore();return 0; }
  6. ben146

    NEED help creating a dll.

    Thx for replying lazyme.i think what im going to try this morning is just to create a new win32 project then select an empty dll.then add the source files and header files(without the AFX_EXT_CLASS)also i think qednick is right about the missing .lib files.i went into the linker tab and the only...
  7. ben146

    NEED help creating a dll.

    LOL qednick..no i did not put in in as you wrote it.heres what i put:&quot;class AFX_EXT_CLASS Randomaiming&quot;.i did that where ever it called class in the header files.i just did like u said and added the AFX_EXT_CLASS.Im still working on this dll.i have 5 books the size of sears catalogs...
  8. ben146

    NEED help creating a dll.

    Thx qednick,i found the classes listed inside the header files and changed every instance to class AFX_EXT_CLASS SOMECLASSES.(Thiers 15 header files)now its giving me an error:unexpected end of file found.whe i compile them idavidualy.but when i select project new>win32>dll>empty project and add...
  9. ben146

    NEED help creating a dll.

    Thx for the quik reply guys,i appreciate it.i am a little confused qednick on the classes.im not sure what you mean.also so u know.the way these dll's work is they use a loader that u have to compile seperately to load the dll.then from what i gather they hook off of the main program counter...
  10. ben146

    NEED help creating a dll.

    Hi all,i am new to programming so bear with me.i want to create a dll for counter-strike.i am using microsoft visual c++ ver.7 . i have the source files and header files for the hook.also three folders that came with it marked engine,common,and misc,i take it these are the source file for the...
  11. ben146

    I need help creating a DLL.

    Hi all, I am new to programming,but the bug has bitten me hard.to give you some background.i love to play a game called counter-strike.in doing so i have come across guys making cheats for them that they use to play with in cheating servers.what i wanted to do is make my own.from what i...

Part and Inventory Search

Back
Top