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

Leave a Comment

(required) 
(required) 
(optional)
(required)