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

Search:

Type: Posts; User: mmc01

Search: Search took 0.05 seconds.

  1. How to check end of playlist of VLC or Windows Media Player ih C#

    I play mp3 with VLC and Windows Media Player playlist . But I cannot check when the playlist end. This is my code.


    First I check status field in DB, if have any row status = false Then read row...
  2. Can I create web browser in C# for run OneClick ?

    I was create simple Web Browser in C# . when I run OneClick in this web browser it show error Cannot Start Application and detail of error like this. Can I create web browser in C# for run OneClick ?
  3. Replies
    4
    Views
    20,541

    How set font style for button in MFC ?

    I want to set font size and font color for button in MFC. But MFC differrent from win32. It have no font style in property. please help me , How set font color and font size for button in MFC ?
  4. Replies
    2
    Views
    23,495

    How to read and write on serial port with MFC ?

    I want to read and write value on serail port to Microcontroller with MFC. The MFC have no serial port tool like in VB Professionnal edition. I try to find MFC connect serial port example but I not...
  5. How to sendmassage to select check box with VC ?

    I want to sendmassege to click select check box. I can click buttton but I don't know how to select check box with VC.
  6. Replies
    3
    Views
    7,384

    Re: I can't use FindWindowEx() to find control.

    I use Spy++ with button in Microsoft Security Essential it show like this



    I use FindWindowEx() like this cb = FindWindowEx(w,NULL,NULL,_T("&Scan now")); but it not found Control.
  7. Replies
    3
    Views
    7,384

    I can't use FindWindowEx() to find control.

    I want to open Microsoft Security Essential program and click Scan now button with VC . I can find window but Can't find control. This is my code when I run this code it show Control not found . I...
  8. Replies
    3
    Views
    6,399

    Re: How to check thread with MFC ?

    C:\>"c:\users\pkru\documents\visual studio 2010\Projects\CleanVirus\Debug\CleanVirus.exe"

    is my project name in VC which FindWindow() read title from



    And the code unhidden.bat is
  9. Replies
    3
    Views
    6,399

    How to check thread with MFC ?

    I use MFC Find console window and send key to console like this.


    HWND w;

    w = FindWindow(NULL, L"c:\\users\\pkru\\documents\\visual studio 2010\\Projects\\CleanVirus\\Debug\\CleanVirus.exe");...
  10. Re: How to read sentence from Command line with MFC?

    Thank you for answer. I use this code in VC

    int _tmain()
    {
    system("D:");
    _tprintf(GetCommandLine());

    getch();
    return 0;
    }
  11. How to read sentence from Command line with MFC?

    I want to read sentence from command line. I open some program which run in command line and I have to wait for that program process. So , I don't know when process success .I can't type next command...
  12. Replies
    4
    Views
    5,577

    Re: How to use 2 command in sytem() function ?

    How to use CreateProcess . I read example and try to use the function like this


    DWORD WINAPI hidden_file(LPVOID lp)
    {
    STARTUPINFO si;
    PROCESS_INFORMATION pi;

    ZeroMemory( &si,...
  13. Replies
    4
    Views
    5,577

    How to use 2 command in sytem() function ?

    I want to run Unhidden.exe in drive N: and send char to that program. I use function like this
    system("N:/Unhidden.exe"); it can open Unhidden.exe but it run in visual studio 2010\Projects\ . I...
  14. Replies
    2
    Views
    6,788

    Re: How to use WriteConsoleInput() in MFC?

    Thank you . :p
  15. Replies
    2
    Views
    6,788

    How to use WriteConsoleInput() in MFC?

    I can use WriteConsoleInput() in console application. But when I try to use writeConsoleInput() in MFC it not type any thing in command window. This's my code.


    DWORD WINAPI test(LPVOID lp)
    {
    ...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured