Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: weird behaviour with escape character Pin
AslFunky14-Dec-04 1:33
AslFunky14-Dec-04 1:33 
GeneralRe: weird behaviour with escape character Pin
doneirik14-Dec-04 1:54
doneirik14-Dec-04 1:54 
GeneralRe: weird behaviour with escape character Pin
David Crow14-Dec-04 2:13
David Crow14-Dec-04 2:13 
GeneralRe: weird behaviour with escape character Pin
doneirik14-Dec-04 3:47
doneirik14-Dec-04 3:47 
GeneralVB Callback function with string in VC DLL Pin
Michael Olsen13-Dec-04 21:59
Michael Olsen13-Dec-04 21:59 
GeneralDirectShow : Linker Error Pin
tspramod13-Dec-04 21:40
tspramod13-Dec-04 21:40 
GeneralRe: DirectShow : Linker Error Pin
Sujan Christo13-Dec-04 21:53
Sujan Christo13-Dec-04 21:53 
GeneralRe: DirectShow : Linker Error Pin
ytod13-Dec-04 22:18
ytod13-Dec-04 22:18 
Usually, the link error 2001 means that you didn't link libraries required. The help file of the directshow has a page "Setting Up the Build Environment". Read this page and you'll find these libraries required:

Strmiids.lib
Quartz.lib ( not required if you don't call AMGetErrorText(), can be omitted in your case. )

If you don't know how to link these libraries, a simple way is provided in the following:
1. Click the Menu:
(In Visual C++ 6.0)
Tools -> Options -> Directories, and then choose item of the combobox below the text "Show Directories for" Library Files and set the path of these 2 libraries.
(In Visual Studio .Net)
Tools -> Options -> Projects -> VC++ Directories , and then choose item of the combobox below the text "Show Directories for" Library Files and set the path of these 2 libraries.
2. Add the following codes to where you want to include some files(Ex: You can add them in stdafx.h):

#include "Dshow.h"<br />
#pragma comment ( lib, "Strmiids" )<br />
#pragma comment ( lib, "Quartz" )


good luck!
Generalcommunication throught USB Pin
tibiz13-Dec-04 21:23
tibiz13-Dec-04 21:23 
GeneralRe: communication throught USB Pin
namaskaaram13-Dec-04 21:57
namaskaaram13-Dec-04 21:57 
GeneralRe: communication throught USB Pin
tibiz14-Dec-04 1:17
tibiz14-Dec-04 1:17 
GeneralDirectX Question + urgent Pin
Anonymous13-Dec-04 20:29
Anonymous13-Dec-04 20:29 
GeneralRe: DirectX Question + urgent Pin
Andy Hunter14-Dec-04 3:03
Andy Hunter14-Dec-04 3:03 
GeneralPlaying an audio signal in a C++ DLL Pin
Cincy13-Dec-04 20:17
Cincy13-Dec-04 20:17 
GeneralSharing data between dll and exe Pin
ledallam13-Dec-04 20:00
ledallam13-Dec-04 20:00 
GeneralRe: Sharing data between dll and exe Pin
vishalmore13-Dec-04 20:09
vishalmore13-Dec-04 20:09 
GeneralRe: Sharing data between dll and exe Pin
Cedric Moonen13-Dec-04 20:15
Cedric Moonen13-Dec-04 20:15 
GeneralKey messages in Dialog app Pin
AslFunky13-Dec-04 19:33
AslFunky13-Dec-04 19:33 
GeneralRe: Key messages in Dialog app Pin
Arsalan Malik13-Dec-04 19:43
Arsalan Malik13-Dec-04 19:43 
GeneralRe: Key messages in Dialog app Pin
AslFunky13-Dec-04 21:33
AslFunky13-Dec-04 21:33 
GeneralRe: Key messages in Dialog app Pin
Arsalan Malik13-Dec-04 22:54
Arsalan Malik13-Dec-04 22:54 
GeneralRe: Key messages in Dialog app Pin
AslFunky14-Dec-04 1:06
AslFunky14-Dec-04 1:06 
GeneralRe: Key messages in Dialog app Pin
namaskaaram13-Dec-04 21:52
namaskaaram13-Dec-04 21:52 
GeneralRe: Key messages in Dialog app Pin
AslFunky14-Dec-04 1:01
AslFunky14-Dec-04 1:01 
Questionhow to link an external .res file with my application Pin
Arcrest13-Dec-04 18:30
Arcrest13-Dec-04 18:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.