Wrox Programmer Forums
|
BOOK: Beginning Microsoft Visual C# 2008 ISBN: 978-0-470-19135-4
This is the forum to discuss the Wrox book Beginning Microsoft Visual C# 2008 by Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White; ISBN: 9780470191354
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning Microsoft Visual C# 2008 ISBN: 978-0-470-19135-4 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 16th, 2010, 09:39 PM
Authorized User
 
Join Date: Nov 2009
Posts: 22
Thanks: 1
Thanked 3 Times in 3 Posts
Send a message via Yahoo to msherburne84
Default Pg. 450 Validating Textbox

On pg. 450 in the book in the grayed out area the line that says
Code:
this.textBoxName.Validating += new System.ComponentModel.@@ta
CancelEventHandler(this.textBoxEmpty_Validating);
What is the @@ta doing?????
 
Old January 26th, 2010, 11:29 AM
Registered User
 
Join Date: Jan 2010
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

The @@ta is a misprint:

http://www.wrox.com/WileyCDA/WroxTit...Cd-ERRATA.html

the code should read

Code:
this.textBoxName.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxEmpty_Validating);
NB





Similar Threads
Thread Thread Starter Forum Replies Last Post
Validating multiple dates entered in textbox abhishekkashyap27 Javascript How-To 1 May 13th, 2008 06:55 AM
pointing cursor from one textbox to other textbox lakshmi_annayappa ASP.NET 1.0 and 1.1 Basics 2 August 2nd, 2007 03:41 PM
validating xml m_rajib C# 0 May 5th, 2006 12:53 AM
Validating textbox in field level Paula222 Access VBA 5 February 15th, 2006 11:57 AM
Masked TextBox & formatting TextBox melvik C# 1 September 22nd, 2003 11:01 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.