View Full Version : Ctrl + V Thread
singletrack
10-04-09, 09:10 PM
So what have you got pressing Ctrl + V?
I'll start....
http://farm4.static.flickr.com/3566/3428870684_475a1379eb_b.jpg
lap started from carpark to carpark.
down the single track with the two gay logs, then left at the train tracks then thru that factory/house with yappy dog....and the rest is pretty standard i think.
im gonna give it a go clipped in...i recon i can get under 50mins
Parker.
10-04-09, 10:40 PM
The day to day life of
Total n00b question....what the farkin is ctrl+V?
Total n00b question....what the farkin is ctrl+V?
Keyboard shortcut for "Paste"
Oh I fell like a tool, I knew that!
Pressed ctrl +v and nothing happened, so I asked.....dam lack of thinking.
Charlie
13-04-09, 11:19 PM
http://www.necrohiphop.com/store/images/uploads/preview1larger2.jpg
milkman
14-04-09, 12:05 AM
Forecast for Tuesday
Rain, easing early to a shower or two. The chance of a late thunderstorm. Light to moderate northwest to northeast winds.
Precis: Rain easing to a shower or two.
City: Min: 19 Max: 23 Parramatta: Min: 17 Max: 25
Terrey Hills: Min: 17 Max: 22 Penrith: Min: 17 Max: 25
Liverpool: Min: 16 Max: 25 Richmond: Min: 17 Max: 25
Things i did
1. varied off
2. varied on
3. pinged
4. tested prints from network, all working.
http://www.chainreactioncycles.com/Models.aspx?ModelID=21128&PartnerID=2297
noodleman
14-04-09, 01:23 PM
5
3
2
2
1
1
1
1
1
i have no idea when i copied that and what it's for
http://catalog.troyleedesigns.com/catalog/popup_image.php?pID=1748
http://www.elementalrain.com/photos/mojo/mojo_full.jpg
, this happens from time to time.
http://3.bp.blogspot.com/_Mvhjidbvdzc/SeP0QLqdUrI/AAAAAAAAOco/E2t7mIPI910/s1600-h/dovizioso+23456.jpg
We have had an overwhelming response from people who want to be in the studio audience for Series 2 of The Gruen Transfer. Unfortunately this means that there are no more seats available for any of our studio records this year.
You can see The Gruen Transfer on Wednesday nights at 9pm from 18th March until 20th May 2009, and make sure you check out our website for even more interactive games and new web exclusives this series.
http://cgi.ebay.com.au/Carbon-Street-Flat-Bar-FIXIE-CANNONDALE-CAPO_W0QQitemZ130300070410QQcmdZViewItemQQptZAU_Sp ort_Cycling_Bikes?hash=item130300070410&_trksid=p3286.c0.m14&_trkparms=66%3A4|65%3A3|39%3A1|240%3A1318
singletrack
16-04-09, 06:40 PM
Link exchange with MTBNZ
singletrack
16-04-09, 06:40 PM
http://cgi.ebay.com.au/Carbon-Street-Flat-Bar-FIXIE-CANNONDALE-CAPO_W0QQitemZ130300070410QQcmdZViewItemQQptZAU_Sp ort_Cycling_Bikes?hash=item130300070410&_trksid=p3286.c0.m14&_trkparms=66%3A4|65%3A3|39%3A1|240%3A1318
nooooooo!!!!!!!! :D
http://i204.photobucket.com/albums/bb286/2026_man/IMG_3688.jpg
yer... wanna give me some money for a new one? ....thought so
singletrack
17-04-09, 03:27 PM
Turquoise Yeti 575
bsa kid
21-04-09, 06:59 PM
http://i15.ebayimg.com/01/i/001/40/6f/1604_1.JPG
http://torrentbully.com/account.php
singletrack
21-04-09, 07:54 PM
Amy CC Bank Statements Jan - Mar 09
singletrack
21-04-09, 08:11 PM
www.bringvictory.com
gold :D
aussieidiot
21-04-09, 08:51 PM
kangaroos are sluts!
Every time I went to do this, I had nothing ready to paste. When I do its a completely fucking random bumper sticker off facebook!
singletrack
22-04-09, 08:01 PM
http://www.mountainbikingnewzealand.co.nz/advertising/
addmin, that website's awesome. Must see for everyone. Everyone click on it NOW.
addmin, that website's awesome. Must see for everyone. Everyone click on it NOW.
i reckon.. everytime i get it shut down i just can't resist the urge to re open it
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/VsP5Fuec4Ys&color1=0xb1b1b1&color2=0xcfcfcf&feature=player_embedded&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/VsP5Fuec4Ys&color1=0xb1b1b1&color2=0xcfcfcf&feature=player_embedded&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>
http://www.balfa.wooyek.pl/
Hey mate, I've been offered $35 for it. So if you want it you better jump on it or the other guys going to get it...
Gotta say I'm not a fan of Balfas......
Parker.
30-04-09, 09:37 PM
Woot!
another *simple* yr 11 code project
I am building a program which draws three shapes, a square, a circle and a triangle, each is drawn when the corresponding button is clicked.
(the shapes also need to be able to resize with the form, but i have this under control)
The code for drawing is all located within this class.
Quote:
class draw
{
public static void DrawSquare(Graphics g)
{
g.DrawRectangle(Pens.Blue, 10, 10, 100, 50);
}
public static void DrawCircle(Graphics g)
{
g.DrawEllipse(Pens.Blue, 50, 50, 50, 50);
}
public static void DrawTriangle(Graphics g)
{
Point[] polygonPoints = new Point[3];
polygonPoints[0] = new Point(20,25);
polygonPoints[1] = new Point(50, 55);
polygonPoints[2] = new Point(160, 65);
g.DrawPolygon(Pens.Blue, polygonPoints);
}
}
the paint event and other stuff is here
Quote:
public Form1()
{
InitializeComponent();
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
draw.DrawCircle(e.Graphics);
draw.DrawTriangle(e.Graphics);
draw.DrawSquare(e.Graphics);
}
my is:
1) how do i get the shapes onto the screen when the corresponding button is clicked?
any help, even if its just pointing me in the right direction would be great....
if anyone knows anything about the above... feel free to help
a.davis12
30-04-09, 10:39 PM
$2100.00
^^^^^
:d
Alex the definition of FUCKED.
http://doihaveswineflu.org/
http://doihaveswineflu.org/
haha. i checked where that linked to before i clicked it, just to be safe.
Ha it's the safe thing to do if you think you have the swine flu. Word
it was actually a bit of a let down, i expected better :p
What a link to pig porn or something?
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.