msdn

How to keep Watermark in my video

HI, I want to keep watermark into my video. How can i implement it using Directshow. Is it possible to create a filter for this. i want to fix watermark at the time of saving video to my machine. PLease give some suggestion and help ...

MSDN about stored procedure default return value

Hello, Could anyone point exactly where MSDN says thet every user stored procedure returns 0 by default if no error happens? In other words, could I be sure that example code given below when being a stored procedure IF someStatement BEGIN RETURN 1 END should always return zero if someStatement is false and no error occurs? I know...

Watermarking + Directshow filter

I want to put a watermark on my video. IS it possible to do with directshow filter. Want to overlap an image on video like channel logo. so that image will be fixed when video is playing. Please provide some valuable help or samples (VC++) ...

Overlay bitmap on live video

Hi i want to Overlay bitmap on live video. Iam trying to do this with the directshow sample. I edited PlayCapMonker sample and added some functions to enable this. i did this with the procedure explained in below link http://www.ureader.com/msg/1471251.aspx Now i am gettting errors Error 2 error C4430: missing type specifier - int...

Batch program to display files with complete directory

Hi, I want to store the URL of all files with same extension in specific directory to one Log file. IS there any batch command available for this. Exapmle I want to copy all files with *.TXT extension into one log file with its directory extension(URL) ...

Overlay bitmap on live video

Hi i want to Overlay bitmap on live video. Iam trying to do this with the directshow sample. I edited PlayCapMonker sample and added some functions to enable this. i did this with the procedure explained in below link http://www.ureader.com/msg/1471251.aspx Now i am gettting errors Error 2 error C4430: missing type specifier - int...

Microsoft C++ Language Reference

Whenever any question is asked, and a reference text is needed, I never see MSDN C++ Language Reference being referred. I was browsing through it and I personally feel that it is extremely well written. Is there some specific reason it is not used as often as a standard? Is it because it contains some VC++ specific features? ...

Can't get to Pex download (or visual studio 2010)

I know this is probably not a "True" stackoverflow question, but here it is anyway: Is anyone able to get to the MSDN Download of Visual Studio 2010? I just get "Your search did not match any products." when I click on the New Downloads->Visual Studio 2010 link. I was able to download Visual Studio on Monday. But it is gone now. That...

Merging two ASF files

I have an ASF file which contain 8 audios and 1 video. Now i want to merge this file with other of same ASF type. Is it possible to do with windows media SDK. My language is VC++ Please give some help ...

Can I upgrade to VS2010 Ultimate if I buy Visual Studio Team System 2008 Architecture Edition

If I were to buy Microsoft Visual Studio Team System 2008 Architecture Edition that includes MSDN Premium (UEF-00026), would I be upgraded to Visual 2010 Ultimate? ...

As a MS Gold Partner can I install Visual Studio 2010 Pro instead of Premium?

As Microsoft Gold Partners we are granted 10 versions of Visual Studio Premium. We have 13 developers so 10 of use use Premium and 3 of use use VS Professional. Is it allowed to install 10 copies of VS Professional instead of Premium to keep everyone consistent? ...

Buffer Overrun Issues VC++

When i execute my code i am getting this error LPTSTR lpBuffer; ::GetLogicalDriveStrings(1024,lpBuffer); while(*lpBuffer != NULL) { printf("%s\n", lpBuffer); // or MessageBox(NULL, temp, "Test", 0); or whatever lpBuffer += lstrlen(lpBuffer)+1; printf("sizeof(lpBuffer) %d\n",lstrlen(lpBuffer)); } OutPut C sizeof(lpBuffer) 3 D ...

Table of content from MSDN help

Hi All! I whant convert msdn help to chm file. Usually table of content already exists in single html page. But in msdn help, table of content building by ajax and not presents completely. How get table of content file from msdn help? For example, I get documentation from http://msdn.microsoft.com/en-us/library/bb418439%28SQL.10%29.asp...

Why does this MSDN example for Func<> delegate have a superfluous Select() call?

The MSDN gives this code example in the article on the Func Generic Delegate: Func<String, int, bool> predicate = ( str, index) => str.Length == index; String[] words = { "orange", "apple", "Article", "elephant", "star", "and" }; IEnumerable<String> aWords = words.Where(predicate).Select(str => str); foreach (String word in aWords) ...

DVD writer sample needed in VC++

Hi, I am developing a new application which have to write data to DVD. Is it possible to do with IMAPI2. I read some help from MSDN but didnt get any startup material. Can u provide some nice sample or link. ...

SQL Server 2008 R2 RTM on MSDN?

SQL Server 2008 R2 has supposedly been Released to Manufacturing. Does anyone know when it's supposed to show up on MSDN? ...

put_Recorder not working for DVD

Hi i want to write a file into my DVD how can i do it by coding. I am into the development of this application but initially only i got stuck; please help m_hResult = CoCreateInstance(__uuidof(MsftDiscFormat2Data), NULL, CLSCTX_INPROC_SERVER,__uuidof(IDiscFormat2Data), (void**)&m_discFormatData); if (!SUCCEEDED(m_hResult)) { qDebug()<...

Documenting using Sandcastle: Refering to enum value using <see>

I'm using Sandcastle 2.4.10520 and Sandcastle Help File Builder 1.8.0 to generate a .chm help file. In my documentation, I'm using <see> tags. If I try to refer an enum like <see cref="NumberStyles"/> it works perfectly. If I try to refer an enum value like <see cref="NumberStyles.AllowTrailingWhite"/> I get a link in the documentatio...

SHCreateStreamOnFileEx linker error

Hi, I am getting linker error while working on SHCreateStreamOnFileEx. Please help me to find out the problem. IStream* replace::GetStream() { LPCWSTR pszFile=L"D:\\Test\\output.txt"; IStream* dataStream = NULL; if (dataStream == NULL) { SHCreateStreamOnFileEx(pszFile, STGM_READ|STGM_SHARE_DENY_NONE|STGM_DELETEONRELEASE, ...

DVD burn IMAPI2 + getting error, multiple of the sector size

hi, I am writing a program which burns data to DVD. When i run my program its showing error code 0xC0AA0403(The size of the provided IStream object is invalid. The size must be a multiple of the sector size, 2048.) Please help me on this. How to specify data as multiple of 2048. I am just passing a single DOC file to burn ...