Click here to Skip to main content
15,884,628 members
Home / Discussions / C#
   

C#

 
QuestionProblem loading assembly from byte[] Pin
Helfdane21-Apr-09 0:03
Helfdane21-Apr-09 0:03 
AnswerRe: Problem loading assembly from byte[] Pin
Rob Philpott21-Apr-09 3:41
Rob Philpott21-Apr-09 3:41 
GeneralRe: Problem loading assembly from byte[] Pin
Helfdane21-Apr-09 3:53
Helfdane21-Apr-09 3:53 
Questionalternative to session use Pin
mudag21-Apr-09 0:00
mudag21-Apr-09 0:00 
AnswerRe: alternative to session use Pin
Le centriste21-Apr-09 1:15
Le centriste21-Apr-09 1:15 
GeneralRe: alternative to session use Pin
Ian McCaul21-Apr-09 4:48
Ian McCaul21-Apr-09 4:48 
GeneralRe: alternative to session use Pin
Le centriste21-Apr-09 5:44
Le centriste21-Apr-09 5:44 
Questionplaying multiple video files using axWindowMediaplayer tool !!! Pin
mist_psycho20-Apr-09 23:19
mist_psycho20-Apr-09 23:19 
i want to play multiple video files one after another continously, using axWindowMediaPlayer tool.. For which I wrote the below code....
But here the problem is tat, it plays the last video file only and initial ones are not at all played.....
where am i going wrong ???
plz help ----





*************************************************************************************************
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
System.IO.FileInfo[] files = null;
int index = 0;

private void Form1_Load(object sender, EventArgs e)
{
System.IO.DirectoryInfo dirInfo = new System.IO.DirectoryInfo("C://
mist");
files = dirInfo.GetFiles("*.avi");

foreach(FileInfo f1 in files)
{
axWindowsMediaPlayer1.URl=f1.FullName;
}
}}}
AnswerRe: playing multiple video files using axWindowMediaplayer tool !!! Pin
Roman Lerman20-Apr-09 23:57
Roman Lerman20-Apr-09 23:57 
Questioncanvas.Focus does not unfocus textbox Pin
Pauwels Bart20-Apr-09 21:51
Pauwels Bart20-Apr-09 21:51 
AnswerRe: canvas.Focus does not unfocus textbox Pin
Roman Lerman20-Apr-09 22:35
Roman Lerman20-Apr-09 22:35 
GeneralRe: canvas.Focus does not unfocus textbox Pin
Pauwels Bart20-Apr-09 22:51
Pauwels Bart20-Apr-09 22:51 
Questionwhat does this error mean Pin
benson.misi20-Apr-09 21:47
benson.misi20-Apr-09 21:47 
AnswerRe: what does this error mean Pin
Pete O'Hanlon20-Apr-09 21:51
mvePete O'Hanlon20-Apr-09 21:51 
GeneralRe: what does this error mean Pin
CPallini21-Apr-09 2:11
mveCPallini21-Apr-09 2:11 
GeneralRe: what does this error mean Pin
Pete O'Hanlon21-Apr-09 2:24
mvePete O'Hanlon21-Apr-09 2:24 
AnswerRe: what does this error mean Pin
N a v a n e e t h20-Apr-09 21:52
N a v a n e e t h20-Apr-09 21:52 
QuestionHow to import following C DLL function to C# ? [ I am still waiting .... :( ] [Wating no more :)] Pin
Roman Lerman20-Apr-09 20:53
Roman Lerman20-Apr-09 20:53 
AnswerRe: How to import following C DLL function to C# ? [ I am still waiting .... :( ] Pin
Henry Minute21-Apr-09 1:23
Henry Minute21-Apr-09 1:23 
QuestionHow to get color of pixel at mouse click in live video control Pin
sebogawa20-Apr-09 20:33
sebogawa20-Apr-09 20:33 
AnswerRe: How to get color of pixel at mouse click in live video control Pin
Henry Minute21-Apr-09 1:42
Henry Minute21-Apr-09 1:42 
QuestionRe: How to get color of pixel at mouse click in live video control [modified] Pin
sebogawa21-Apr-09 8:46
sebogawa21-Apr-09 8:46 
QuestionConcurrency violation: the UpdateCommand affected 0 of the expected 1 records [Very Emergency] Pin
hdv21220-Apr-09 19:34
hdv21220-Apr-09 19:34 
AnswerRe: Concurrency violation: the UpdateCommand affected 0 of the expected 1 records [Very Emergency] Pin
Roman Lerman20-Apr-09 22:47
Roman Lerman20-Apr-09 22:47 
GeneralRe: Concurrency violation: the UpdateCommand affected 0 of the expected 1 records [Very Emergency] Pin
hdv21220-Apr-09 23:55
hdv21220-Apr-09 23:55 

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.