Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
GeneralSqlite C# Pin
Adnan Siddiqi15-Jan-05 6:08
Adnan Siddiqi15-Jan-05 6:08 
GeneralRe: Sqlite C# Pin
Robert Rohde15-Jan-05 6:59
Robert Rohde15-Jan-05 6:59 
Questionhow to create an ms installer Pin
basbous15-Jan-05 6:07
basbous15-Jan-05 6:07 
Generalhelp needed Pin
prasanna_ids15-Jan-05 1:08
prasanna_ids15-Jan-05 1:08 
GeneralOutlook popup message Pin
Osmosys14-Jan-05 21:57
Osmosys14-Jan-05 21:57 
GeneralRe: Outlook popup message Pin
Heath Stewart18-Jan-05 6:09
protectorHeath Stewart18-Jan-05 6:09 
GeneralRe: Outlook popup message Pin
Anonymous19-Jan-05 2:09
Anonymous19-Jan-05 2:09 
GeneralVideo Broadcasting problems Pin
RockRock14-Jan-05 19:13
RockRock14-Jan-05 19:13 
I have some problems in video broadcast. An error message popup from windows media player - "server not available".
Here are some of my code:

SERVER:
// Create a WMEncoder object.
WMEncoder Encoder = new WMEncoder();
// Retrieve an IWMEncBroadcast object.
IWMEncBroadcast BrdCst = Encoder.Broadcast;
// Set the port number.
BrdCst.set_PortNumber (WMENC_BROADCAST_PROTOCOL.WMENC_PROTOCOL_HTTP, 8080);
// Create an IWMEncSourceGroupCollection object.
SrcGrpColl = Encoder.SourceGroupCollection;
// Create an IWMEncSourceGroup object.
SrcGrp = SrcGrpColl.Add("SG_1");
// Create a video and an audio source object.
SrcAud = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_AUDIO);
SrcVid = (IWMEncVideoSource)SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_VIDEO);
// Specify the path of the source file.
SrcAud.SetInput("C:\\temp/poor_mark.wmv", "", "");
SrcVid.SetInput("C:\\temp/poor_mark.wmv", "", "");
// Choose a profile from the collection.
IWMEncProfileCollection ProColl = Encoder.ProfileCollection;
IWMEncProfile Pro;
for (int i = 0; i < ProColl.Count; i++)
{
Pro = ProColl.Item(i);
//MessageBox.Show(Pro.Name);
if (Pro.Name == "Windows Media Video 8 for Local Area Network (256 Kbps)")
{
SrcGrp.set_Profile(Pro);
break;
}
}
// Start the encoding process
SrcGrp.PrepareToEncode(true);
Encoder.Start();

CLIENT:
Player.URL = "http://144.214.61.5:8080";

What're the problems. Please help.
GeneralKernel Level Files *Please Help!* Pin
kshet2614-Jan-05 14:54
kshet2614-Jan-05 14:54 
GeneralRe: Kernel Level Files *Please Help!* Pin
Alex Korchemniy14-Jan-05 18:09
Alex Korchemniy14-Jan-05 18:09 
GeneralEnsuring text is always readable against background... Pin
Member 9614-Jan-05 14:09
Member 9614-Jan-05 14:09 
GeneralRe: Ensuring text is always readable against background... Pin
leppie14-Jan-05 19:14
leppie14-Jan-05 19:14 
GeneralRe: Ensuring text is always readable against background... Pin
Robert Rohde14-Jan-05 21:30
Robert Rohde14-Jan-05 21:30 
GeneralRe: Ensuring text is always readable against background... Pin
mav.northwind14-Jan-05 21:24
mav.northwind14-Jan-05 21:24 
GeneralFinal result.. Pin
Member 9615-Jan-05 6:05
Member 9615-Jan-05 6:05 
GeneralRe: Image Property Pin
14-Jan-05 11:33
suss14-Jan-05 11:33 
GeneralSend Javascript command to IE Pin
Chris Chavez14-Jan-05 10:10
sussChris Chavez14-Jan-05 10:10 
GeneralRe: Send Javascript command to IE Pin
Heath Stewart14-Jan-05 13:14
protectorHeath Stewart14-Jan-05 13:14 
GeneralRe: Send Javascript command to IE Pin
Chris Chavez18-Jan-05 3:27
sussChris Chavez18-Jan-05 3:27 
GeneralRe: Send Javascript command to IE Pin
Heath Stewart18-Jan-05 6:05
protectorHeath Stewart18-Jan-05 6:05 
GeneralRe: Send Javascript command to IE Pin
Chris Chavez19-Jan-05 5:09
sussChris Chavez19-Jan-05 5:09 
GeneralEthical Coding Style Pin
Wayne Phipps14-Jan-05 8:22
Wayne Phipps14-Jan-05 8:22 
GeneralRe: Ethical Coding Style Pin
Christian Graus14-Jan-05 8:28
protectorChristian Graus14-Jan-05 8:28 
GeneralRe: Ethical Coding Style Pin
Wayne Phipps14-Jan-05 8:41
Wayne Phipps14-Jan-05 8:41 
GeneralRe: Ethical Coding Style Pin
Christian Graus14-Jan-05 9:07
protectorChristian Graus14-Jan-05 9:07 

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.