i want to use button instead of scrollbar on listcontrol
raj1576
Posts
-
how to add button on listcontrol instead of scrollbar -
how to fastforward in directshowhow to play file fastforward in directshow
-
how to play file in file frame rate using directshowhow to play file in file frame rate using directshow
-
how to set the width of scrollbar in listboxi want to change the width of verticalscrollbar of list box using mfc
-
how to hide the vertical scrollbar of listboxThere is a requirement to hide the vertical scrollbar of listbox .
-
how to hide the vertical scrollbar of listboxThere 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.
-
save dialog box problem using vb scriptHi 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 .
-
Resizing the windows media player activex problemHi 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.
-
Release IGraphBuilder interface in directshow problemI 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 .
-
CD DVD burning APIHi all Is there any freeware API for multisession cd and dvd burning in windows xp,vista and windows7
-
DVD burning problem using windows XP Service pack2It is not working on xp Service pack3 too.
-
DVD burning problem using windows XP Service pack2I 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.
-
DVD burning problem using windows XP Service pack2Hi 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.
-
Make a callback in the mfc applicationproblem is that this callback function calls only ones.But I want to receive MM_WIM_DATA continuously.
-
Make a callback in the mfc applicationHi 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; } }
-
Createprocess in vc++Thanks Eugen for reply now its working
-
Createprocess in vc++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"); }
-
Run copy command in the background using vc++Thanks for reply can u explain how i use this copy command use in the shellexecute copy /b "firstfile.mp3"+"secondfile.mp3" "outputfile.mp3"
-
Run copy command in the background using vc++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
-
Run copy command in the background using vc++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.