Search for: help for vb6 form chm
Related Programming Resources
- Java and Microsoft Access SQL Tutorial This is a short tutorial on how to use Java and Microsoft Access to store and retrieve data in an SQL database. A mixture of source code and explanatory note's are used to introduce the student to the usage of SQL from Java to access and manipulate information. We hope
- VB.NET and C# Comparison VB.NET ' String concatenation (use & or +) Dim school As String = "Harding" & vbTab school = school & "University" ' school is "Harding (tab) University" ' Chars Dim letter As Char = school.Chars(0) ' letter is H letter = Convert.ToChar(65) ' letter is A letter = Chr(65) ' same thing Dim word() As Char = school.ToCharArray() '
- Beginners C# Tutorial This lesson will get you started with C# by introducing a few very simple programs. Here are the objectives of this lesson: . Understand the basic structure of a C# program. . Obtain a basic familiarization of what a "Namespace" is. . Obtain a basic understanding of what a Class is. . Learn what
- Aspect-Oriented Programming with C# and .NET Almost a year ago, Microsoft has introduced the .NET architecture as a new component-based programming environment, which allows for easy integration of classical distributed programming techniques with Web computing. .NET defines a type system and introduces notions such as component, object, and interface, which are building blocks for distributed multi-language
- Programming C#, 2nd Edition The first part of Programming C#, 2nd Edition introduces C# fundamentals, then goes on to explain the development of desktop and Internet applications, including Windows Forms, ADO.NET, ASP.NET (including Web Forms), and Web Services. Next, this book gets to the heart of the .NET Framework, focusing on attributes and reflection,