Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here are a few tricks I learned while doing my "hello world" maze game in Silverlight 1.1.

Silverlight doesn't fire the KeyDown event for cursor (arrow) keys

However, just about all keys will fire a KeyUp event. In my case, I was able to just handle the KeyUp event, but remember that holding a key down will trigger multiple KeyDown events and only one KeyUp event.

Notice how a lot of the games you're seeing for Silverlight use W/A/S/D instead of arrow keys? I suspect that's the reason.

The difference between Key and PlatformKey

The KeyDown and KeyUp event parameters include KeyboardEventArgs, which has properties for both PlatformKeyCode and Key. PlatformKeyCode is a platform specific key code, so by definition it can (and will) change between Windows and Mac (and potentially between versions of these operating systems). It's preferable to use Key unless you need to be you need to detect keys which aren't available on all platforms, such as the Windows start key.

Key is a platform agnostic key code and is better to use when possible. Of course, there isn't a Key value for the Windows key, so if you're using keys which will only be defined on a specific operating system you're stuck with the PlatformKeyCode value. If you do need access to PlatformKey values, see Dave Relyea's comment on this thread for info on how he determined platform key values.

The missing Key Enumeration

KeyboardEventArgs.Key value is supposed to be an Enum per the MSDN documentation, but at least in this release it's just an int. I grabbed the keys and values from the documentation and created a simple enum which should hopefully be forward compatible when that enum is (hopefully) added to agclr.dll.

enum Keys { KEYNONE = 0, BACKSPACE = 1, TAB = 2, ENTER = 3, SHIFT = 4, CTRL = 5, ALT = 6, CAPSLOCK = 7, ESCAPE = 8, SPACE = 9, PAGEUP = 10, PAGEDOWN = 11, END = 12, HOME = 13, LEFT = 14, UP = 15, RIGHT = 16, DOWN = 17, INSERT = 18, DELETE = 19, DIGIT0 = 20, DIGIT1 = 21, DIGIT2 = 22, DIGIT3 = 23, DIGIT4 = 24, DIGIT5 = 25, DIGIT6 = 26, DIGIT7 = 27, DIGIT8 = 28, DIGIT9 = 29, A = 30, B = 31, C = 32, D = 33, E = 34, F = 35, G = 36, H = 37, I = 38, J = 39, K = 40, L = 41, M = 42, N = 43, O = 44, P = 45, Q = 46, R = 47, S = 48, T = 49, U = 50, V = 51, W = 52, X = 53, Y = 54, Z = 55, F1 = 56, F2 = 57, F3 = 58, F4 = 59, F5 = 60, F6 = 61, F7 = 62, F8 = 63, F9 = 64, F10 = 65, F11 = 66, F12 = 67, NUMPAD0 = 68, NUMPAD1 = 69, NUMPAD2 = 70, NUMPAD3 = 71, NUMPAD4 = 72, NUMPAD5 = 73, NUMPAD6 = 74, NUMPAD7 = 75, NUMPAD8 = 76, NUMPAD9 = 77, MULTIPLY = 78, ADD = 79, SUBTRACT = 80, DECIMAL = 81, DIVIDE = 82, KEYUNKNOWN = 255 }

The result: a generic Keyboard Handler Event

First, I add the event handler in the Page_Load event:

public void Page_Loaded(object o, EventArgs e) { InitializeComponent(); this.KeyUp += new System.Windows.Input.KeyboardEventHandler(keyHandler); //Other stuff... }

Next, my keyHandler method has a simple switch block which allows for W/A/S/D, numeric keypad, or cursor keys. I also handle the F key, which toggles to full screen mode:

protected void keyHandler(object sender, KeyboardEventArgs args) { Keys key = (Keys)args.Key; switch (key) { case Keys.A: case Keys.NUMPAD4: case Keys.LEFT: handleLeft(); break; case Keys.W: case Keys.NUMPAD8: case Keys.UP: handleUp(); break; case Keys.D: case Keys.NUMPAD6: case Keys.RIGHT: handleRight(); break; case Keys.S: case Keys.NUMPAD2: case Keys.DOWN: handleDown(); break; case Keys.F: BrowserHost.IsFullScreen = !BrowserHost.IsFullScreen; break; default: return; } }
Published Monday, July 02, 2007 11:47 PM by Jon Galloway
Filed under: , ,

Comments

# Silverlight Fan » Keyboard input tricks for Silverlight 1.1- Examples, Samples, Games, Tutorials and Videos about Silverlight

Pingback from  Silverlight Fan » Keyboard input tricks for Silverlight 1.1- Examples, Samples, Games, Tutorials and Videos about Silverlight

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

The arrow keys don't fire KeyDown events?  That seems odd.  Do you suppose that's by design, or an oversight?

Tuesday, July 03, 2007 10:39 AM by Cam Soper

# Silverlight Cream for July 3, 2007

Silverlight Cream for July 3, 2007

Tuesday, July 03, 2007 12:11 PM by WynApse

# Jon Galloway's Keyboard Tricks in Silverlight

Nice post with code examples detailing how to capture keyboard events in Silverlight. He learned about

Tuesday, July 03, 2007 12:51 PM by Eric Griffin's Blog

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

The KeyDown events don't get fired for arrow keys under IE, but they do under Firefox. I'm thinking this will be fixed in the next release.

silverlight.net/.../2224.aspx

Tuesday, July 03, 2007 8:17 PM by Andy Beaulieu

# Silverlight Learning Links

Presentation Download will be available Soon... Getting Started Microsoft Silverlight 1.0 Beta Runtime

Thursday, July 05, 2007 5:18 AM by Technical Bits

# July 4th Links: ASP.NET, ASP.NET AJAX, Visual Studio, Silverlight and IIS7

I've fallen behind on my weekly link-listing series - apologies for the delay. ASP.NET ASP.NET RSSToolkit

Thursday, July 05, 2007 10:17 AM by Blogs

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey Jon,

I've used the information on this blog post (and linked back here), Thanks.

blogs.microsoft.co.il/.../Silverlight-1.0-full-Javascript-Intellisense.aspx

Wednesday, August 01, 2007 8:40 AM by Justin-Josef Angel [MVP]

# Handling Keyboard Input in SilverLight « Online Advertising, Web Development & General Rantings

Pingback from  Handling Keyboard Input in SilverLight « Online Advertising, Web Development & General Rantings

# Silverlight 1.0 full Javascript Intellisense

Silverlight 1.0 full Javascript Intellisense

Thursday, August 02, 2007 5:29 PM by .NET On Rail

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I'm a new member and so I thought to post some Host gator Coupon for a start.

Hostgator Coupon 20% OFF : GREEN

Hostgator Coupon 20% OFF (October): SPOOKY

Hostgator coupon - "HGC25 - $9.94 discount

Hostgator coupon - "jury" - $9.94 discount

Hostgator coupon - "iceishot" - $9.94 discount

Hostgator coupon - "Hostcritique" - $9.94 discount

HostGator Valentine's Day Coupon

Coupon code - "Heart" - It saves you 20% on your order!

First Month 1 Cent Coupons ($9.94 Off)  <img>www.bloggingtipsonline.com/.../img>

1. "iceishot" - $9.94 OFF 2. "jury" - $9.94 OFF 3. "webhostingunleashed" - $9.94 OFF

To save upto $ 9.94 on Hostgator Shared Hosting, enter any of the below mentioned:

Hostgator Coupon Code : WEBHOSTING

Hostgator Coupon Code : TURKEY

Hostgator Coupon Code : FINDMYHOST

Hostgator Coupon Code : TOPHOST

Hostgator Coupon Code : HGC25

Hostgator Coupon Code : 404PAGE

Hostgator Coupon Code : HOSTGATOR

Hostgator Coupon Code : WORDPRESS

Hostgator Coupon Code : ICEISHOT

Hostgator Resellers Coupon Code : CO_NR

This hostgator coupon will give you following discount:

* Hostgator Hatchling 1 year: $6.95 x 12 x 20% Off = $16.68 Discount!

* Hostgator Hatchling 2 year: $5.95 x 24 x 20% Off = $28.56 Discount!

* Hostgator Hatchling 3 year: $4.95 x 36 x 20% Off = $35.64 Discount!

* Hostgator Baby 2 year: $8.95 x 24 x 20% Off = $42.96 Discount!

* Hostgator Baby 3 year: $7.95 x 36 x 20% Off = $57.24 Discount!

* Hostgator Swamp 2 year: $13.95 x 24 x 20% Off = $66.96 Discount!

* Hostgator Swamp 3 year: $12.95 x 36 x 20% Off = $93.24 Discount!

Enjoy!!

<img>bloggingtipsonline.com/.../img>

Sunday, December 28, 2008 8:40 PM by foeclupeaparo

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey !

I came across this site <a href=http://www.getfreeantiox.com>Free Antioxidant  Bottle</a>

They giving away AntiOxidant Bottles for Free for a limited period of time.

I already got mine..I thought I might as well share it with you great guys

Luv

Michelle

Saturday, January 10, 2009 9:54 PM by MichelleMaze

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Thank you. I read herelots of valuable sentences. Greetings from Poland.

Thursday, January 29, 2009 11:04 AM by seoelite

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi, I just became a part of this forum here and I would love to be a part of it.

Seriously, love the contribution of the community.

I thought I'd do some contributing of my own and share with you this amazing program i just got into thats making me now about $8000.00 a week and i just started.

check it out http://www.endlesscash365.com

Anyway, enjoy a superior online experience and hope to hang out with you guys more often.

Peace!

Sunday, February 08, 2009 3:30 PM by Baniargibia

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi,

I just became a part of this forum here and I would love to be a part of it.

Kudos goes out to the mods and members! Seriously, I love the contribution of the community. I thought I'd do some contributing of my own.

Our company is currently engaging in a weight loss product development.

We are very confident that our product is revolutionary and therefore we are giving out free samples to ladies who want to participate in our on-going study.  

Participants should at least weigh 200 pounds or more and strictly for ladies only. Kindly visit <a href=tinyurl.com/aoc325><b>Our Website</b></a> for more details.

Monday, February 09, 2009 6:42 AM by cadadyncCix

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello Everyone,

I am looking to buy some new <a href=www.zaidler.com/.../>figurative paintings</a> for my home.

Does anyone have some recomendations for me?

regards,

Thursday, February 12, 2009 3:18 PM by mrrobertdrew

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey everybody!

I've watched this forum for a while and decided it was time to get active myself.

To tell you a little about me, my name is Chelsea and I really love reading, my dogs, and to <a href=http://www.watchgossipgirl.org>watch gossip girl online free</a> (this is my favorite site to do it at).

Anyways, thanks for the great forum and I'll talk to you all more soon!

Friday, February 13, 2009 3:11 PM by ADDEDOFIP

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello Everyone,

I have been lurking the forum for some time now and finally decided to join and

give you something I feel can be beneficial to everyone.

I know a lot of you guys are struggling to make any profits at all online. Some of

you might be shooting for $100/day and think that's a realistic goal.

Well, let me just say this. You can *EASILY* make $800+ daily even without a

website, even if you're a complete newbie. Surfing these forums you can suffer

from 'information overload' - too much knowledge!

What you need is the right kind of information, precise step-by-step instructions

on how to make money.

What you need to do right now is head over to therichvillain.blogspot.com

and see for yourself.

Saturday, February 14, 2009 9:27 PM by TriTaaveptpew

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello everyone,

I hope this is the right place to post this - if not I apologize!

Anyway, I am relatively new around here but I have been a web designer for more than 3 years. I recently created a new layout for my <a href=http://www.playedonline.com>flash games</a> website and I would like to get feedback on it from you guys.

Both negative and positive comments will be appreciated so don't hold back !

I worked in the characters in the header - so specific feedback on it would be great (which animation do you like best?)

Thank you!

Monday, February 16, 2009 7:55 PM by nitvoxfive

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey there,

I saw this guy's <a href=http://www.artofapproaching.com>How To Meet Women website</a> and he was giving away a free ebook on picking up chicks.

I figured "what the heck? It's free!" and downloaded it.

I read the book and ended up getting a lot out of it. I like the guy's writing style and I actually learned a thing or two I didn't know before. I think anyone who wants to do better with girls should check it out.

I put it up on rapidshare if anyone wants to check it out for themselves:

rapidshare.com/.../19659144...d-Seducing.pdf

If there's anyone out there on this forum like me who wants to do better with women, then you're going to want to read this bad boy. I've already gotten two numbers thanks to what I learned!

(Okay, I'm not Don Juan yet, so sue me! lol)

Thursday, February 19, 2009 3:25 PM by empillElarm

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

If you want to stop spamming of your forum, send your URL here: stopforumspam(at)gmail.com or post comment here: stopforumspam(dot)blogspot(dot)com

Append your site to antispam black list of autosubmitter software. It's FREE!

Saturday, February 21, 2009 1:14 PM by momastoolve

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

<b>Gamblers Fool Proof Money Making System</b>

Hi, I just became a part of this forum here and I thought I'd do some contributing of my own and pimp a site that I use regularly for almost every successful bet I place.

<a href=http://the-winners-way.com><b>The-Winners-Way.com</b></a> is a site that shows you how to win 97% of your bets.  Regular Gamblers through there are making around <b><u>$5000.00 to $12,000.00</u></b> a week.  

Seriously, unbelievable returns!  <a href=http://www.the-winners-way.com><b>www.The-Winners-Way.com</b></a>

Anyway, I will be hangling out here more often so keep me posted on your earnings...

Saturday, February 21, 2009 4:40 PM by doraeremi

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Check this out...

I checked out this guy's <a href=http://www.artofapproaching.com>How To Meet Women website</a> and he was giving away a free ebook on picking up chicks.

I figured "what the heck? It's free!" and subscribed to his newsletter to get it.

The book is actually pretty good. I like the guy's writing style and I actually learned a thing or two I didn't know before. I think anyone who wants to do better with girls should check it out.

I put it up on rapidshare if anyone wants to check it out for themselves:

rapidshare.com/.../19659144...d-Seducing.pdf

If there's anyone out there on this forum like me who wants to do better with women, then you're going to want to read this bad boy. I just met a hot girl at the coffee shop today thanks to what I learned!

(Okay, I'm not Don Juan yet, so sue me! lol)

Sunday, February 22, 2009 10:47 AM by skyclesee

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

<a href=http://www.euroremo.ru>  Пиломатериал </a> pasquil|

Monday, February 23, 2009 3:41 AM by hogLoyannamon

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

<a href=http://www.euroremo.ru> Древесина</a> nudie|

Monday, February 23, 2009 6:56 PM by Benvieree

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi everybody! I'm curious if anybody knows any good free advertising sites? I have been posting at this <a href=www.freeadsplanet.com/>free ads</a> site and I've had great results so far, but I'd love to find more sites like it.

Thanks everybody, see you later.

Tuesday, February 24, 2009 3:03 AM by Dyncodoca

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey guys,

I am new to the forum and I have been browsing around the site for a little while and thought I

would contribute to the forum myself.

I came across an article that stated how some of the best handicappers in the world come up with their picks.

Supposedly they use all of these systems called <b>"Syndicate Betting Systems"</b>, and you can actually

purchase them yourself at:

<a href=http://www.syndicatebettingsystems.com>www.SyndicateBettingSystems.com</a>

As anyone heard about this or does anyone have the systems?

Supposedly the best handicappers like Doc, Larry Ness, Taw Jackson, Stan Sharp, and Sports Contrarian

are using these systems to develop their plays.

If anyone has these systems can you please let me know if it's worth it?

I want to buy them right now but I would like some feedback before I purchase.

Thanks

Friday, February 27, 2009 12:38 AM by Wrobiaapova

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello to all ! Greetings From Poland. very Good Page !

Friday, March 06, 2009 3:58 AM by greetingsfrompoland

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey

It took me a while but I've managed to get a score of 633,429 in <a href=www.playedonline.com/.../a>!

See if you can beat me! :-)

Cheers!

Wednesday, March 25, 2009 5:22 PM by bigredtetris

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Try http://ineedfile.com to look for rapidshare files. I using it regularly and allways satisfied with the results

It's redesigned now and looks much more beter. More than 7 000 000 files in their database.

They offer search toolbars for FF and IE. They also offer search bar for your site.Enjoy.

Monday, April 20, 2009 10:03 AM by Vlad

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Good day!

  Looking for simple ways to make methamphetamine in your house,pls click here to check

all easy ways <a href=http://www.greeklook.com>simple ways to make methamphetamine</a>

Friday, April 24, 2009 11:39 PM by Daymmerma

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

This site is very cool throughout the Internet by a hot girl  [url=http://king-xxx.blogspot.com/][color=red][b]Clik[/b][/color][/url]

Sunday, April 26, 2009 12:01 PM by Gydaywarm

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello!

  I was thinking of buying a <a href=www.ps3videogameshub.info/><font color=#333333>

PS3</font></a> for my sone. Since different brands can be played on the

Wii, is the same true with playstation 3? Can playstation 2 games be played on

playstation 3?

Thursday, April 30, 2009 5:09 PM by JekJorebome

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Thursday, May 07, 2009 7:52 PM by SaraOlinaforce

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

<a href=www.waysforkidstoearnmoney.net/>ways for kids to earn money</a>

Monday, May 11, 2009 10:25 AM by RaymondPrespeeect

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

<a href=http://ghostmap.info/>Have you seen a ghost?</a>

Tuesday, May 12, 2009 9:34 PM by Raymondrulesworld

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hoodia is great, make me feel NO hungry. I lost my first 10 lbs.Awesome. Check out here on Hoodia <a href=www.quizilla.com/.../to-be-a-perfect-me-thanks-uniquehoodia>hoodia gordonii reviews</a>

Thursday, May 14, 2009 11:02 AM by KnorgonoR

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

No way, this big guy is an actor on Stargate, and who the hell is Jace Hall anyway?

www.koldcast.tv/.../2384

Sunday, May 17, 2009 4:44 AM by Jadehaupblela

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Can anyone tell me who the hot brunette is that may be a new cast member on Stargate Atlantis?

www.koldcast.tv/.../2384

Tuesday, May 19, 2009 7:04 AM by Jadehaupblela

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Thursday, May 21, 2009 6:41 PM by DiegoshAH

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi,

I just Joined to this this forum and I enjoy all your great posts.

I know nothing about your possibilities, but I think you all are touched by the economical crisis.

It is a great thing if you can save on your dental treatment in this situation.

I get a good tip from my friend, and I want to share this info with you.

Chek this url if you have dental issues:

<a href=wadin-med.com/.../hungary-dentists.php>Cheap Dental Implants</a>

I would like to know your opinion!

Friday, May 22, 2009 11:21 AM by horpHoasp

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

שלום לכולם,  אני אחרי חיפוש מעמיק אחרי מחירים נורמאלים לתוספי תזונה ורציתי לחלוק אתכם את המידע:

מצאתי אצל בטבע בנחלה

(נחלת יצחק תל אביב –אבל הם עושים משלוחים וגם באינטרנט!: <a href=http://www.tvbn.co.il>ויטמינים</a> (כל מה שרצית לדעת על צמחי מרפא ולא ידעת את מי לשאול, תוספי תזונה מיוחדים מכל רחבי העולם  

<b>ייעוץ מקצועי  ומחירים לא רעים בכלל לדוגמא:</b>

ויטמין C עכשיו במחיר הכי זול שמצאתי  29.90שח  100 כדורים, שח 79.90 500 כדורי

Monday, May 25, 2009 4:07 PM by tweseejesty

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

103 web high home release indicate service

Saturday, May 30, 2009 3:51 PM by stabilized conclude fuels

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

deep responsible forcings google running basis case trading

Friday, June 05, 2009 2:46 AM by geological lapse era

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Below is a whole slew of keyboard tricks contributed by a fellow keyboard jockey Greg Heslington. I have to admit, some of them caught me by surprise. ... look ive got a uk keyboard and i want to know how to use the tricks...

Wednesday, June 10, 2009 2:46 PM by asfasf@hotmail.com

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here gas powered scooters

www.world66.com/.../gas_powered_scoote

Wednesday, June 10, 2009 10:33 PM by gas powered scooters

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi, interest post. I'll write you later about few questions!

Friday, June 12, 2009 4:56 PM by Kelly Brown

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

videos observed temperatures intergovernmental read sunlight external

Sunday, June 21, 2009 2:03 PM by business warmer late study

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Very informative article

Wednesday, June 24, 2009 4:54 PM by redlelidito

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

The title already says all... just download my <b><u>F.R.E.E. 5-page ebook</u></b> and start using the strategies explained here:

http://bit.ly/sell-hosting

Thursday, June 25, 2009 11:23 AM by appadnell

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

According to Bow Wow's 106 & Park interview, he and Ciara are history and I think <a href=world66.com/.../whoisciaradating>who is ciara dating</a> that she may have been the one to end things because he seemed a little bitter about it. I don't know who she is dating now. That photo of her on Nelly's bedside on that Over and Over Again video did cause me to think of the possibility of a relationship between Nelly & Ciara but it was after that that she went public with her relationship with Bow Wow. Yesterday on 106 & Park, Lil Fizz (formerly of B2K) hinted that he would be interested in dating Ciara. Rocsi was sure to call him out on that. Ciara is probably weighing her options and playing it cool right now. She may not be dating anyone.

Monday, June 29, 2009 11:33 PM by whoisciaradating

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

According to Bow Wow's 106 & Park interview, he and Ciara are history and I think <a href=world66.com/.../whoisciaradating>who is ciara dating</a> that she may have been the one to end things because he seemed a little bitter about it. I don't know who she is dating now. That photo of her on Nelly's bedside on that Over and Over Again video did cause me to think of the possibility of a relationship between Nelly & Ciara but it was after that that she went public with her relationship with Bow Wow. Yesterday on 106 & Park, Lil Fizz (formerly of B2K) hinted that he would be interested in dating Ciara. Rocsi was sure to call him out on that. Ciara is probably weighing her options and playing it cool right now. She may not be dating anyone.

Tuesday, June 30, 2009 1:11 AM by whoisciaradating

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

without approximately impact developed geological

Thursday, July 02, 2009 3:14 PM by country rise panel page ces

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

It's a masterpiece. I have never thought people can have such ideas and thoughts. You are great.

Monday, July 06, 2009 3:05 PM by CrisBetewsky

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Female fashion models who work with the designers throughout the season are also in the competition. Each week, as the number of designers dwindle, the number of models are also reduced, with one model remaining at the end. Models are randomly pre-assigned to a designer during the first challenge, and from the second challenge onwards, the designers will have an opportunity to pick the model they wish to work with. This usually happens during the start of every episode save for the first, with the winner of the previous challenge receiving first pick, and the other designers picking models in order through host Klum's random draw of large red shirt buttons with their names stored in a black velvet bag. Though, there are times when only the winning designer will be given the choice to pick with the following choices: either keep his or her previous model, take the losing designer's model <a href=www.stonepages.com/.../index.php Runway</a> from the last challenge, or switch models with another competing designer

Saturday, July 11, 2009 3:44 AM by ProjectRunway

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Female fashion models who work with the designers throughout the season are also in the competition. Each week, as the number of designers dwindle, the number of models are also reduced, with one model remaining at the end. Models are randomly pre-assigned to a designer during the first challenge, and from the second challenge onwards, the designers will have an opportunity to pick the model they wish to work with. This usually happens during the start of every episode save for the first, with the winner of the previous challenge receiving first pick, and the other designers picking models in order through host Klum's random draw of large red shirt buttons with their names stored in a black velvet bag. Though, there are times when only the winning designer will be given the choice to pick with the following choices: either keep his or her previous model, take the losing designer's model <a href=www.stonepages.com/.../index.php Runway</a> from the last challenge, or switch models with another competing designer

Saturday, July 11, 2009 4:52 AM by ProjectRunway

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey the planet,

I just became part of the forums and I just want to tell you how I would like to join this clan. For real. We really respect the contribution of your clique :P

Some information of me:

I'm originally from Spain but as we speak I am living to the foreign location that you could read in the post title. I'm extremely shy but I still am crazy about trips abroad. I also love hiking. <a href=http://creditimmobilierdefrance.org> :) </a>

Im 20 y o. I am really thrilled to be part in this clique.

Monday, July 20, 2009 7:47 AM by Sasmimejara

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

tks for the effort you put in here I appreciate it!

Monday, July 20, 2009 11:44 AM by MichaellaS

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

How's it going people,

We recently became part of the message boards and I just desire to tell you how I would love to join this community. In all seriousness. We really like the generosity of your clique :P

A little about me:

I am from England but at the moment I am travelling to the exotic country that you could see in the thread title :). Im really shy but I still am crazy about trips abroad. I also love mountain biking.

I'm 22 y o. I can't wait to take part in this clan.

I have a internet site too. go see it  assurancecompletementairesante.org

Tuesday, July 21, 2009 6:42 AM by Sasmimejara

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

alternative amplified medium respect made methane

Tuesday, July 21, 2009 1:43 PM by coltewolfo

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

How's it going world,

I recently became part of the forum and I just want to tell the world how we would love to join this clique. Seriously. I hold high the generosity of your community :P

A little of me:

I'm originally from India but now I am living to the barbarous country that you could see in the post title :P. I'm extremely shy but I still love travels. I also enjoy fishing.

Im 24 yo. I am really thrilled to be part in this clan.

I have a internet site too. check it out  creditimmobilierdefrance.org

Wednesday, July 22, 2009 12:25 PM by Sloplefinnops

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi people i am new to this. Just thought that i would say hello to everyone! dont really know

what else to say.I love sms, nothing else to say so bye

Wednesday, July 22, 2009 12:46 PM by Preovecrydric

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I am new to this forum ...

I like this place very much.

I am looking for some link exchange with any site that you have...

I also think you should check  <a href=http://www.call4peace.com> BPO SERVICE IN MANILA</a>

THEY SAVED ME 40% ON MY PAY ROLL!!!!!!!

Friday, July 24, 2009 10:19 PM by Liainsawabe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Is it so important?,

Wednesday, July 29, 2009 12:33 PM by name

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

So where it to find?,

Wednesday, July 29, 2009 4:11 PM by name

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 12:25 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 12:25 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 2:56 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 5:31 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 5:32 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I wanted to introduce myself - Thanks :)

<a href=www.ideamarketers.com Aloe</a>

Monday, August 03, 2009 7:59 PM by mary-aloe

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just felt I needed to break in and mention hello to everyone. I desired to introduce myself, my name is Joshua. Hello everyone, my name is Eric.howdy to all, I am recent here and my name is Jocelyn.

I decided to post today because I think place as a whole is very structural and cozy. I enjoy reading all of the issues and posts here and being that I am not much of a poster, I came to the conclusion to make my very initial post.

To dedicate back to the forum, I have decided I wanted to post a recent good experience that I have had with another website I used. This site was up front and very professional.

That site is OnlineComputerHelpers.com and they offer remote pc www.onlinecomputerhelpers.com - online computer repair

Friday, August 07, 2009 6:10 PM by EffenseFeda

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Sweetie-pie Chum humour plug me some cool unchained sms messaging webistes i purposefulness be highly thankful.

----------

http://www.cutelovelysms.com - Wise words

Friday, August 07, 2009 6:23 PM by amarfaway

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey People

I wanted to share with you a AMAZING site I just came across teaching <a href=http://www.kravmagabootcamp.com><b>Krav Maga</b></a> Online If you guys have seen the Discovery Channel TV Show called Fight Quest you would have seen their chief instructor Ran Nakash there. Anyways, I think it's worth a look. I've been a member for the last 4 months, and I've been loving every second of it.

Hope I've helped someone here,

all the best

Tuesday, August 11, 2009 12:39 PM by CottBamyjam

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just felt I needed to break in and say hello to everyone. I desired to present me, my name is Christine. Hello everyone, my name is Kim.Hello to all, I am new here and my name is Ted.

I determined to post today because I think forum as a whole is very functional and social. I enjoy reading all of the issues and posts here and being that I am not much of a poster, I decided to make my very first topic.

To dedicate back to the community, I have made up my mind that I wanted to post a recent sure experience that I have had with another company I used. This website is up front and extremely professional.

That site is OnlineComputerHelpers.com and they provide online www.onlinecomputerhelpers.com - pc repair

Tuesday, August 11, 2009 7:09 PM by EffenseFeda

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just wanted to make a quick thread to introduce myself. My name is Maryann and I stumbled this particular place through a fast Google and preferred to just say hello. I would enjoy engaging in future discussions and look forward to speaking with everyone.

My favorite hobby is www.squidoo.com/onlinecomputerrepair101 - computer repair

Friday, August 21, 2009 9:04 PM by EffenseFeda

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just wanted to make a fast experience about a positive experience I had with a company I just utilized. The name of the company is OnlineComputerHelpers.com and they were able to fix my pc within minutes of letting them know my problem to them. I was getting irritated with www.onlinecomputerhelpers.com - computer repair for a long time prior to using them and would recommend them to everyone!

Wednesday, August 26, 2009 4:55 AM by EffenseFeda

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here are the newest valid <b>Godaddy coupons</b>. I just used OK9 today to pick up some new domains and it worked awesome.

<b>OK7</b> - 10% Discount on total order

<b>OK8</b> - 20% off any order of $50 or more

<b>OK9</b> - 30% off .com Domain Renewals or New domain registration.

**Special Godaddy Code Valid through Aug 31, 2009.

Go Daddy Coupon <b>OK25</b> 25% Off Hosting or any order of $91 or more.

Thursday, August 27, 2009 5:40 AM by Urinoucounc

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here are some of the newest <b>Go Daddy coupons</b>. I just used OK9 to buy some domains and it worked great.

<b>OK7</b> - 10% off any item

<b>OK8</b> - 20% off $50 or more

<b>OK9</b> - 30% off Domain Renewals or New domain registration.

**Special Go Daddy Code Valid through August 31, 2009.

Godaddy Coupon <b>OK25</b> 25% Off Hosting or any order of $91 or more.

Thursday, September 03, 2009 5:15 AM by Urinoucounc

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

What are you contemplative thither swine flu therapy? Some flu vaccine, like <a href=wiki.pylonshq.com/.../~buy-tamiflu>tamiflu side effects</a>

seems to commission high-minded, but i'm startled anytime...

Thursday, September 03, 2009 3:37 PM by elarmaRaG

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Here are the newest <b>Godaddy promo codes</b>. I just used OK9 to purchase some .com domains and it worked great.

<b>OK7</b> - 10% off everything

<b>OK8</b> - 20% Off $50 or More

<b>OK9</b> - $7.49 Domains and Renewals

**Special Godaddy Promo Code Expires 08/31/2009.

Godaddy Coupon <b>OK25</b> Saves 25% on Hosting or any order of $91 or more.

Thursday, September 03, 2009 11:36 PM by Urinoucounc

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey party people , I really like your  weblogs.asp.net site so far it look like a  striking <a href=www.stockhideout.com/.../pennystocks.html>penny stock pick</a> site that I saw somewhere a while back. take a moonlight bike ride usually i'm busy and I work from home so I will check back.

Wednesday, September 09, 2009 1:30 AM by SmoobbyImmole

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just wanted to say hi, I'm new here and I hope to contribute more in the future <a href=http://ww.thebdsmshop.com>:)</a>.

Wednesday, September 09, 2009 9:50 AM by BDSMShop

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just wanted to say hi, I'm new here and I hope to contribute more in the future <a href=http://ww.thebdsmshop.com>:)</a>.

Wednesday, September 09, 2009 10:54 AM by BDSMShop

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey party people , surfed and found weblogs.asp.net site so far it look like a  unbelievable <a href=www.stockhideout.com/.../penny-stock-pick.html>penny stock pick</a> site that I saw somewhere a while back.  fly away usually i'm busy and I work from home so I will check back.

Friday, September 11, 2009 7:01 AM by Penny Stock Pick

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

how goes it , surfed and found weblogs.asp.net site so far it look like a  admirable <a href=www.stockhideout.com/.../pennystocks.html>penny stock pick</a> site that I saw somewhere a while back. Walk pet usually i'm busy and I work from home so I will check back.

Monday, September 14, 2009 9:17 PM by Penny Stock Pick

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I just wanted to make a fast experience about a positive experience I had with a company I just utilized.

Tuesday, September 15, 2009 1:20 AM by Sharon Collins

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

hi guys,new UK bodybuilder here, looks like a decent forum with lots of good info - hopefully i can contribute & learn.

Tuesday, September 15, 2009 6:34 AM by brucejohnson

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Howdy I have just discovered this blog weblogs.asp.net and i'm glad i

did! I hope to share my creations and ideas for everyone to enjoy and give feedback ,,just curious you take donations?

_____________________________________________________________________________________________________________________________________________________________________________________________________________________________

<a href=www.stockhideout.com/.../pennystocks.html>penny stock pick</a>

 

Thursday, September 17, 2009 5:18 AM by brucejohnson

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Well, I've been around since the days of Meso and before. I'm a vet and a heavily contributing member over on Outlaw. I;m already VERY impressed with the volume on this board and that resources available!

I hope to make some friends and maybe help some people out..Take care! I assume weblogs.asp.net take donations?

_____________________________________________________________________________________________________________________________________________________________________________________________________________________________

<a href=www.stockhideout.com/.../pennystocks.html>penny stock pick</a>

 

Thursday, September 17, 2009 9:22 PM by brucejohnson

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Didn't you know about new flu revelations? It's something strange for me, but it seems to be quiet these days.

But anyway, we have the best fle vaccine - enter

<font color=Red><b>

www.trainingpeaks.com/.../thread-view.asp

</b></font>

GOOGLE says many interesting things about it!

Friday, September 18, 2009 5:24 PM by mynccrarmafes

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Didn't you know about new flu revelations? It's something strange for me, but it seems to be quiet these days.

But anyway, we have the best fle vaccine - enter

<font color=Red><b>

www.trainingpeaks.com/.../thread-view.asp

</b></font>

GOOGLE says many interesting things about it!

Friday, September 18, 2009 6:00 PM by mynccrarmafes

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello,

you will be welcomed on my <a href=creditcarddebtsolution.weebly.com/>Debt Management</a> site!

Seeya!

Saturday, September 19, 2009 4:01 AM by BexNeutszes

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hey everyone cool site weblogs.asp.net I am new so look like I have alot to read lol anyway glad I joined.You guys do donations?

_____________________________________________________________________________________________________________________________________________________________________________________________________________________________

<a href=www.stockhideout.com/.../pennystocks.html>penny stock pick</a>

 

Saturday, September 19, 2009 9:21 AM by brucejohnson

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Someone Leaked the movie from the studios and its great! The Sceanrio and the plot was extreamly well played out. i loved every minute of it!

<a href=tinyurl.com/mmehqq>Watch The New Twilight Movie Online Now</a>

Thursday, September 24, 2009 3:52 AM by attinyrhignaw

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

myspace/misstressxmassacre below the flashing Scarielle sign is a picture and beside that is a character. How do I make something like it to match me, like website is it from?

________________

<a href="www.youtube.com/watch iphone 3g</a>

Friday, September 25, 2009 8:58 AM by poori

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Someone Leaked the movie from the studios and its great! The Sceanrio and the plot was extreamly well played out. i loved every minute of it!

<a href=tinyurl.com/mmehqq>Watch The New Twilight Movie Online Now</a>

Friday, September 25, 2009 4:47 PM by attinyrhignaw

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hello there.

I have something to say, about aloe vera, something about which you wrote above, about health and minerals... For a long time, I and my fine friend use the products of the FLP Company. We at all times see the fine results and also we earn money for our families and we are happy. My friend works with aloevera in the company of Forever Living has more than 5 years (My friend works ONLY in the Forever Living Products Company and has a wife and three children). I know aloevera products for beauty for a long time, but a year ago, began working as a distributor in the FLP

Company.

Of course, the job is some difficult, but in no other case, you really can earn so much money with so much much fun and good smiling faces around....

So if you want to discuss something about which you wrote above, and about my experience with AloeVera products for health, I'll always be glad to talk.

Best regards from Washington state and have a nice day!

Andrew - Aloe Vera Distributor

Tuesday, September 29, 2009 11:33 PM by Aloe Vera Distributor - myflp.org

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi hello and whats up?!

Im new here so i thought id drop by and show myself. i love movies!!! anywayz laters

<a href=http://www.darkhd.com>Watch Movies Online Now</a>

Wednesday, September 30, 2009 8:18 PM by toonPayor

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi hello and whats up?!

Im new here so i thought id drop by and show myself. i love movies!!! anywayz laters

<a href=http://www.darkhd.com>Watch Movies Online Now</a>

Friday, October 02, 2009 12:05 AM by toonPayor

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

If you have to do it, you might as well do it right.,

Tuesday, October 06, 2009 5:15 PM by Geaweth

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

Hi to all of you!

Im looking foward to <a href=www.watchphilanthropist.com/>watch Philanthropist</a>

I appreciate your help!

Thursday, October 08, 2009 10:32 PM by erymnsiny

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I got the new iphone and took some pictures of my sons first haircut. When I updated it with itunes I lost those pictures and got the pictures I had on my old iPhone. Is there anyway to get those new pictures back?

________________

<a href="www.youtube.com/watch iphone 3gs</a>

Friday, October 09, 2009 1:07 PM by poori

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

I have a family plan so I've heard that can make the overally monthly cost less but I'm not positive. On my family plan, we have an unlimited texting plan already. Does that texting plan carry over if I get the Iphone? I also want internet use. Any estimate at a monthly cost?

________________

<a href="www.youtube.com/watch 3gs</a>

Friday, October 09, 2009 1:30 PM by poori

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

It is the coolest site, keep so!,

Friday, October 09, 2009 5:23 PM by Boewyn

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

It is the coolest site, keep so!,

Friday, October 09, 2009 7:09 PM by Haerrassi

# re: Some keyboard input tricks for Silverlight 1.1 (Alpha)

One day I was surfing internet and suddenly I found site named www.home-businessreviews.com I learned how to start my own home business and i was able at last leave my work where i worked 1 year, now I'm making 150$/day. I was able to make such kind of cash because I discovered some very great home business reviews. At website called www.home-businessreviews.com

Anyway seems that website owner at last Came across really good home business program which helped him to begin his own home business, so he finally decided to make website and tell about his own experience about earning money online. It seems that he lost so much money before he came across winner home business program which actually helped to make money online. But which one? take a look at website below!

<a href=http://www.home-businessreviews.com>home business ideas</a>

Thursday, October 15, 2009 6:56 AM by DumJumsgunk