Visual Basic 2010 Express – 42 Free Video Tutorials

Thanks to Saurabh Vyas for being the contributing author of this post. This is a wonderful video tutorial series on Visual Basic 2010 Express. The series was created by SchoolFreeWare.com. Visual Basic 2010 Express   Title Date   Min   Visual Basic 2010 Express Tutorials – Tutorial 1 – Getting Started – Free Download 7/12/2010   8   Visual Basic 2010 Express Tutorials –... [Read More...]

C# – 12 Free Video Tutorials

Twelve Free C# Video Tutorials Special thanks to Saurabh Vyas for being the contributing author for this post. These videos are from www.thebestcsharpprogrammerintheworld.com Here are twelve excellent free C-Sharp video tutorials. Title Date Presenter Min Lesson 1 (Part 1) Gridview DataAccess C# 8/20/2009 Ben Perkins 7 Lesson 2 (Part 1) Gridview MethodInvoker Threading Progress Bar C# 8/26/2009 Ben Perkins 9 Lesson 3 (Part 1) Disconnected... [Read More...]

How to make a ribbon style menu in programming

How to make a ribbon style menu in programming  For Unmanged Languages (c++ etc) http://support.microsoft.com/kb/960362/   The Windows Ribbon framework is a rich command presentation system that provides a modern alternative to the layered menus, toolbars, and task panes of traditional Windows applications. Similar in functionality and appearance to the Microsoft Office 2007 Fluent user interface, the Ribbon framework is composed of a ribbon... [Read More...]

Css Techniques for asp.net

Source : Microsoft Technet Introduction CSS – Cascading Style Sheets play a vital role in helping you achieve professional and pleasing user interfaces on the web, which makes the first impression long lasting. However, as with every other technique, CSS can also slow down your site if used in the wrong manner. Look below for ten such techniques that allow you to fine tune your website. 1. CSS Optimizers CSS Optimization does not refer to minimizing... [Read More...]

Run your vb.net application as administrator

At times. you may require your program to run as administrator There are 2 ways to do this 1. Modify the project UAC settings 2. Go to debug and then run your program .exe file as administraotr We will discuss both the methods let’s start with the first method Well for the first method you need to replace only 1 word . See this video for the first method : Here is the 1st method “You need to make your application UAC compliant so that... [Read More...]

Pdf reader in vb.net

Do you want to create an application that can read pdf files ? Well you have a way by which you can do this . There is A COM component which will allow you to do this task very asily . Please see this about.com article which shows you how to do this task –http://visualbasic.about.com/od/quicktips/qt/disppdf.htm Also it is recommended that you watch this video also . Credit for this video goes to Roylyn Andrews You can view the code online –... [Read More...]

Option infer,option strict,option compare,option explict in vb.net

Sources : About.com, Google.com and my knowledge Back to the Future – VB6 Variant Redux? In VB6, we could use a variable without declaring it as … myVar1 = “whatever” myVar2 = 666 The variables were compiled as Variant types, which could hold anything. This was carried over into .NET as Object types. If Option Explicit is Off, then you can write the same code and the variables became Object types. Again, they could hold anything.... [Read More...]

vb.net byval and byref

Original source: Homeandlearn.co.uk The word ByVal is short for "By Value". What it means is that you are passing a copy of a variable to your Subroutine. You can make changes to the copy and the original will not be altered. ByRef is the alternative. This is short for By Reference. This means that you are not handing over a copy of the original variable but pointing to the original variable. Let's see a coding example. Add a new button... [Read More...]

Subroutines and Functions

Well I am writing this tutorial in which i wil tell you about subroutines and functions in vb.net Note: This tutorial can also apply for other languages because the basic programming fundamentals are the same .   And you can also take a look at this page in which this concept is explained clearly – http://www.homeandlearn.co.uk/net/nets9p1.html So first start from the easiest concept. We all know that in our form class there are many subroutines... [Read More...]

Make your own url shorten service

Original Post By : Sean-O.com Requirements Web Server — preferably one you host yourself, with control over basic site settings Web Development Language — using PHP here, but this code can be adapted to ASP.NET, ColdFusion, etc. Database — MySQL featured, but SQL Server, PostgreSQL, etc. would work Ideally, you’ll want a short domain to set this up on. www.joesautoglassandspareparts.com kinda defeats the purpose 😉 Examples Each... [Read More...]

Make a compression utility using vb.net

The GZipStream class Before .NET Framework 2.0 if you wanted to compress files you had to use a 3rd party library capable of doing that. In the new version there is a new namespace: System.IO.Compression that contains the GZipStream class. The GZipStream class has methods allowing us to both compress and decompress a file into a zip archive. The disadvantage of using the GZipStream class over a 3rd party product is that it has limited capabilities.... [Read More...]

« Previous PageNext Page »