CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Burningmace

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    900

    Re: GetASyncKeyState

    Yeah...
    What exactly do you want to know?

    Also, what you're doing is illegal if used to read somebody elses emails, although I must admit I used to keylog my little brother's machine to steal his...
  2. Replies
    15
    Views
    70,155

    Re: Ctrl-alt-delete....

    But why?
    You can just run TaskMgr.exe or whatever.
    I think you misunderstood what I wrote above.
    Here's some pseudo code to explain what I mean:


    Get path of program that is ran when you press...
  3. Replies
    4
    Views
    780

    Re: MP3 file coding

    Sorry, should have been more specific...
    I can't use things like DirectX and WMP to edit the file.
    I can only use APIs like waveOutOpen and waveOutWrite to do it.
    In other words, I'm only allowed...
  4. Replies
    5
    Views
    838

    Re: MouseMove on every control

    Try this code:



    Private Declare Function GetCursorPos Lib "user32" Alias "GetCursorPos" (lpPoint As POINTAPI) As Long
    Private Type POINTAPI
    X As Long
    Y As Long
    End Type
    Const...
  5. Replies
    5
    Views
    761

    Re: Questions about file opening/editing

    Unfortunately, you can't directly read the file in binary (1's and 0's) as such.

    There's a really nice way to do simple encryption.

    You load the file in binary mode (so you can encrypt ANY...
  6. Replies
    4
    Views
    780

    Re: MP3 file coding

    I assume they want me to load a small WAV file into a byte array and process it.

    It doesn't have to be MP3 though, I just thought that would be easy as it is very common. After a bit of research,...
  7. Replies
    5
    Views
    1,014

    Re: AI programming

    lol, sounds complicated.
    I'll take a look at the links when I get back from college.

    Thanks so far...
  8. Replies
    5
    Views
    737

    Re: Window not visible

    woo!
    Glad you got it working.
  9. Replies
    15
    Views
    70,155

    Re: Ctrl-alt-delete....

    Holy **** that's extreme!
    Re-writing drivers and stuff it totally pointless!
    I just read on a site that you can actually get the program that Windows runs when it is sent the Ctrl-Alt-Del message...
  10. Re: BLOB file messes up when retrieved using VB

    Shouldn't make it unreadable....

    I think you're thinking of how when you edit a binary file in notepad it doesn't work, due to each character being converted to it's lowest possible ASCII value.
    ...
  11. Replies
    5
    Views
    1,014

    AI programming

    Hi,

    I'm trying to make an AI program like OliverBot (www.oliverbot.com).

    I've thought about parsing sentences into an array and identifying the nouns, adjectives, etc, then processing them.
    ...
  12. Replies
    4
    Views
    780

    MP3 file coding

    Hi,

    I have a project to do for college, and they want me to experiment with audio conversion.

    I'm not allowed to use any components to convert the WAV to MP3 automatically, I have to do it...
  13. Replies
    3
    Views
    797

    Re: how to put info in picture box

    But then you can't save the image, because it's seperate controls.
  14. Replies
    5
    Views
    737

    Re: Window not visible

    It seems you have moved the window off screen.
    Check any ini or options files in the program's directory for things like "WindowX" and "WindowY", sometimes programs store their last location like...
  15. Replies
    15
    Views
    70,155

    Re: Ctrl-alt-delete....

    What's the point of emulating the keys? Just shell run the program you want.
    For example, if you wanted to run Task Manager (default Ctrl-Alt-Del program in XP), you can just do the following:


    ...
  16. Re: BLOB file messes up when retrieved using VB

    Why don't you just open up the file as binary after your recieve it and delete the first two characters?



    Open FileName For Binary Access Read as #1
    Dim Data() as Byte, OutData() as Byte
    Get...
  17. Re: Taking a screenshot of an invisible form

    Just thought I'd give you some extra help on this one:

    If you want to keep it hidden all the time, you can use BitBlt to capture the form:



    Private Declare Function BitBlt Lib "gdi32" (ByVal...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured