• home
  • forum
  • my
  • kt
  • download
  • this:2/3 25records  total:65    Start  Previous  Next  Last    goto:
    Video Tutorial: How to Open a New Form with the Press of a Button
    ON: 2007-09-05 18:24:02
    Video version of How to Open a New Form with the Press of a Button.
    11 times | category: [Miscellaneous]
    How to Make a Context Sensitive Menu
    ON: 2007-09-05 18:19:33
    Using Visual Basic 2005 Express's easy interface learn How to Make a Context Sensitive Menu.
    7 times | category: [Miscellaneous]
    Creating Dialog Boxes in VB.NET
    ON: 2007-09-05 18:18:42
    Create custom dialog boxes for Windows Forms applications
    90 times | category: [Introduction to Visual Basic]
    Create and configure MenuStrips
    ON: 2007-09-05 18:18:02
    Create and configure basic menus for Windows forms applications in Visual Studio.
    134 times | category: [Introduction to Visual Basic]
    Installing Visual Basic 2005 Express Edition
    ON: 2007-09-05 18:15:44
    Have you ever wanted to learn to program, but just never had the time or money to invest in programming applications? Well Microsoft released a version of their programming apps for free
    13 times | category: [Introduction to Visual Basic]
    Calculating the Area of a Rectangle using Visual Basic 6
    ON: 2007-09-05 18:11:15
    Learn how to use Visual Basic 6 to create an application which allows you to calculate the area of a rectangle
    13 times | category: [Introduction to Visual Basic]
    The basics of Visual Basic - Part 1
    ON: 2007-09-05 18:08:13
    This takes you through changing what text says, working the different components together and it explains all the code necessary so everyone can understand it.
    5 times | category: [Introduction to Visual Basic]
    Key trapping
    ON: 2007-09-05 18:07:24
    How do you tell what keys your users are pressing? This tutorial teaches you a rock solid method that you can build in games and advanced applications.
    7 times | category: [Introduction to Visual Basic]
    The Basics of Visual Basic
    ON: 2007-09-05 18:06:42
    A great tutorial for people that are starting out with visual basic and need to get a rock solid start. Described are loops, conditionals and variables
    5 times | category: [Introduction to Visual Basic]
    Managing INI files
    ON: 2007-09-05 18:06:05
    How to create, read and write an INI file from Visual Basic 6
    17 times | category: [Introduction to Visual Basic]
    Getting Started With Visual Basic 6.0
    ON: 2007-09-05 18:03:23
    Comprehensive tutorial aimed at introducing you to the basics of programming in Visual Basic 6.0.
    36 times | category: [Introduction to Visual Basic]
    Extract the target file from a shortcut file .lnk
    ON: 2007-09-05 17:48:37
    This little discussion helps to extract the target file from a shortcut file .lnk
    12 times | category: [File Manipulation]
    Saving text files
    ON: 2007-09-05 17:42:39
    This tutorial shows you how the built in visual basic funtions can be used to save files. The ways to shown to save a file are the write and print functions.
    8 times | category: [File Manipulation]
    File Handling
    ON: 2007-09-05 17:41:57
    If you want to be an expert VB programmer then you'll need to know a lot about how VB handles files - what is possible and what is not, plus how to do something in the smallest code or in the least amount of time. To do this you need to understand the file handling features which VB offers.
    8 times | category: [File Manipulation]
    How to use FindFirstFile Win32 API from Visual Basic code
    ON: 2007-09-05 17:40:48
    This article describes how to use Win32 API functions from Visual Basic programming language to find files and obtain extended file info. Free sample Visual Basic code is available for download. Used technologies: Visual Basic 6.0, Win32 API
    52 times | category: [File Manipulation]
    Working With Files
    ON: 2007-09-05 17:36:49
    Is it possible to save data accepted by a VB program into a storage device, such as a hardisk or diskette, or even CDRW? The answer is possible.
    11 times | category: [File Manipulation]
    Error handler
    ON: 2007-09-05 14:50:02
    In this tutorial we will teach you to add a errorhandler to your applications. It's very easy and it saves lots of time when debugging your applications.
    6 times | category: [Error Handling]
    Error Handling
    ON: 2007-09-05 14:49:30
    The bottom line is that all of us make mistakes. VB is pretty clever about finding syntax errors within the IDE, but a number of the possible errors simply cannot be discovered until you try to run the program. This section discusses some of the available error detection and correction techniques.
    5 times | category: [Error Handling]
    Working With Arrays
    ON: 2007-09-05 14:38:40
    After this tutorial you will effectively know how to handle arrays in vb
    5 times | category: [Development]
    How to Open a New Form with the Press of a Button
    ON: 2007-09-05 14:00:29
    Having a program with everything on one form would be extremely cluttered, that is why most programs are split into many different forms and windows. This is a very basic tutorial on how to open a new form/window by simply clicking on a button.
    12 times | category: [Development]
    Create real Excel Files Reports without MS Excel
    ON: 2007-09-05 13:59:13
    Use the free version of the COM library DypsXLS to create real Excel files from your VB applications.
    7 times | category: [Development]
    High Resolution Timing in Visual Basic
    ON: 2007-09-05 13:48:46
    So, you're interested in having your functions act at specific time intervals, eh? Naturally you would turn to the Timer Control included with VB. Unfortunately, the timer control has a resolution of ~55ms. 55ms seems like a very short time to us, but to the computer, 55ms is an agonizingly long time. Don't torture your computer! Use accurate and high-resolution timing methods.
    14 times | category: [Date and Time]
    Databases
    ON: 2007-09-05 13:40:47
    In this section I'll talk about how to use the database features of VB, but I'll also talk about when those features are overkill and when simpler methods of data storage can be substituted for the VB database methods.
    19 times | category: [Database Related]
    Database Controls
    ON: 2007-09-05 13:36:24
    Database controls are ideal if you want to get in, get the job done, and then get out. In this section we'll discuss the controls available to the database programmer. VB falls short, however, in helping beginners create databases from scratch.
    21 times | category: [Database Related]
    SQL in VB
    ON: 2007-09-05 13:32:19
    To selectively display records in a recordset, the feature to use is SQL - Structured Query Language. By creating a query (a text string which tells VB what to include in a recordset or what actions to take against the data in a recordset) you can greatly simplify the code you have to write in an application that utilizes databases.
    18 times | category: [Database Related]
    this:2/3 25records  total:65    Start  Previous  Next  Last    goto:

    Category

      .NET (8)
      Buttons (3)
      Database Related (7)
      Date and Time (1)
      Development (3)
      Error Handling (2)
      File Manipulation (5)
      Introduction to Visual Basic (9)
      Miscellaneous (2)
      Multimedia (9)
      Networking (9)
      Security (1)
      VB Script (6)