Posts
 
Reputation
Joined
Last Seen
Ranked #217
Strength to Increase Rep
+9
Strength to Decrease Rep
-2
91% Quality Score
Upvotes Received
117
Posts with Upvotes
99
Upvoting Members
55
Downvotes Received
11
Posts with Downvotes
10
Downvoting Members
8
31 Commented Posts
22 Endorsements
Ranked #64
Ranked #246
~278.63K People Reached
About Me

Distinctly average . . .

Interests
Climbing, gaming, driving, swimming, motorbikes, surfing, PUB !
PC Specs
If I had one that works I'd post them...
Favorite Tags
Member Avatar for Reverend Jim

I'm with happyGeek on this one. I watch the odd TV show like Men Who Jump Off Roofs or The Island but the majority of it is un watchable. I have to endure The Only Way Is Essex and Big Brother...

Member Avatar for KomalBhatt
9
3K
Member Avatar for The Dude

Quote ... Raining Cats and Dogs" doesn't mean a thing! Things are about to get messy

Member Avatar for Dani
3
11K
Member Avatar for Duki

Porridge made using water instead of mild and a cup of black coffee... I'm on a lean mass building diet and this my second breakfast of the day... I'm bored of eating already!

Member Avatar for Dani
22
17K
Member Avatar for vegaseat

"it's not the years in your life it's the life in your years" - abraham lincoln

Member Avatar for Reverend Jim
15
13K
Member Avatar for LastMitch

Went to see the new Bond: Skyfall on Sunday and thought it was amazing! I wasn't a fan of the older Bond films because they were too light and toung and cheek (which they are supposed to be), but the Daniel Craig ones are darker, gritty and not about ridiculous …

Member Avatar for LoanHensley
6
6K
Member Avatar for H. B. Duran

[QUOTE=johnwords;1402279]parents should be cautious when let children play some games because some may really do harm to your kids[/QUOTE] I've never been punched in the face by a video game in over 15 years i've been playing. Games can help with geography, i went to Venice and knew my way …

Member Avatar for Naheedmir
2
2K
Member Avatar for arun.gtm11

> i want to make a new sheet one each button click in excel Can you clarify this a little please? is the button on an spread sheet or on the C# WinForm?

Member Avatar for jackflint
0
3K
Member Avatar for Reverend Jim

Los Angeles’ full name is “El Pueblo de Nuestra Senora la Reina de los Angeles de Porciuncula”.

Member Avatar for John_smith
10
21K
Member Avatar for ss125
Member Avatar for ChrisHunter

I'm currently doing some encoding work to protect a site from XSS attacks. We've stuck a bunch of `<script>debugger;</script>` tags in the db. Dispite my best efforts, the strings I've encoded to stop the debugger getting hit (to prevent an XSS attack), are still getting hit in developer tools. Is …

Member Avatar for ChrisHunter
0
822
Member Avatar for amacss

I'll get this one in there first... DaniWeb is great for learning C#. If you have any questions people will answer and there's quite a few helpful code snippets. I used to use [C-SharpCorner](http://www.c-sharpcorner.com/code/) when I was at Uni and there's also a site, called [Pluralsight](http://www.pluralsight.com/), which is useful when …

Member Avatar for ddanbe
0
288
Member Avatar for vegaseat

Plenty of hail stone showers, rain, wind and cold temp today. Temp has dropped quite a bit lately. Pales in comparison to the Philippines at the moment though so I count myself lucky.

Member Avatar for ddanbe
3
567
Member Avatar for smartjugal

I agree with riteshbest make sure you don't jump into it all head first so as not to confuse yourself early on. although i said don't jump in head first a few books are: Head first C# Object orientated programming consepts and design (good idea to understand the consepts too)

Member Avatar for TekknoDraykko
0
326
Member Avatar for Taufique111

Apologies but I don't fully understand your question. When you click a row in the first dataGridView, do you want to select that same row in the second dataGridView?.

Member Avatar for Taufique111
0
309
Member Avatar for aditya55

Hi Kiran, You should start a new thread for your question. You may receive more responces if you do.

Member Avatar for ChrisHunter
0
563
Member Avatar for hastings

Are you just trying to set the value to blank? If so just do textBox.Text = string.Empty;

Member Avatar for Fenrir()
0
105
Member Avatar for Lethugs

Why don't you create a stored procedure to search for a record based on an ID passed in from the data grid view, instead of doing the query in your VB code? It means all your stored procedures are in one place and have can be easily identified and modified. …

Member Avatar for Lethugs
0
267
Member Avatar for abelLazm
Member Avatar for James_40
8
9K
Member Avatar for stultuske
Re: Knee

I had good knees until I had a scooter accident about 8 years ago and they've been weak ever since. They usually give in every 12 months or so and it's back to limping around with knees the size of foot a ball. I'd take anyother joint pain over knee …

Member Avatar for Warrens80
0
169
Member Avatar for rony001

Try this: UPDATE table1 t1 SET table2.b = t1.b WHERE t1.a = table2.a Let me know if this works or not.

Member Avatar for isozworld
0
280
Member Avatar for kidkardel

It's because you trying to put a string, descd.Text, into your decimal parameter without converting it. `Convert.ToDecimal(descd.Text);`

Member Avatar for isozworld
0
200
Member Avatar for iConqueror

Google is your friend... http://msdn.microsoft.com/en-GB/library/ms173156.aspx http://www.csharp-station.com/Tutorial/CSharp/lesson13 http://www.dotnetperls.com/interface

Member Avatar for llgms
0
271
Member Avatar for awesomelemonade

Refraction of light through particles in the earths atmosphere, that's not really a stupid question that gets a stupid answer. What was the last war Napoleon Bonaparte fought before his death in 1821 ?

Member Avatar for Slavi
1
2K
Member Avatar for Warrens80

Ford Focus Zetec 1.6 for the last 4 years which I'm selling because I don't use it much anymore :( I now ride a Suzuki SV650 SK8 in blue which is why I don't use my car anymore. Always wanted a bike, even over a car, I can't get enough …

Member Avatar for Slavi
1
397
Member Avatar for Louis4christ

From what I've just read you might need to intall the version of .NET framework you used to build your application, on the machine you've installed it on as it may not already be installed.

Member Avatar for javed.iqbal.3979
0
222
Member Avatar for oussama_1

Eating while typing is one of my worst but biting the inside of my mouth while I'm coding is the wors. I look like I'm praticing for a gurning competition and it hurts like hell by the time I'm finished!

Member Avatar for Warrens80
1
366
Member Avatar for mattster
Member Avatar for Sizwe_1

Use a JOIN clause to join information from more than one table. This should show all rooms that are available on the specified dates. SELECT r.RoomID, r.RoomNumber, r.RoomType, r.PricePerNight, b.CheckIn, b.CheckOut FROM Rooms r LEFT JOIN Bookings b on b.RoomID = r.RoomID WHERE (Convert(datetime, b.CheckIn, 103) NOT BETWEEN Convert(datetime, @CheckInDate, …

Member Avatar for ChrisHunter
0
242
Member Avatar for lilita

Replace `saveFileDialog1.Close();` with `Application.Exit();` saveFileDialog1.Close(); terminates the application

Member Avatar for ChrisHunter
0
159
Member Avatar for lilita

Try something like the following int number if (int.TryParse(textBox1.Text, out number)) { // value is valid whole number. } else { // value is not a valid whole number. }

Member Avatar for ChrisHunter
0
156