Search Result

Collapse
10 results in 0.0042 seconds.
Keywords
Members
Tags
win32
  •  

  • ramilol
    started a topic C++ directx picking is not working
    in C

    C++ directx picking is not working

    i got help writing my picking function... but it still doesn't work im not sure if it is because the my function or because of my mesh it is one of them. someone suggest me to draw the ray, i drew my rays it basically followed my cursor(mouse).
    here is my code

    Code:
        BOOL D3dDevice::Picking(HWND hWnd, LPDIRECT3DDEVICE9 d3ddev, CXFileEntity *entity, int z)
        {
        	D3DXVECTOR3 v;
        	D3DXMATRIX matProj;
    ...
    See more | Go to post

  • ramilol
    started a topic c++ win32 command line
    in C

    c++ win32 command line

    im using Process::start( "test.exe","tur e");
    it start a process called test.exe and send argument ture but on text.exe i don't know how to get the argument that have been sent,test.exe is win32 window. all i need help with how to get the ture in test.exe?
    See more | Go to post

  • How to get the Exe name of a process spawned through CreateProcess with cmd.exe?

    In an application that I currently writing I stumbled at a very annoying problem that i've been trying to solve for hours to no avail.
    I create a process using CreateProcess() Win32 API, passing NULL as the first arg, and the 2nd arg is in the form:

    TEXT("cmd.exe /c AppName Args..")

    That works pretty good, but then i want to find out the name of the exe that was started. The above syntax would make CreateProcess...
    See more | Go to post

  • Running a process in background and making a GUI

    I need to read a log file (real-time) and select only data that I need(filtering) and make a GUI to display the data.

    I am getting stuck at the point of being able to process both the log file and the perl script simultaneously. For instance, if I invoke the process(which runs infinitely, since its real-time) in the perl script, the perl script is temporarily suspended. I want the process to run in the background and the perl script...
    See more | Go to post

  • shockna1
    started a topic How to create a new win32 console application with C++
    in C

    How to create a new win32 console application with C++

    Im using Microsoft visual c++ 2008 and 2010 and neither of them will let me create a new win32 console application they will let me edit them but not make a new one. It used to work but evry time I try naw this thing pops up and says navigation to the webpage was canceled....
    See more | Go to post

  • pyhook won't instal due to missing msvcr71.dll reason

    The full message is "PMIDI-1.1.win32-py2.5exe System Error - The program can't start because MSVCR71.dll is missing from your computer. Try reinstalling the program to fix this problem".

    I have downloaded pyhook a couple of times and encountered the above. So I downloaded msvcr71.dll, but which directory should i put it? I have a newish windows 7 and have just downloaded python 2.6.5. but it is still saying msvcr71.dll is...
    See more | Go to post

  • Displaying progressbar using threading in win 32 applicaition!

    In my application I have a simple module were I will read files for some process that will take
    few seconds..so I thought of displaying a progress bar(using worker thread) while the files are in progress.I have created a thread (code shown below) and also I designed a dialog window with progress control.I used the function MyThreadFunctio n below to display the progressbar but it just shows only one time and disappears,I am not sure how to make...
    See more | Go to post

  • amitkgupta28
    started a topic Regarding Active Desktop
    in C

    Regarding Active Desktop

    Hello All,

    I am trying to make a win32 application which can capture user's desktop and set a web page instead of that. It will be very much like Active Desktop Page which can be accomplished through CDF (Channel Definition Files) files.

    Could you suggest any other method by which we can access user's desktop and set a web page in the background ?

    Thanks in advance.

    Regards,
    Amit
    See more | Go to post

  • Win32: Detect actual physical memory when /maxmem is present

    Hi, this is my first post here. I tried to read the Posting Guidelines but the page was blank. I'll try to use basic common sense, but please forgive (and inform) me if I commit an error in my post.

    My goal is to detect the total amount of physical memory in the system regardless of any value set via /maxmem in boot.ini. The principle behind this technique is that if maxmem is set in boot.ini, and the value it is set to is less than...
    See more | Go to post

  • How can I automate Winforms of .NET in VB6?

    I want to get the ControlName of .NET properties in VB6 code, just like described in this article. But unfortunately, it doesn't work for me. I always got 0 for bufferMem.
    Code:
            bufferMem = VirtualAllocEx(processHandle, 0, size, 
            MEM_RESERVE Or MEM_COMMIT, PAGE_READWRITE)
            If bufferMem = 0 Then
                Error Err, "VirtualAllocEx API Failed"
            End If
    What am I doing wr...
    See more | Go to post
Working...