Huidige artikelen | Zoek | Syndicatie
VB nieuwsbrief April 2006
30-4-2006 -
.NET,
Maurice de Beijer
|
Visual Basic Developer Network Newsletter
Beste []Firstname[] []Lastname[],
Het heeft even geduurd maar het voorjaar is eindelijk hier. Ik weet niet hoe het met jullie zit maar ik zit uit te kijken naar een mooie zomer. Over uitkijken gesproken, er is nog heel iets anders waar we als Visual Basic .Net ontwikkelaars naar uit moeten kijken! Wat dan wel hoor ik je al vragen. Nou Microsoft heeft de lancering van Windows Vista dan misschien uitgesteld tot de eerste helft van 2007 maar dat neemt niet weg dat het voor de software ontwikkeling weer grote veranderingen tot gevolg zal hebben. Natuurlijk kan je gewoon doorgaan op de manier waarop je de afgelopen jaren gewerkt hebt, perslot van rekening werkte die applicaties ook, maar misschien heeft de nieuwe manier van ontwikkelen toch ook wel zo zijn voordelen. Om goed voorbereid te zijn is het nu al tijd om uit te kijken naar wat Vista ons gaat brengen. Dus laten we deze zomer maar eens vast in de boeken duiken en ons gaan verdiepen in Windows Presentation Foundation (WPF), Windows Communication Foundation (WCF) en Windows Workflow Foundation (WWF).
Met vriendelijke groet, Mark Vroom & Maurice de Beijer Software Developer Network maurice.debeijer@sdn.nl
Software Developer Conference 2006
Op 15 en 16 mei vindt in Papendal de 15de Software Developer Conference plaats. Tijdens deze bijeenkomst zijn er vele internationaal bekende sprekers aanwezig die je anders niet vaak in Nederland zal horen. Kort gezegd een eerste klas gelegenheid om van de experts te leren. Uiteraard zijn er de nodige sessies over Visual Basic maar alsof dat nog niet genoeg is zijn er ook sessies over Delphi(.Net), C#, ASP.NET, SQL, Databases en DotNetNuke.
Dit jaar is een van de hoogtepunten de live Dot.Net.Rocks show met niemand minder dan Mark Miller en Carl Franklin! Zie http://www.dotnetrocks.com voor meer informatie over de Dot.Net.Rocks show. Verder staat een keynote op het programma verzorgd door Ruud de Jonge. Ruud is de Developer Platform Evangelist bij Microsoft Nederland
Een kort overzicht van een paar van de in totaal meer dan 90 sessies die verzorgd worden door niet minder dan 30 sprekers:
- Object Binding with .NET 2.0 door Kent Alstad
Determining the best practice for binding data to UI controls within a .NET application is not clear-cut. N-Tier developers have a strong desire and justification for developing using their own business objects but the convenience of the ADO.NET DataSet leads us away from this object oriented mult-tier implementation. With the introduction of the ObjectDataSource class in the .NET 2.0 framework the argument for abandoning DataSets and focusing on objects is stronger than ever. This session will provide a guided tour of the options and implementations available for binding ASP.NET controls directly to business objects. Examples will demonstrate how to bind controls using the new .NET 2.0 ObjectDataSource to reduce UI code volume.
- Smart Client Applications with Visual Studio 2005 Tools for Office (VSTO) door Tim Huckaby
This session focuses on the power and developer productivity of Visual Studio Tools for the Office System (VSTO). VSTO is a .NET Smart Client technology and this session will delve into the tips and tricks, positives and negatives when designing and building smart client applications with VSTO. VSTO allows you to build managed code applications with .NET languages like VB.NET and C# and have the functionality of those applications manifest in the rich user interfaces of Microsoft Excel, Word, Outlook and the rest of the Office stack. You will learn just how easy it is to build powerful VSTO applications in this session and how to deploy those applications. This session will cover the current 2.0 version of VSTO - Visual Studio Tools for Office, Version 2005 which addresses some of the biggest challenges that Office solution developers are facing today, including separation of data and view elements, server-side and offline scenarios, seamless integration with the Visual Studio tools, deployment and updating. And it will delve into the future of VSTO – v3 and it’s coverage of the entire Office System stack.
- ASP.NET 2.0 – Essentials for Building Professional Web Sites door Michele Leroux Bustamante
ASP.NET 2.0 puts even more tools in the hands of hungry Web developers…making it extremely easy to whip together a great looking Web application. With all of these new features, however, comes the need to develop a new checklist of recommended practices for building professional ASP.NET applications. In this session you’ll be provided with an essential list of guidelines for building ASP.NET 2.0 applications including best practices for page layout and design; navigation; error handling; caching; state management; authentication and authorization; configuration and encryption; component design and deployment; component security and sandboxing; and more. At the end of this session, you'll have access to samples that demonstrate each of these guidelines, with some reusable application templates to help you build secure, maintainable and professional ASP.NET 2.0 applications. Voor meer informatie: http://www.sdc.nl
|

Postbus 506 7100 AM Winterswijk Tel. (0543) 51 80 58 Fax(0543) 51 53 99
|
Nieuws Algemeen
Technet MSDN Briefing
Op 2 en 11 mei organiseert Microsoft twee Technet MSDN Briefings. Op deze dagen worden we weer bijgepraat over de nieuwste technologieën uit de Microsoft keuken zoals WinFX, Windows Workflow en Office 2007 Server. Speciaal voor die gene die niet naar een van de bijeenkomsten kunnen gaan wordt de bijeenkomst van 2 mei in ‘t Spant in Bussum live via het internet uigezonden.
Voor meer informatie: http://www.microsoft.com/netherlands/evenementen/technetmsdn/voorjaar2006/default.aspx
Dit evenement staat hierboven beschreven.
Voor meer informatie: http://www.sdc.nl
Fatal errors in de Visual Basic compiler
Uiteraard kunnen we niet alleen naar de toekomst kijken, er moet nu ook software ontwikkeld worden. Ik weet niet of jullie er wel eens last van hebben maar persoonlijk heb ik zo af en toe wel eens een fatal error in de Visual Basic compiler, iets wat best wel vervelend is. Gelukkig is er goed nieuws en heeft Microsoft een hot fix voor de VB compiler uitgebracht die dit probleem op moet lossen. Het enige nadeel is dat deze niet te downloaden is maar via Microsoft Product Support Services aangevraagd moet worden, niet altijd een even vlotte en plezierige ervaring. Het bijbehorende KB artikel is te vinden op: http://support.microsoft.com/default.aspx?scid=kb;en-us;915038
Visual Basic Tip
Een singleton design pattern is een van de meer voorkomende design patterns. Dankzij generics is een singleton type heel makkelijk te maken en vindt er geen duplicatie van code meer plaats, altijd een goede zaak.
Public Class SingletonDemo
Public Sub main()
' Using the singleton
TestClass.Instance.Write()
End Sub
End Class
'''
''' Generic singleton object wrapper.
'''
'''
'''
Public Class SingletonProvider(Of T As New)
Private Sub New()
End Sub
Public Shared ReadOnly Property Instance() As T
Get
Return SingletonCreator.instance
End Get
End Property
Class SingletonCreator
Shared Sub New()
End Sub
Friend Shared ReadOnly instance As New T
End Class
End Class
'''
''' Test class for the singleton wrapper.
'''
'''
Class TestClass
Private m_dt As DateTime
Public Sub New()
m_dt = DateTime.Now
End Sub
'''
''' Test procedure.
'''
'''
Public Sub Write()
Console.WriteLine(m_dt.Ticks.ToString())
End Sub
'''
''' Returning the singleton.
'''
'''
'''
'''
Public Shared ReadOnly Property Instance() As TestClass
Get
Return SingletonProvider(Of TestClass).Instance
End Get
End Property
End Class
|
|
SDN Agenda
15 & 16 mei 2006 : Software Developer Conference Lokatie: Papendal
Overige
2 mei 2006 : Technet MSDN Briefing Wie: Microsoft Lokatie: Spant Bussem
11 mei 2006 : Technet MSDN Briefing Wie: Microsoft Lokatie: Veldhoven
|
Het Software Developer Network
Het Software Developer Network, ofwel de SDN, is er door en voor ontwikkelaars. We zijn altijd op zoek naar ontwikkelaars die artikelen en/of tips & tricks voor www.sdn.nl willen schrijven. Heeft u interesse? Stuur dan een mail naar de SDN redactie redactie@sdn.nl .
Deze nieuwsbrief ontvangt u omdat u zich heeft aangemeld op de SDN website. Mocht u deze nieuwsbrief niet meer willen ontvangen, dan kun u dit doen door uw profiel aan te passen op www.sdn.nl.
You receive this newletter because you are a registered user on the SDN website. If you do not wish to receive this newsletter, please change your profile on www.sdn.nl.