- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
you need to paint the board as if all the squares were the same color. then you need to alternate the color every time.
i think your code does just that
to open a text file using an OpenFileDialog and show it in a MessageBox: [CODE]private void button1_Click(object sender, System.EventArgs e) { if(openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK) { System.IO.StreamReader sr = new System.IO.StreamReader(openFileDialog1.FileName); MessageBox.Show(sr.ReadToEnd()); sr.Close(); } } [/CODE]
can't you reset the ball's position everytime? im not sure i understand your question
check out this thread [URL="http://www.daniweb.com/software-development/csharp/threads/104911"]http://www.daniweb.com/software-development/csharp/threads/104911[/URL]
please explain to us what the algorithm does and wrap the code part in code tags, it's difficult to read.
what application type is your server running if not a website?
If you want to do something like a server-side and a client-side application you should give a try to Windows Communication Fundation and implement a service. You can call the server's method from the client and the other way around.
Hi, Seems like you always add the same object to the ListBox, overwriting every time the same fields, that way you'll end up with the same data for all the list items. Try creating a new object every time you submit.
Hi there, you might want to check this pdf :[URL="http://cswww.essex.ac.uk/technical-reports/2007/tr-csm469.pdf"]http://cswww.essex.ac.uk/technical-reports/2007/tr-csm469.pdf[/URL] "An analysis of publications on particle swarm optimisation applications"
i see that you are using quotation marks when entering your command at the command propmt, try removing those.
Hi, i hope u understand it with this proof: • Let n be the pumping lemma value and let k be a prime greater than n. • If L is regular, the Pumping Lemma implies that a^k can be decomposed into xyz, |y| > 0, such that xy^iz is in …
hello, im not sure if i should post this here... im trying to work with the GATE system, i want to perform the Named Entity Recognition task with ANNIE, an information extraction system that comes with GATE. i want to call ANNIE in my code, so i have to use …
The End.
agugglez