Click here to Skip to main content
15,928,207 members
Home / Discussions / Graphics
   

Graphics

 
GeneralRe: pset equivelent Pin
Mark Salsbery19-Feb-07 9:38
Mark Salsbery19-Feb-07 9:38 
GeneralRe: pset equivelent Pin
MikeMarq19-Feb-07 20:27
MikeMarq19-Feb-07 20:27 
GeneralRe: pset equivelent Pin
Mark Salsbery20-Feb-07 6:01
Mark Salsbery20-Feb-07 6:01 
AnswerRe: pset equivelent Pin
Christian Graus19-Feb-07 9:46
protectorChristian Graus19-Feb-07 9:46 
QuestionHow can I view other computer's screen via LAN Pin
Newbie0019-Feb-07 7:35
Newbie0019-Feb-07 7:35 
AnswerRe: How can I view other computer's screen via LAN Pin
Mark Salsbery19-Feb-07 9:36
Mark Salsbery19-Feb-07 9:36 
AnswerRe: How can I view other computer's screen via LAN Pin
Dave Kreskowiak19-Feb-07 9:43
mveDave Kreskowiak19-Feb-07 9:43 
Questionmultiple monitors and videowindow.owner Pin
wjp19-Feb-07 6:00
wjp19-Feb-07 6:00 
hello,

can someone tell me how to to render a movie onto two monitors, i've a bit of code that reners the file on a picturebox. When i tell my computer to use two videocards and do the same thing on each screen, only the main screen shows the video / movie. the other shows a black hole. how can i solve that problem.

FilgraphManager graphManager = new FilgraphManager();
graphManager.RenderFile(file);

// Attach the view to a picture box on the form.
try
{
videoWindow = (IVideoWindow)graphManager;
videoWindow.Owner = (int)pictureBox1.Handle;
videoWindow.WindowStyle = WS_CHILD | WS_CLIPCHILDREN;
videoWindow.SetWindowPosition(
pictureBox1.ClientRectangle.Left,
pictureBox1.ClientRectangle.Top,
pictureBox1.ClientRectangle.Width,
pictureBox1.ClientRectangle.Height);
}
catch
{
// An error can occur if the file does not have a video
// source (for example, an MP3 file.)
// You can ignore this error and still allow playback to
// continue (without any visualization).
}

mediapos = (IMediaPosition)graphManager;
imex = (IMediaEventEx)graphManager;
imex.SetNotifyWindow((int)this.Handle, WM_GRAPHNOTIFY, 0);
// Start the playback (asynchronously).
mc = (IMediaControl)graphManager;
mc.Run();

willem-jan
AnswerRe: multiple monitors and videowindow.owner Pin
Mark Salsbery19-Feb-07 9:23
Mark Salsbery19-Feb-07 9:23 
GeneralRe: multiple monitors and videowindow.owner Pin
wjp19-Feb-07 11:00
wjp19-Feb-07 11:00 
GeneralRe: multiple monitors and videowindow.owner Pin
Mark Salsbery19-Feb-07 11:44
Mark Salsbery19-Feb-07 11:44 
GeneralRe: multiple monitors and videowindow.owner Pin
wjp19-Feb-07 12:02
wjp19-Feb-07 12:02 
QuestionWhich Direct Show Filter? Pin
coxmail19-Feb-07 2:39
coxmail19-Feb-07 2:39 
GeneralDrawThemeBackground Pin
PJ Arends16-Feb-07 22:21
professionalPJ Arends16-Feb-07 22:21 
GeneralRe: DrawThemeBackground Pin
Michael Dunn17-Feb-07 9:20
sitebuilderMichael Dunn17-Feb-07 9:20 
GeneralRe: DrawThemeBackground Pin
PJ Arends17-Feb-07 15:06
professionalPJ Arends17-Feb-07 15:06 
GeneralRe: DrawThemeBackground Pin
Michael Dunn17-Feb-07 17:50
sitebuilderMichael Dunn17-Feb-07 17:50 
GeneralRe: DrawThemeBackground Pin
PJ Arends17-Feb-07 18:27
professionalPJ Arends17-Feb-07 18:27 
QuestionVery first question Pin
Waldermort16-Feb-07 17:38
Waldermort16-Feb-07 17:38 
AnswerRe: Very first question Pin
El Corazon17-Feb-07 4:27
El Corazon17-Feb-07 4:27 
GeneralRe: Very first question Pin
Waldermort17-Feb-07 6:47
Waldermort17-Feb-07 6:47 
GeneralRe: Very first question Pin
El Corazon17-Feb-07 6:53
El Corazon17-Feb-07 6:53 
GeneralRe: Very first question Pin
El Corazon17-Feb-07 7:01
El Corazon17-Feb-07 7:01 
GeneralRe: Very first question Pin
cmk17-Feb-07 11:40
cmk17-Feb-07 11:40 
GeneralRe: Very first question Pin
El Corazon19-Feb-07 18:01
El Corazon19-Feb-07 18:01 

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.