Posts

Showing posts from June, 2012

Visual Basic Online Course - Create FTP

Image
Visual Basic Online Course - Create FTP Client VB6 Ftp Client In this project we shall discuss using Microsoft Internet Transfer Control or (INET.Ocx) to : Connect to FTP remote server. Retrieving main/sub directories from FTP remote server. Retrieving files from FTP remote server. Uploading file to FTP remote server. Downloading file from FTP remote server. Make new directory (folder) at FTP remote server. Rename & Delete file from FTP remote server. In this project we won't be using API calls (i.e. INET API) also we will cover these issues : The Spaces problem while downloading and uploading files. Error message "Still executing last request" number 35764. Error message "File exists" Application Hangs up after ending it. Using TreeView control to list all the Directories on the FTP remote server. Using ListBox control to list all files on the FTP remote server related to above folder. The

Visual Basic Online Course - MS Access 2003 Database Structure

Image
Visual Basic Online Course MS Access 2003 Database Structure These are 2 methods on how to work with MS-Access 2003 Database components directly like (Tables & Queries) without opening your Data-Base file using ADO 2.8 . 1) Using OpenSchema - Create new MS-Access 2003 DB (MyDb.mdb) - Create VB6 Project - Database (Fname Text 50,Lname Text 50, Nphone Text 50, Xemail Text 50) - Place both in the same directory of course. - Open your VB6 Project, from menu choose (Project, References, Microsoft Ado 2.8 and Microsoft ADOx) click to enlarge - Visual Basic Code Snippets : Source Code - MediaFire.com Link ♥ V isual B asic Course Online : Automate MS-Access Database in Visual Basic 6.0 though a net work Visual Basic 6.0 Analog Clock Vi sual Basic 6.0 Temperature Convertor Visual Basic 6.0 , MS-Access 2003 and Crystal Reports - Phone book Visual Basic 6.0 , MS-Access 2003 Database and DataGridView Visual Basic 6 .0  FTP full application source code

Visual Basic Online Course - Auto translate your application's Language before compiling

Image
  Visual Basic Online Course Auto translate your application's language vb6-translate-application-controls  Using Conditional Compilation Conditional compilation lets you selectively compile certain parts of the program. You can include specific features of your program in different versions, such as designing an application to run on different platforms, or changing the date and currency display filters for an application distributed in several different languages. Structuring Code for Conditional Compiling To conditionally compile a part of your code, enclose it between #If...Then and #EndIf statements, using a Boolean constant as the branching test. To include this code segment in compiled code, set the value of the constant to –1 (True). For example, to create French language and German language versions of the same application from the same source code, embed platform-specific code segments in #If...Then statements using the predefined constants con