This short tutorial shows how to connect to MySQL server using Visual Basic .Net.
Tag: .NET
Run asp.net shopping cart AdVantShop.NET via Visual Studio.NET 2008 + SQL Server 2005
Demonstration of running the project AdvantShop.NET asp.net shopping cart via Visual Studio.NET 2008 + SQL Server 2005. For more information about ASP.NET eCommerce Shopping Cart, please go to www.advantshop.com
ASP.NET Tutorial – GridView and FormView – Part2
In this lesson, you will learn about the GridView and FormView controls and how you can use some of the features of these controls to make editing and displaying of database content easier. For Best View: watch the video in Full Screen Mode.
5 4 Creating a Simple Browser in Visual Basic.NET
Using Visual Basic.NET (in this instance 2005) in order to create a simple browser that basically hijacks functionality from internet explorer Here’s the code: Private Sub btnBack_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBack.Click WebBrowser1.GoBack() End Sub Private Sub btnFwd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFwd.Click WebBrowser1.GoForward() End Sub Private… Continue reading 5 4 Creating a Simple Browser in Visual Basic.NET
Adding CSS to ASP.NET master page
In this video you will learn how to add a color scheme to the master page so it pleases the eye.
Expert C# 2005 Business Objects, Second Edition
ISBN13: 9781590596326 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Rockford Lhotka started writing his Business Objects books in 1996, and over the years, hes become one of the worlds foremost authorities on building distributed object-oriented systems. His industry-standard VB . NET Business Objects book not only addresses changes in .… Continue reading Expert C# 2005 Business Objects, Second Edition
ASP.NET Tutorial – Master Pages & Site Navigation – Part2
Use Master Pages and Site Navigation? Create a web site with a consistent layout and design across all its pages using ASP.NET 2.0 MasterPages. See how easy it is to add navigation to a web site using the new TreeView and SiteMapPath controls. For Best View: watch the video in Full Screen Mode.
ASP.Net 2.0 Membership IV Roles
Microsoft ASP.Net 2.0 Membership IV : Roles – Shalvin
Asp.Net IV : Label AssociateControlId AccessKey
Microsoft Asp.Net IV : Label Control AssociateControlId and AccessKey
Asp.Net IV : Label AssociateControlId AccessKey
Microsoft Asp.Net IV : Label Control AssociateControlId and AccessKey – Shalvin
ASP.Net 2.0 Membership IV Roles
Microsoft ASP.Net 2.0 Membership IV
Beginning Visual Basic 2010
ISBN13: 9780470502228 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product DescriptionThis book is designed to teach you how to write useful programs in Visual Basic 2010 as quickly and easily as possible. There are two kinds of beginners for whom this book is ideal: You’re a beginner to programming and you’ve chosen… Continue reading Beginning Visual Basic 2010
ASP.Net Ajax in Action
ISBN13: 9781933988146 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Ajax has revolutionized the way users interact with web pages today. Gone are frustrating page refreshes, lost scroll positions and intermittent interaction with a web site. Instead, we have a new generation of fast, rich, and more intuitive web applications. The… Continue reading ASP.Net Ajax in Action
ASP.NET Tutorial – Understanding Web Application State- Part1
In this lesson, you will see how to maintain state in ASP.NET, including the various objects you can use to store information for your ASP.NET 2.0 applications. For Best View: watch the video in Full Screen Mode.
Asp.Net I : Introduction and Button Control
Microsoft Asp.Net I : Introduction and Button Control – Shalvin
How To Send Email With ASP.NET
This video will go into detail about how to send email with ASP.NET. If you have any other questions, please visit www.detacheddesigns.com
Visual Basic 2008 / Visual Basic .NET Tutorial #7 – The Progress Bar
This tutorial will teach you the easiest method of using a Progress Bar in your application for Visual Basic 2008. This is not the best way but as it is an early tutorial, it should help the beginners understand. Key Terms: ————— Progress Bar ProgressBar.Increment
Introduction to ASP.NET Master Page
ASP.NET Master page is a nice concept, watch this video to understand how to use asp.net master page in your website
Visual Basic 2008 / Visual Basic .NET Tutorial #5 – Math Functions
This tutorial will simply teach you how to perform simple Math Operations in Visual Basic 2008. It is proably the most boring part of the language, but once you have mastered the simple parts of the language you can move on to the more interesting and advanced ones. Key Terms: ————— Math Operators Calculator Plus… Continue reading Visual Basic 2008 / Visual Basic .NET Tutorial #5 – Math Functions
How to count the words in a String in C#
Remember the Word Count function in Microsoft Word? Here’s how we could implement counting the words in a String in C#: The following is the spource code of a program featuring two word counting methods, both of which yield fairly similar results to Microsoft Word from Microsoft Office 2007. The example program below first executes… Continue reading How to count the words in a String in C#