Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 3
Description: Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 3
Topics: Variables and Code for Calculations
What is variable
Description: Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 3
Topics: Variables and Code for Calculations
What is variable
'Here I create a variable named MySQL as a new connection object for MySQL Global MySQL As New MySQL_CONNECTION Private Function MySQL_Connect() As Boolean Dim res_MySQL As MYSQL_CONNECTION_STATE MySQL_Connect = False res_MySQL = MySQL.OpenConnection("server", "username", "password", "database", 3306, CLIENT_COMPRESS) If res_MySQL = MY_CONN_OPEN Then MySQL_Connect = True End Function ' Query -> MySQL query to execute. ' CloseRS -> Optional. Close recordset created after executing Query. ' RS -> Optional. Reference to externaly created variable, declared as MYSQL_RS. If not closed, it will be available to the program after the query is executed. ' lAffected -> Optional. Numer of rows affected after te Query. Public Sub SQLQuery(ByVal Query As String, Optional ByVal CloseRS As Boolean = False, Optional ByRef RS As MYSQL_RS, Optional ByRef lAffected As Long) Dim ERR As MYSQL_ERR Set RS = MySQL.Execute(Query, lAffected) Set ERR = MySQL.Error If ERR.Number <> 0 Then ' Handle any eventual errors that occurred during MySQL query End If ERR.Clear Set ERR = Nothing If CloseRS Then RS.CloseRecordset Set RS = Nothing End If End Sub- Continue reading...

Brian P. Hogan “Web Design for Developers: A Programmer’s Guide to Design Tools and Techniques (With Source Code)”Web Design for
I share in this post the last version I download from a page that does not remember libraries for developers. NET I hope you find them useful.


ABC Hotel Management System (VB6 Source Code)
ABC Hotel offers accommodation, meals and other services to local and foreign guests. It also offers additional facilities to individuals or groups. When a Guest arrives at the receptionist, his personal details are first entered and then he selects one of the available unoccupied rooms depending on his/her taste.

Description: Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 2. More Controls and Code

Description: Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 1.Introduction and Getting Started

Description: “History of the internet” is an animated documentary explaining the inventions from time-sharing to filesharing, from Arpanet to Internet . The history is told using the PICOL icons, which are available on picol.org. You can get news about this project on blog.picol.org. Tags: Internet history, Defense Advanced Research Project Agency(DARP),Defense Advanced Research Project Agency(ARPANET),RAND Corporation,National Physical Laboratory (NPL),CYCLADES,

Description: Explaining Cloud Computing.This video explains cloud computing. It is produced and presented by Christopher Barnatt, author of ExplainingComputers.com, and Associate Professor of Computing and Future Studies in Nottingham University Business School. Info:Cloud computing, utility computing, Software as Service, SaaS, Hardware as Service, HaaS, Web 2.0, business.

Accounting System Source Code In VB6
This software handles 4 main parts of Accounting Cycle i.e General Journal/Ledger, Balance Sheet, Trial Balance, Income Statement, (with Transactions) This is my first posting on PSC. I had to make a project on Accounts Management. I Continue reading…