|
please help me to get an live web streaming out put for a HTML file (straight to) web browser !!! please help me with this and i have no idea how to do this !! thank you !!! 
|
|
|
|
|
Don't post this in multiple places - it duplicates work and annoys people.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
|
|
|
|
|
Streaming of WHAT?? Video, audio, stock prices, RSS feeds, thoughts and musings, ...??
Chances are really good you're going to need to get a streaming server to do this for you.
|
|
|
|
|
its just a live web broadcasting as a host though a web browser !! i cnt jst think of a way of doing it sir !!! please help !! thank u !!
|
|
|
|
|
Well, I can tell you you don't do it in your ASP.NET code.
You use a media server, such as Expression Encoder[^].
|
|
|
|
|
|
I need to write a kind of add on for ie with c#.
It will put a button or a similar on the toolbar. By clicking that button, I will read
the current tab's ( selected tab) HtmDocument property.
Where to start? Please help?
Thanks
|
|
|
|
|
Google is your friend: Be nice and visit him often. He can answer questions a lot more quickly than posting them here...
A very quick search gave 23 million results that would make a good starting point.
Google: Writing IE addon[^]
In future, please try to do at least basic research yourself, and not waste your time or ours.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
|
|
|
|
|
Googling is always the first option and have been googling too.No need to remind.
I am living in the same universe with you, so aware of google.
But harvesting the result from the lots of items from the search result is not always
so easy especially if you are new like me to the subject. And asked item is needed once in a while, so still do I have to go through all the details of the ie extension stuffs and become an extension writer guru for a very simple need or better ask the friends on net? This site, codeproject.com,
I think, exist to share the experiences or to get help from the experienced gurus.
I still do not understand what is wrong with asking a little help from forum members
who are there for this reason. If you make happy, I do apologize for bothering you,
and wasting your time my friend.
If you do have a simple example ( project, solution file), you can still help me.
Or you have an option to ignore the so stupid question, like mine, on this form.
Regards,
Muharrem
|
|
|
|
|
Hello. I have big problem. I have 2 windows in my program. Form1 & Form2.
Form 1:
Form 2:
What i need:
When i press cell 1 opens new window Form2 and textBox in form2 holds Form1 cell 2 value, then i edit that value and press button 4 it updates cell 2 in database with new value.
Please help, wasted 3 hours searching in google something relevant.
|
|
|
|
|
There seems quite a lot behind this question, please be more specific about the part that you are having trouble with:
- Opening a new form?
- Getting the contents of an edit box?
- Adding that content to an edit box on the new form?
- Editing a string in a text box?
- Reacting to a button click?
- Updating the database?
|
|
|
|
|
Sorry. I already figured this out. Sorry to bother.
P.S. I didn't know how to pass data from one form to another form, but now i know. Thanks anyway .
|
|
|
|
|
My problem here is that the line where it says
private HighScoreTable highScoreTable - new HighScoreTable();
The error is.. the type or namespace name 'HighScoreTable' could not be found (are you missing a using directive or an assembly reference?)
Is there something missing here or what or is there more to go with this?
public partial class Form3 : Form
{
private HighScoreTable highScoreTable = new HighScoreTable();
public Form3()
{
InitializeComponent();
}
private void btnRules_Click(object sender, EventArgs e)
{
new Form5().Show();
}
private void aboutYahtzeeToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void btnExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void btnHighScores_Click(object sender, EventArgs e)
{
highScoreTable.Load( Application.StartupPath+@"\score.txt" );
}
}
}
|
|
|
|
|
Where is the type HighScoreTable defined? I think maybe some more time with your notes and/or reference manuals would be a good use of your time.
|
|
|
|
|
This is all coming from this guy's work and coding so may not have it all yet I don't know but am giving it a break now and see what tomorrow brings.
This article is on this site
A Simple Yahtzee Game
By Mike Kitchen
|
|
|
|
|
It would help if you posted an actual link to your source. It may also be a better idea to contact the author of the work you are trying to understand if you need guidance.
|
|
|
|
|
Based on the kind of errors you are getting (and posting here), I think you just want to catch up on a little bit of reading.
Just pick up a C# book and refresh your basics - you will be able to diagnose these errors all by yourself.
Debugging and stepping through code is another useful trick that can help you track these kind of errors.
|
|
|
|
|
Abhinav S wrote: Debugging and stepping through code ...
requires code that compiles, so all namespace issues must have been resolved first.
|
|
|
|
|
Hi I am getting an error saying identifier expected in my coding at the end of where it says
public int CalculateTHreeOfAKind(Dice[] )
If anyone can help me out here would be most appreciated thanks even my Teacher is having the same trouble trying to work this one out thanks.
int[] Dice = new int[] {0, 0, 0, 0, 0,};
int[] myDice = new int[] {0, 0, 0, 0, 0};
public Form1()
{
InitializeComponent();
}
public int CalculateThreeOfAKind(Dice[] )
{
int Sum = 0;
bool ThreeOfAKind = false;
for (int i = 1; i <= 6; i++)
{
int Count = 0;
for (int j = 0; j < 5; j++)
{
if (myDice[j] == i)
Count++;
if (Count > 2)
ThreeOfAKind = true;
}
}
if (ThreeOfAKind)
{
for (int k = 0; k < 5; k++)
{
Sum += myDice[k];
}
}
return Sum;
}
|
|
|
|
|
You did not tell the compiler what type of objects are held in the parameter (Dice ) being passed in to this method. It should be :
public int CalculateThreeOfAKind(int[] Dice)
|
|
|
|
|
Oh wow thanks for that brilliant don't know why teacher didn't get that as he should be the brainy one.
Thanks again for that one now have another question which I will put up in a sec.
|
|
|
|
|
Your code should Dice[] myDice .
The variable type in the parameter is missing.
|
|
|
|
|
We had changed that line to read differently as that was a really confusing bit of code thanks.
|
|
|
|
|
I don't think Dice is a type; unless my mind is playing tricks again.
|
|
|
|
|
Good point. They have a class by that name perhaps.
|
|
|
|