Search:

Type: Posts; User: seec77

Page 1 of 13 1 2 3 4

Search: Search took 0.17 seconds.

  1. Replies
    3
    Views
    458

    Re: Creating ActiveX Controls at Run-Time

    Well, I was hoping to create an instance of an ActiveX control, sorry for the confusion. Well, this pretty much busts my enthusiasm... so how can I do it with MFC/ATL?
  2. Replies
    3
    Views
    458

    Creating ActiveX Controls at Run-Time

    Hello. Sorry if this question has been answered before on this website, but I could not find anything useful enough with the search function.
    I would like to have a very simple introduction to...
  3. Re: Can I assign a variables address? &X = &Y

    This task as you proposed it is impossible to accomplish, but the same thing can be done using a different method:


    int *i = new int;
    void *ptr = some_address;

    i = ptr;

    delete i;
  4. Replies
    1
    Views
    898

    Re: "Save picture As" for

    Using MSXML, figure out the URL/URI of the image, and download it using winsocks or that popular internet control by MicroSoft. That's one way to go about doing that...
  5. Replies
    0
    Views
    519

    [XML] Is this a good XML document?

    <?xml version="1.0" encoding="ISO-8859-1"?><asdf xmlns:edi='http://ecommerce.org/schema'><edi:blah xmlns:mnb='http://ecommerce.org/schema'>asdf<mnb:pop...
  6. Replies
    3
    Views
    649

    Re: C++ Interpreter!

    Thank you both for the very cool ideas.
    I think I'll code with AngelCode, even though it seems a bit too good to be true. My only complaint about AngelCode is that bit-wise operators can't be used...
  7. Thread: embed mp3

    by seec77
    Replies
    6
    Views
    730

    Re: embed mp3

    WAV are just pure sound files.
    MP3's are encoded and compressed, so normal Windows API can't handle them.
    There are many ActiveX Controls that have MP3 playing features... try for example the...
  8. Replies
    3
    Views
    649

    C++ Interpreter!

    Didn't know really where to open this thread, but I need some info that some of you guys might have.
    I need a C++ interpreter, to allow people to "script" for an application I'm creating. I don't...
  9. Replies
    9
    Views
    670

    It works for me and I'm on IE...

    It works for me and I'm on IE...
  10. Replies
    3
    Views
    557

    Ok, going to put those things to the test. Thank...

    Ok, going to put those things to the test.
    Thank you very much, once more!
  11. Replies
    9
    Views
    670

    Thanks man!

    Thanks man!
  12. Replies
    3
    Views
    557

    RichEdit Text Box Coloring

    I programtically found the HWND of a RichEdit text box in another program, and the HWND is valid.
    I'm trying to color a certain word from it, but it doesn't work.

    ...
  13. Replies
    9
    Views
    670

    Enumerating Windows Users

    How can I enumerate the users on WindowsXP?
    Is that even possible?
    Thanks in advance.
  14. Replies
    30
    Views
    1,818

    Manages windows (including dialogs, controls, and...

    Manages windows (including dialogs, controls, and the whole deal), threads, processes, and can subclass anything and list the messages it's getting!
    It's quite nice... :D
    Sorry for reviving the old...
  15. Replies
    4
    Views
    539

    You really are a great dude! Anyways, I'll post...

    You really are a great dude!
    Anyways, I'll post if I have results!
  16. Replies
    4
    Views
    539

    Thank you very much! Again! I think I'll have to...

    Thank you very much! Again!
    I think I'll have to do my own research from here on, unless someone else does it for me... :p
    Anyways... again... thank you very very much!
  17. Replies
    4
    Views
    539

    Enumerating exported functions in modules!

    Does anyone know how if I can list the procedures (functions) that a DLL exports?
    Sort of like Dependency Walker, where it lists all the procedures.
    Is that even possible through API, or do I have...
  18. Thank you very much! It worked! I downloaded...

    Thank you very much!
    It worked!
    I downloaded the latest PSDK (Platform Software Development Kit) from the MicroSoft web site and now my headers are up to date and I can use #define _WIN32_IE 0x0600...
  19. Specifically, shellapi.h (I think)... And I'm...

    Specifically, shellapi.h (I think)...
    And I'm using Visual Studio 6!
  20. Outdated headers... *RESOLVED thanks to CornedBee*

    I suspect my VC++ headers are outdated...
    Anyone know how I can update them?
    By the way, I tried looking these forums for the answer to my question, and found out about something called "PSDK", but...
  21. Replies
    19
    Views
    13,208

    well, if you don't wanna use it, your prob...

    well, if you don't wanna use it, your prob
    though it's really nice you know!
    your loss....
  22. Replies
    16
    Views
    1,328

    woops... my mistake, i don't see any way to do...

    woops... my mistake, i don't see any way to do it, though there must be one...
    ill check later, got to go
  23. Replies
    16
    Views
    1,328

    it is me unforunately... :rolleyes: code to...

    it is me unforunately... :rolleyes:
    code to check if cd in drive is audio cd coming right up....
  24. Replies
    2
    Views
    492

    *bump*

    *bump*
  25. Replies
    2
    Views
    492

    *bump*

    *bump*
  26. Replies
    2
    Views
    492

    weird problem *urgent*

    i want to use the sapi class "SpVoice", only without refrencing it through project -> refrences....
    meaning, i want to use the "SpVoice" class using CreateObject
    so i do something like this:

    Dim...
  27. Replies
    16
    Views
    1,328

    tsk tsk.... that is a dirty bad solution.......

    tsk tsk....
    that is a dirty bad solution....
    the api's that can enum the cd's, can also say if it is an audio cd, oyad, i can't believe you!
    ill try digging up an example tomorrow, right now im...
  28. Replies
    12
    Views
    982

    umm, do an about, and tell us what edition you're...

    umm, do an about, and tell us what edition you're using....
  29. Replies
    12
    Views
    982

    dude.... you're using learning edition, it...

    dude....
    you're using learning edition, it doesn't support compiles...
    get another edition....
  30. Replies
    12
    Views
    625

    i don't care, i like it like this... don't feel...

    i don't care, i like it like this...
    don't feel like messing around with it, thanks for all your help though....
    and btw, when i start a new form in vb, it uses a normal grey color, so yeah, this...
  31. Thread: Loading ActiveX

    by seec77
    Replies
    5
    Views
    510

    STUPID MS!

    STUPID MS!
  32. Replies
    12
    Views
    625

    sorry for being away, ok, ill post a screener......

    sorry for being away, ok, ill post a screener...
    this is the code i use:


    wincl.hbrBackground = (HBRUSH) (COLOR_BACKGROUND + 1);

    and here is the screenshot:...
  33. Replies
    10
    Views
    1,473

    i know it's the same.... only differnce is that...

    i know it's the same....
    only differnce is that the major compilers, like vc++ support visual things, and win automation....
    but what i was talking about was the mfc and other special libraries...
  34. Replies
    12
    Views
    625

    nope...

    nope...
  35. Replies
    10
    Views
    1,473

    and how can i use a normal button? im kinda new...

    and how can i use a normal button?
    im kinda new to win programming in dev-cpp so please help me!
  36. Replies
    10
    Views
    1,473

    hmmm, nice explanation again..... dammit all...

    hmmm, nice explanation again.....
    dammit all these things are so tough to do....
    i can't even put a command button on a window normally! not to talk bout creating a command button control... sheesh!
  37. Thread: Loading ActiveX

    by seec77
    Replies
    5
    Views
    510

    wow, this stuff is complicated...

    wow, this stuff is complicated...
  38. Thread: Loading ActiveX

    by seec77
    Replies
    5
    Views
    510

    i have one thing i can help you with:...

    i have one thing i can help you with:
    LoadModuleEx
    search http://msdn.microsoft.com/library/
    do a search for like "LoadModuleEx function"
    it'll have related functions and some examples!
  39. Replies
    10
    Views
    1,473

    nice answer cornbee =] anyway, wow, that sucks,...

    nice answer cornbee =]
    anyway, wow, that sucks, i don't even have a clue of what idl IS!
    sheesh, oh well, sticking to mfc for activex then, maybe when im better at c++ ...
    just think of the people...
  40. Replies
    12
    Views
    625

    weird, i tried all COLOR_* (almost) +1 and...

    weird, i tried all COLOR_* (almost) +1 and couldn't find anything that fits! annoying!
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width