Search:

Type: Posts; User: fl00d

Search: Search took 0.00 seconds.

  1. Thread: Word Unscrambler

    by fl00d
    Replies
    3
    Views
    2,018

    Okay so I added these two lines: ...

    Okay so I added these two lines:


    getline(wordlist,current_str);
    getline(encrypted,encrypt_str);

    log << "wordlist: " << current_str << " Length:" <<...
  2. Thread: Word Unscrambler

    by fl00d
    Replies
    3
    Views
    2,018

    Word Unscrambler

    Hey folks, I've been working on this project for quite some time today, prolly around like 3 hours and it should be such a simple task!
    Basically it reads a wordlist (wordlist.txt) and a scrambled...
  3. Thread: Word Unscrambler

    by fl00d
    Replies
    1
    Views
    3,140

    Word Unscrambler

    Hello, I am new to C++ and programming in general and am having a problem with a word unscrambler I'm trying to code. I have two txt files, words.txt and wordlist.txt that contain the scrambled words...
  4. Replies
    13
    Views
    1,734

    okay thanks guys!

    okay thanks guys!
  5. Replies
    8
    Views
    1,320

    Hey, I reorganized everything, hoping it was a...

    Hey, I reorganized everything, hoping it was a stupid error. Unfortunately it's not, but I'm gonna upload the code if u guys wanna check it out. but now it's really organized and pretty :)
    ...
  6. Replies
    8
    Views
    1,320

    yeah positive. Here's a code snippet of my...

    yeah positive. Here's a code snippet of my program:
    begin.cpp

    #include "defs.h"

    int begin()
    {
    doSomething(); //bp set
    } //this calls all of my functions in defs.h
  7. Replies
    8
    Views
    1,320

    yeah, and when I set a breakpoint on it it stops...

    yeah, and when I set a breakpoint on it it stops there, i just want to be able to step in it and see what's going on each step.
  8. Replies
    8
    Views
    1,320

    Debugging into functions

    I've just successfully set up my debug enviroment and everything seems to work fine, except that I can't step into functions or set breakpoints inside functions called in another #included file. For...
  9. Replies
    13
    Views
    1,734

    Yeah unfortunately the person who did it only...

    Yeah unfortunately the person who did it only uses assembly lol. Here's what's in the .def file:

    LIBRARY hookHop
    EXPORTS CursorPosTolParam
    EXPORTS hhPostMessageA

    he did release the source....
  10. Replies
    13
    Views
    1,734

    The library was coded in asm. Someone told me the...

    The library was coded in asm. Someone told me the extern C isn't necessary. Is that right? Do i need to include anything else? I wish I was home so i could try all this right now xD
  11. Replies
    13
    Views
    1,734

    I do have those functions in a .def file(not my...

    I do have those functions in a .def file(not my dll), so when I get home i'm gonna search google and see how to import from a .def file and try changing my solution properties instead of my project...
  12. Replies
    13
    Views
    1,734

    I tried that and it didn't work. My lib file is...

    I tried that and it didn't work. My lib file is referenced with #pragma and is in my current directory. This is so frustrating >.<
  13. Replies
    13
    Views
    1,734

    Umm I'm not 100% familiar with VC++ GUI, but I...

    Umm I'm not 100&#37; familiar with VC++ GUI, but I added it Tools->Options->Projects and Solutions->and added the folder that contains the lib, but it still didn't work.
  14. Replies
    13
    Views
    1,734

    Importing dll functions

    I'm trying to import a function exported by a dll. So far:



    #pragma comment(lib, "hookHop.lib")

    extern "C" void hhPostMessageA(HWND Hwn, UINT Msg, WPARAM WParam, LPARAM LParam);
    extern...
  15. Replies
    11
    Views
    1,449

    wrong syntax for a for statement. ex: ...

    wrong syntax for a for statement.
    ex:


    for(int a=0;a<=num;a++)
    {
    }
  16. Replies
    11
    Views
    1,449

    Well if it's going to output BOTH the smallest...

    Well if it's going to output BOTH the smallest and biggest, you'll probably need 2 temp variables. And yeah that method could work.
  17. Replies
    1
    Views
    1,223

    Awesome find! Something to fill my ipod up with...

    Awesome find! Something to fill my ipod up with xD. If you find any others (specifically more advanced lectures) lemme know! The c++0x is pretty interesting...
  18. Replies
    3
    Views
    860

    Yeah right click the folder on the left pane...

    Yeah right click the folder on the left pane labeled "Source Files" -> New File. Then you can select which type of file you want to add to your project.
  19. Replies
    2
    Views
    4,342

    That works too! I'm new to bit manipulation so I...

    That works too! I'm new to bit manipulation so I thought everything had to be or'ed to be set. that's why my macro or's the mask. But unfortunately it still crashes, so I'm guessing it's still the...
  20. Replies
    2
    Views
    4,342

    PostMessage LPARAM trouble

    I am trying to send a keystroke to another window via PostMessage. I can successfully run WM_KEYDOWN without my program crashing, but the other 3 messages fail.

    As of now I'm sending 'a' to the...
Results 1 to 20 of 20