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

Search:

Type: Posts; User: luftwaffe

Page 1 of 19 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    3
    Views
    1,916

    Re: Do not receive focus events in console

    Hmm, I was hoping that no threads will be needed - basically I would like to print something on timeout and something else on keypressed.

    You might be right and the idea is probably difficult...
  2. Replies
    3
    Views
    1,916

    Do not receive focus events in console

    Hi There,

    I thought this must have been asked many times. I use something like:


    static HANDLE stdinHandle = GetStdHandle(STD_INPUT_HANDLE);

    const DWORD consoleInputCommandMode =...
  3. Replies
    0
    Views
    5,237

    usb keyboard/mouse simulator

    I would like to write a little program what can be compiled either on linux or windows to simulate usb keyboard and mouse. I would like to send those actions to multiple computers at the same time...
  4. scep PKIOperation decode and response encode

    Hi There,

    I am looking for preferably a C/C++ implementation example what can do SCEP PKIOpration decoding (with ssl library or calling openssl externally) and what then can create the answer to...
  5. running on and capturing from mobile devices

    I was asked to solve the following puzzle: we have a number of ios and android devices. I need to connect to them, run some apps and capture voices and movie video of the output. What is the best and...
  6. Replies
    7
    Views
    1,704

    Re: Which application started another

    No. As a matter of fact, it was started somehow. I would like to know how or by whom. It does not sound like a big trick, or do programs just appear and disappear out of the blue? I don't think so.
  7. Replies
    7
    Views
    1,704

    Re: Which application started another

    That works as long as the parent process is known and existing. Now imagine sysinternals showing "Not found" where the parent should be. What to do then?
  8. Replies
    7
    Views
    1,704

    Which application started another

    Is there any way to instruct Windows 7 to log what process/application starts another process/application? I guess there is just I don't know how to do it :)

    Ideas please :wave:
  9. Replies
    1
    Views
    1,586

    PHP Saving video stream in chunks

    I have an IP Camera where stream is available as http://user:password@192.168.0.22:81/videostream.asf .

    I have some linux servers and all I would like to get done is to save this stream into...
  10. Replies
    0
    Views
    2,409

    PHP Crawler saving cookies

    Hi There,

    I am looking for a piece of existing php code what crawls a website using relative and absolute links to a depth (actually I found one what works). The trick is that I would like to get...
  11. Replies
    1
    Views
    3,189

    Printer driver... or what? :)

    My boss asked me to write a program for Windows what is used for customizing printing. It should be listed as a printer in the Print screen/General tab. Is it really a driver what I need to do that?...
  12. Replies
    1
    Views
    2,136

    xHTML HTML5 WYSIWYG editor

    I am looking for a HTML5 editor what can be used to create layouts by dragging elements together.

    It should generate the page layout with a number of <div> sections with class="" or id="" applied...
  13. Replies
    2
    Views
    1,468

    JavaScript Javascript to html in command line

    I am looking for a command line tool what can be used to run javascript code in html and generate a html file without javascript.

    Looking into Google V8 and Mozzila SpiderMonkey, those are good...
  14. PHP Re: php DOMDocument load / loadXML when attributes contain end of line characters

    I looked for this for a bit of time and just found after asking the question:
    $Data = str_replace("\n", "xx", $Data);
    xx = <amp heshmark one zero semicolon>

    in case if others stumble into the...
  15. PHP [RESOLVED] php DOMDocument load / loadXML when attributes contain end of line characters

    I try to load the following XML node into a DOMDocument:


    <test value="1\n2\n3\n4\n5">test</test>


    It is a big sorrow that DOMDocument::load() and DOMDocument::loadXML() of both replaces \n...
  16. Replies
    3
    Views
    1,552

    Re: java compile, directory confusion

    Solved: javac requires -cp too.
  17. Replies
    3
    Views
    1,552

    Re: java compile, directory confusion

    Thanks for the reply, at least there is some change:


    C:\MyProject\proj1.java>java -cp C:\MyProject\proj1.java\_classes Api\Test\Test
    Exception in thread "main" java.lang.NoClassDefFoundError:...
  18. Replies
    3
    Views
    1,552

    java compile, directory confusion

    I think the answer to my question must be an obvious one and shorter than even the question :) I am a C++ programmer struggling with the first java program for a day or so. There is some code I...
  19. Replies
    2
    Views
    818

    PHP Re: multi-hash in php

    Good idea, thanks
  20. Replies
    2
    Views
    818

    PHP multi-hash in php

    I try to convert some code from C++/Qt to php.

    There is something like:


    QMultiHash<int, QString> Var;


    It means that there can be many values associated to the same key, and at the same...
  21. Re: Must be an easy one - percentage sign in windows command line

    Great, it does
  22. Must be an easy one - percentage sign in windows command line

    I would like to pass the string "%24x" (without double quotes) to my application as a command line argument (usually referred as argv. I cannot on Windows7.

    I tried the following:
    > app.exe %24x...
  23. Re: Memory leak detection tool with Windows7 64 bit Visual Studio

    Thank you, I will give it a try.
  24. Re: Memory leak detection tool with Windows7 64 bit Visual Studio

    That requires code modification, and that is exactly what I would like to avoid. The code is based on Qt and there is no chance to replace all allocation calls with microsoft specific stuff. Also,...
  25. Re: Memory leak detection tool with Windows7 64 bit Visual Studio

    Continuing reading on Isure++, I found: http://www.parasoft.com/jsp/products/insure.jsp?itemId=63

    They support up to VS 2008.

    Might it be possible that there are no supported memory leak...
Results 1 to 25 of 454
Page 1 of 19 1 2 3 4





Click Here to Expand Forum to Full Width

Featured