TopGear Live: tickets on sale NOW!

Abort that half-arsed attempt to get a bit of work done this morning before watching old episodes of Come Dine With Me online without your boss noticing. Something more important has come up.

Tickets to this year’s MPH – the excellent motor show hosted in London and Birmingham featuring TopGear Live – have just gone on sale, and they are selling like well-warmed baked confectionary. Get over to mphshow.co.uk and sort yourself out before they’re all gone.

You want dates? You can’t handle the dates. 2010’s MPH Featuring TopGear Live – or MPHFTGL if you’re in the know – will be staged at Earls Court, London, from November 4-7 and then at the NEC in Birmingham from November 11-14.

Expect this year’s TopGear Live to feature, er… actually, we have no idea what it’ll feature exactly – the TG Live team are currently squirreled away in a shed out the back of TopGear HQ constructing elaborate scale models and then blowing them up in various innovative ways, so expect it to be smokey and spectacular.

What are you waiting for? Go get your tickets! Go! Go! Then come back here with a nice cup of tea and read all about the Hyundai i10.

Related

Category:
Transmission
Tags:
MPH,
top gear live
Top moments of TG telly
Top moments of TG telly
Our most-watched clips
All the cars of 2013!
All the cars of 2013!
In this month’s TG mag
Hammond’s icons
Hammond’s icons
BMW M3 (E30)
First drives
First drives
Caterham 7 Supersport

What do you think?

I wanna go to see top gear at the studio

Report this comment

god I want to come to the live show so much but cnt afford tickets mad bout cars and would make my day its not fair xxx

Report this comment

My dad is a huge fan of top gear and i really want to get him tickets for Christmas, is there any after Christmas and how much?

Report this comment

i am going to top gear live i cant wait

Report this comment

I love top gear and my birthday is on november the 13th when top gear live is on
But just been on website and the tickets are sold out for november 13th :(

Report this comment

how much are the tickets because i would love to go see a live show

Report this comment

I got tickets for the 13th :-D I payed £105 for platinum tickets! May sound expensive, but the things u get with them is totally worth it!!!

Report this comment

mi nombre es omar y soy de la ciudad de mexico, que les pareceria hacer un programa en esta ciudad? ya que es muy bella y la comida es excelente y hay autos muy bellos

Report this comment

Saw top gear live today! It twas AMAZING!! BRILLIANT!! FANTABULOUS!! it really was phenomanol!!! Loved every part of it! Extremely entertaining

Report this comment

Hi
I’m Iranian and plenty of problems you see beautiful program.
In a machine called Pride and cost £ 5300 if you can analyze this car.
Thanks!
masoud freeman

Report this comment

Pride?? is that a Kia Pride?

Report this comment

I’ve been a very good fan of this show, I like very much how you talk about the countries you visit, the sights, the people…until last show when I see the first comments of my country and it was a complete offense. Most of the people of developing countries works more hours per week than most of the “first world people” and we make such a big effort to have a better country everyday by going to school, get prepared, learn other languages and even have enough money to pay satellite TV and watch your show. And let me tell you something when I wake up in the morning I don’t feel bad for being a “mexican” I feel very proud of it. I don’t have any kind of power, not political or any kind to ask for an apologize, the only power that I have is being a respectful human being asking for respect to all of us.

Report this comment

what about the cl600 and the bmw 850 that JC and RH have bought ?

Report this comment

i would like to go on the show because it a good show to watch.

Report this comment

By WebOsPublisher

c# – What are the exact dimensions for a Windows application icon – Stack Overflow
Stack Exchange
log in
|
careers 2.0
|
chat
|
meta
|
about
|
faq
Stack Overflow
Questions
Tags
Users
Badges
Unanswered
Ask Question
What are the exact dimensions for a Windows application icon
up vote
-1
down vote
favorite
There are different dimensions for taskbar(big icons, small), desktop, start menu, etc. What are all dimensions one needs for a Windows application? And is there a way to put them all into a single file?
I have already designed the icon in Photoshop.
c# wpf
share|improve this question
asked
Apr 16 at 15:58
errorcode007
624
92% accept rate
possible duplicate of Which icon sizes should my windows application’s icon include? – Paolo Moretti Apr 16 at 16:01
Wasn’t sure what to place this under and these two seemed to be the most relevant (The application is made with C# and WPF) – errorcode007 Apr 16 at 16:02
feedback
2 Answers
active
oldest
votes
up vote
4
down vote
accepted
Well, the desktop alone can use almost any standard (Joey named most, if not all, of them) size.
I find it works well to combine 16×16, 32×32, 48×48, and 256×256 (and maybe more sizes) into one .ico file. I use IcoFx, and it is super easy to create multi-size icons from one 256×256 image.
share|improve this answer
answered
Apr 16 at 16:02
Kendall Frey
12.9k11436
IcoFx looks nice, I’ll try that out! – errorcode007 Apr 16 at 16:03
I was in the middle of writing about IcoFX as an amazing free .ico generator – went to the site to get the link and it is no longer free! Reguardless, it is that good I would happly pay the small fee for it! – Killercam Apr 16 at 16:04
What? How can they do that to my favorite image editor? First Reflector, now this… :_( – Kendall Frey Apr 16 at 16:06
IcoFX is no longer free, but there appear to be downloads of 1.6.4 available, which is the latest free version. AniFX seems to have disappeared, at least it doesn’t have an official site. – Kendall Frey Apr 16 at 16:10
I’ve downloaded the latest version (2) as a trial and it worked. Marking this as the correct answer! – errorcode007 Apr 16 at 16:18
feedback
up vote
3
down vote
Icon files (.ico) can contain variaous sizes. Common sizes for icons on Windows are:
16Г—16 (e.g. in the notification area of the taskbar or in default settings for the system menu of an application). This often shows a different icon than the other sizes due to the small area, e.g. perspective is often left out (which is in the recommendations for icons as well, if I remember correctly).
24Г—24
32Г—32 (e.g. in the taskbar unless small icons are configured for it)
48Г—48
64Г—64
128Г—128
256Г—256
If a size is missing then a larger one will be used to downsample the image or, if no larger one is present, a smaller one will be upsampled (with quality loss). The different sizes are thus not particular important except to provide the artist some control over the icon in standard sizes (it’s not uncommon to have the icon in a vector format and edit the rasterised version in various sizes so they look good in all of them).
The uses mentioned above are approximate and depend on various things, e.g. the user’s DPI setting.
share|improve this answer
edited
Apr 16 at 16:06
answered
Apr 16 at 16:00
Joey
102k10155262
feedback
Your Answer
draft saved
draft discarded
log in
or
Name
Email
required, but never shown
Home Page
discard
By posting your answer, you agree to the
privacy policy and
terms of service.
Not the answer you’re looking for?
Browse other questions tagged c# wpf
or ask your own question.
Hello World!
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It’s 100% free, no registration required.
about » faq »
tagged
c# × 388028
wpf × 55735
asked
7 months ago
viewed
152 times
active
7 months ago
Community Bulletin
blog
Meet the new additions to the Stack Exchange clan
#newsletter-ad
width: 190px;
height: 250px;
overflow: hidden;
background: url(‘cdn.sstatic.net/stac koverflow/img/newsletter- ad.png’);
padding: 0 15px 0 15px;

#newsletter-ad-header
margin-top: 60px;

#newsletter-ad ul
margin: 1em 0 1em 1.5em;

#newsletter-ad ul li
margin-bottom: 5px;

#newsletter-signup-contai ner
text-align: center;

#newsletter-preview-conta iner
margin-top: 10px;
text-align: center;

#newsletter-email-input
width: 200px;

Get the weekly newsletter!
Top questions and answers
Important announcements
Unanswered questions
see an example newsletter
By subscribing, you agree to the
privacy policy and
terms of service.
Linked
Which icon sizes should my windows application’s icon include?
Related
DirectX application on 64 bit windows
WPF Application that only has a tray icon
WPF application causes Windows crash when returning from standby
Set application icon and window icon to Windows 7 friendly icon
Resizing WPF windows according to the size of the screen
How to bring WPF Application having a modal window in front of othe windows
How to define single icon for main window and exe file?
Dynamic windows preview generation with WPF
Is WPF stronger than Windows Forms?
Close open DialogBoxes (not just windows) in a WPF application
Create a launchpad application in windows
wpf application crashes on tablet pc having windows 7
Handling Application Closing Calls from Icon
For a WPF application, what files do I need to share the source code?
Security concerns in a WPF application
Create swap control working like “People application” in windows phone 7
Pass Parameters Between Windows
WPF application layout with multiple contents without windows
Open running application from WPF application
Process.startInfo.Working Directory is not working in WPF application
Data sharing between different windows in WPF
WPF Group Windows
KeyboardNavigation.TabNav igation order for WPF Application
Bind Application FontColor to Setting
How can I change the Icon of WPF application
question feed
lang-cs
about |
faq |
blog |
chat |
data |
legal |
privacy policy |
jobs |
advertising info |
mobile |
contact us
| feedback
■ stackoverflow.com
■ api/apps
■ careers 2.0
■ serverfault.com
■ superuser.com
■ meta
■ area 51
■ webapps
■ gaming
■ ubuntu
■ webmasters
■ cooking
■ game development
■ math
■ photography
■ stats
■ tex
■ english
■ theoretical cs
■ programmers
■ unix
■ apple
■ wordpress
■ physics
■ home improvement
■ gis
■ electrical engineering
■ android
■ security
■ bicycles
■ dba
■ drupal
■ sharepoint
■ scifi $ fantasy
■ user experience
■ skeptics
■ rpg
■ judaism
■ mathematica
rev 2012.12.7.545
site design / logo © 2012 stack exchange inc;
user contributions licensed under cc-wiki with attribution required
Stack Overflow works best with JavaScript enabled

Report this comment

Guys
When will you be showing the new steam Lambo on the show??

Report this comment

WASSAH! WASSAH! WASSAH! WASSAH! WASSAH! WASSAH!

Report this comment

Enter your comment