Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~790 People Reached
Favorite Forums
Member Avatar for Dumpen1337

Hello. I have a simple picturebox where there is a image loaded in Im drawing a rectangle on the picturebox and when I press a button I want to invalidate it (remove the rectangle), but it doesnt seem to work The rectangle is drawn fine and the image loads up …

Member Avatar for CarlosAMerighe
0
229
Member Avatar for Dumpen1337

Hey I got some quetions [b]Question 1:[/b] I have a image that is in a picturebox which is called pictureBox1 I want to read monstersetbase.txt and add small ellipses to my image. The position of the ellipse comes from my monstersetbase.txt. The image is 256x256 and the coordinates is example …

Member Avatar for viper1891
0
223
Member Avatar for Dumpen1337

Hello. I have a question.. I have this script: [code] int mouseDownX; int mouseDownY; int width; int height; private void Form1_MouseUp(object sender, MouseEventArgs mouseEv) { width = mouseEv.X - mouseDownX; height = mouseEv.Y - mouseDownY; textBox2.Text = Convert.ToString(mouseEv.Location); Graphics graphics = this.CreateGraphics(); Rectangle rectangle = new Rectangle( mouseDownX, mouseDownY, width, …

Member Avatar for Dumpen1337
0
150
Member Avatar for Dumpen1337

Hello. I have been creating a application that checks the application version and sees if it fits with the version from [url]http://msbeditor.dumpen.dk/versioninfo.html[/url] If it doesnt I use a webBrowser component to open a download link to [url]http://msbeditor.dumpen.dk/msbEditor.rar[/url] But this is not very practical because, the ones using my application have …

0
104
Member Avatar for Dumpen1337

Hello. I have a small question/problem. I have this text file: [code]// Test 0 0 0 0 15 15 7 // 0 end 1 1 1 30 25 25 240 240 -1 5 // 1 end[/code] I read it into an array in C#, but in my array I read …

Member Avatar for Dumpen1337
0
84