The Artima Developer Community
Sponsored Link

.NET Buzz Forum
PDC – PreCon Session - .NET The Smart Client Perspective (Part 3)

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Peter G Provost

Posts: 849
Nickname: pprovost
Registered: Aug, 2003

Peter G Provost is a Solution Architect for Interlink Group in Denver, CO.
PDC – PreCon Session - .NET The Smart Client Perspective (Part 3) Posted: Oct 26, 2003 8:32 PM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Peter G Provost.
Original Post: PDC – PreCon Session - .NET The Smart Client Perspective (Part 3)
Feed Title: Peter Provost's Geek Noise
Feed URL: /error.aspx?aspxerrorpath=/Rss.aspx
Feed Description: Technology news, development articles, Microsoft .NET, and other stuff...
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Peter G Provost
Latest Posts From Peter Provost's Geek Noise

Advertisement

Whew! I'm starting to feel like Scoble with all this damn posting. But I did promise that I would, and it is kinda fun 'cause I'll have this record to remind me what I saw. There is no way I'll remember it all otherwise...

For about a half hour leading into lunch, Rocky dug into ADO.NET and data binding. He was using all the VS.NET components and wizards which isn't really my cup of tea, but that's just my opinion. He did show something that I haven't seen before, mostly because I haven't done much data binding in WinForms...

private void BindControl()
{
   Binding b = new Binding
      ("Text", ds, "customers.custToOrders.OrderAmount");
   b.Format += new ConvertEventHandler(DecimalToCurrencyString);
   b.Parse += new ConvertEventHandler(CurrencyStringToDecimal);
   text1.DataBindings.Add(b);
}

That is cool stuff. I've done so much ASP.NET data binding with templated controls that I didn't realize you could do this. Good stuff.

Anyway... after lunch Rocky finished up ADO.NET and Chris took over... new topic: Threads.

Chris' threads chat was excellent (although it was basically a rehash of the threading chapter of his book). Rather than tell you all the good stuff he talked about, I would suggest everyone just read the book. It is a must-read if you do WinForms.

As we headed into the afternoon break, Rocky took over again and introduced client/server/n-tier programming. Started asking the audience about the difference between Remoting and Web Services, etc.

Break time!

Read: PDC – PreCon Session - .NET The Smart Client Perspective (Part 3)

Topic: WMP Blog Plugin on Windows 2003? Previous Topic   Next Topic Topic: LA Email

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use