Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

raj1576

@raj1576
About
Posts
64
Topics
32
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to add button on listcontrol instead of scrollbar
    R raj1576

    i want to use button instead of scrollbar on listcontrol

    C / C++ / MFC tutorial

  • how to fastforward in directshow
    R raj1576

    how to play file fastforward in directshow

    C / C++ / MFC tutorial

  • how to play file in file frame rate using directshow
    R raj1576

    how to play file in file frame rate using directshow

    C / C++ / MFC tutorial

  • how to set the width of scrollbar in listbox
    R raj1576

    i want to change the width of verticalscrollbar of list box using mfc

    C / C++ / MFC c++ tutorial

  • how to hide the vertical scrollbar of listbox
    R raj1576

    There is a requirement to hide the vertical scrollbar of listbox .

    C / C++ / MFC tutorial

  • how to hide the vertical scrollbar of listbox
    R raj1576

    There is a requirement to hide the vertical scrollbar of listbox when items exceed the display area. There is no option to hide vertical scrollbar but there is a option for to hide horizontal scroolbar.

    C / C++ / MFC tutorial

  • save dialog box problem using vb script
    R raj1576

    Hi all I am using vb script to open save dialog box in asp.net. This works fine in xp but it is not working in vista or windows 7 . I am using following code to execute the script Sub savedialog() set objDialog = CreateObject("SAFRCFileDlg.FileSave") objDialog.FileName = "C:\Scripts\Script1.vbs" objDialog.FileType = "VBScript Script" intReturn = objDialog.OpenFileSaveDlg if intReturn Then Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.CreateTextFile(objDialog.FileName) objFile.WriteLine Date objFile.Close else Wscript.Quit End if End Sub How i run it in windows vista or seven .

    ASP.NET csharp asp-net tools help

  • Resizing the windows media player activex problem
    R raj1576

    Hi All, I am using windows media player activex control using c++ builder. It is working fine to play the url but when I adjust the height and width from the code this is adjust to the old position which i use onto the form. for example I adjust the activex player width 720 and height 576 now I adjust the player width and height from the code like WindowsMediaPlayer1->Width = 320; WindowsMediaPlayer1->Height =240; but it will resize to old width height. how i resolve this problem.

    Managed C++/CLI c++ com help tutorial

  • Release IGraphBuilder interface in directshow problem
    R raj1576

    I am creating an activex control using directshow in vc++ mfc. when I realese the interface IGraphBuilder then application is crashed in windows vista but in windows xp it works fine. why it is happened .

    C / C++ / MFC c++ com help announcement

  • CD DVD burning API
    R raj1576

    Hi all Is there any freeware API for multisession cd and dvd burning in windows xp,vista and windows7

    C / C++ / MFC json

  • DVD burning problem using windows XP Service pack2
    R raj1576

    It is not working on xp Service pack3 too.

    C / C++ / MFC json help

  • DVD burning problem using windows XP Service pack2
    R raj1576

    I have Installed IMapiv2 on my xp service pack2 after reading and downloading from http://support.microsoft.com/kb/KB932716\\ link. Still it is not working but IMapiv2 on vista capable of burning dvd. I have checked it.

    C / C++ / MFC json help

  • DVD burning problem using windows XP Service pack2
    R raj1576

    Hi All I am using CD/DVD burning program using windows api in windows service pack2.I am using ICDBurn Interface to burn CD/DVD . When I burn CD then it works ok but when I burn DVD then It did not work. In brief first I copied the file using SHGetSpecialFolderPathA() at the cd burn path then I use ICDBurn interface to burn the DVD. How i solve this problem.

    C / C++ / MFC json help

  • Make a callback in the mfc application
    R raj1576

    problem is that this callback function calls only ones.But I want to receive MM_WIM_DATA continuously.

    C / C++ / MFC c++ com help

  • Make a callback in the mfc application
    R raj1576

    Hi all I am making an activex control using vc++. I want to receive the message MM_WIM_DATA so that I try the callback function for this but this callback function calls only ones so please give me some help how i use this callback function. The source code I am using as follows Deceleration void CALLBACK waveInProc(HWAVEIN hwi, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2); class myclass : public COleControl { friend void CALLBACK waveInProc(HWAVEIN hwi, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2); }; definition void CALLBACK waveInProc(HWAVEIN hwi, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2) { switch(uMsg) { case MM_WIM_DATA: OutputDebugStringA("wavein proc.............................."); break; } }

    C / C++ / MFC c++ com help

  • Createprocess in vc++
    R raj1576

    Thanks Eugen for reply now its working

    C / C++ / MFC c++

  • Createprocess in vc++
    R raj1576

    hi all I am using copy command in createprocess() but this is not working I am writing following code but this is not working AnsiString cmdpath = "copy /b c:\\000.mp3+c:\\001.mp3 c:\\out.mp3"; PROCESS_INFORMATION pInfo; STARTUPINFOA sInfo; DWORD exitCode; memset (&sInfo, 0, sizeof(sInfo)); sInfo.cb = sizeof(sInfo); sInfo.cb = sizeof(STARTUPINFOA); sInfo.lpReserved = NULL; sInfo.lpReserved2 = NULL; sInfo.cbReserved2 = 0; sInfo.lpDesktop = NULL; sInfo.lpTitle = NULL; sInfo.dwFlags = 0; sInfo.dwX = 0; sInfo.dwY = 0; sInfo.dwFillAttribute = 0; sInfo.wShowWindow = SW_FORCEMINIMIZE ; ShowMessage(cmdpath); CreateProcessA(NULL, cmdpath.c_str(), NULL, NULL, FALSE,NULL, NULL, NULL, &sInfo, &pInfo); if(WaitForSingleObject(pInfo.hProcess,INFINITE)== WAIT_OBJECT_0) { ShowMessage("Success"); }

    C / C++ / MFC c++

  • Run copy command in the background using vc++
    R raj1576

    Thanks for reply can u explain how i use this copy command use in the shellexecute copy /b "firstfile.mp3"+"secondfile.mp3" "outputfile.mp3"

    C / C++ / MFC c++

  • Run copy command in the background using vc++
    R raj1576

    Now I tried this char cmdpath[MAX_PATH] ={0}; cmdpath = "copy /b firstfilepath+secondfilepath outfilepath " CreateProcessA("cmd.exe", cmdpath, NULL, NULL, FALSE,NULL DETACHED_PROCESS , NULL, NULL, &sInfo, &pInfo); but this is not joining the file

    C / C++ / MFC c++

  • Run copy command in the background using vc++
    R raj1576

    Thanks for reply I try system command Its working fine but the command window is show. I want also hide this command window. actually i am joining mp3 file so thats why i am using copy command.

    C / C++ / MFC c++
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups