Search found 2285 matches

Search found 2285 matches Page 4 of 229
by MrAksel
Sat Jul 21, 2012 4:50 pm
Forum: Coding Help & Support
Topic: Resize Form Errors
Replies: 4
Views: 1152

Remove
Code: Select all
 Me.Size = New System.Drawing.Size(sizew, sizey)
Form1's SizeChanged event.
When the size changes, you set the size again, which calls SizeChanged which sets the size, which calls SizeChanged ... its repeating until you get a StackOverflowException.
by MrAksel
Mon Jul 16, 2012 5:06 pm
Forum: Tutorial Requests
Topic: How to anti-alias an image?
Replies: 4
Views: 1900

You might be talking about interpolation? If you for example rotate an image, the pixel at 50, 21 might be transformed to 21.3, 49.6. Nearest-neighbor interpolation just rounds the numbers to 0 decimal places so it would be 21, 50. Bilinear, with this example, would set some of the color on 21, 49, ...
by MrAksel
Wed Jul 11, 2012 2:54 pm
Forum: Codenstuff boardroom
Topic: More About Me
Replies: 15
Views: 3579

What? He hasn't been active in a looong time, so why would you think that now?
by MrAksel
Wed Jul 11, 2012 2:50 pm
Forum: Misc
Topic: Java "a = b" help
Replies: 3
Views: 1545

You could try the clone() method on an object. It duplicates the reference, but its still pointing to the same value.
Code: Select all
a = b.clone();
I just read about it on wikipedia so I have no idea if it works :?
by MrAksel
Tue Jul 10, 2012 4:47 pm
Forum: Codenstuff boardroom
Topic: Weather like where you are?
Replies: 27
Views: 6006

Its possible to travel forward in time, by reaching speeds close to the speed of light. The human that has traveled the largest timespan has only traveled around 13 milliseconds forward in time :lol: No theories explains how to travel backwards in time though, so you have a problem there :P
by MrAksel
Tue Jul 10, 2012 4:24 pm
Forum: Codenstuff boardroom
Topic: my own ventilator :)
Replies: 10
Views: 2174

Nice work Tim :) I could use one of those here :lol:
by MrAksel
Mon Jul 09, 2012 4:22 pm
Forum: Codenstuff boardroom
Topic: Weather like where you are?
Replies: 27
Views: 6006

Great weather in Norway :lol: It's too hot to be outside for more than 10 minutes at a time so I keep running inside :P
by MrAksel
Sun Jul 08, 2012 7:50 pm
Forum: Quick Snips
Topic: opening a website using your default webbrowser
Replies: 8
Views: 3929

It's because System.Diagnostics are 'pre-imported' as default unless you've changed that ;)
Search found 2285 matches Page 4 of 229
Go to advanced search