Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

14 Posted Topics

Member Avatar for JudeV

you need to paint the board as if all the squares were the same color. then you need to alternate the color every time.

Member Avatar for Momerath
0
1K
Member Avatar for Kath_Fish
Member Avatar for Jessurider
Member Avatar for gogs85

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]

Member Avatar for zachattack05
0
1K
Member Avatar for JudeV

can't you reset the ball's position everytime? im not sure i understand your question

Member Avatar for divin757
0
769
Member Avatar for sirko

check out this thread [URL="http://www.daniweb.com/software-development/csharp/threads/104911"]http://www.daniweb.com/software-development/csharp/threads/104911[/URL]

Member Avatar for Rynkadink
0
288
Member Avatar for D Silent KilLeR

please explain to us what the algorithm does and wrap the code part in code tags, it's difficult to read.

Member Avatar for agugglez
0
140
Member Avatar for WildBamaBoy
Member Avatar for jenius27

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.

Member Avatar for agugglez
0
185
Member Avatar for Antikythera

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.

Member Avatar for edepperson
0
149
Member Avatar for swinefish

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"

Member Avatar for agugglez
0
87
Member Avatar for Premsathishbe

i see that you are using quotation marks when entering your command at the command propmt, try removing those.

Member Avatar for agugglez
0
107
Member Avatar for philmetz

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 …

Member Avatar for agugglez
0
138
Member Avatar for digital_dizasta

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 …

Member Avatar for agugglez
0
148

The End.