Search Results


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

Continue reading…


Mysql in visual basic Sample Source Code

This item was filled under [ FREE SOURCE CODE, Visual Basic 6.0 ]
  1. 'Here I create a variable named MySQL as a new connection object for MySQL
  2. Global MySQL As New MySQL_CONNECTION
  3.  
  4. Private Function MySQL_Connect() As Boolean
  5. Dim res_MySQL As MYSQL_CONNECTION_STATE
  6.  
  7. MySQL_Connect = False
  8. res_MySQL = MySQL.OpenConnection("server", "username", "password", "database", 3306, CLIENT_COMPRESS)
  9.  
  10. If res_MySQL = MY_CONN_OPEN Then
  11. MySQL_Connect = True
  12. End Function
  13.  
  14. ' Query -> MySQL query to execute.
  15. ' CloseRS -> Optional. Close recordset created after executing Query.
  16. ' 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.
  17. ' lAffected -> Optional. Numer of rows affected after te Query.
  18. Public Sub SQLQuery(ByVal Query As String, Optional ByVal CloseRS As Boolean = False, Optional ByRef RS As MYSQL_RS, Optional ByRef lAffected As Long)
  19. Dim ERR As MYSQL_ERR
  20.  
  21. Set RS = MySQL.Execute(Query, lAffected)
  22. Set ERR = MySQL.Error
  23.  
  24. If ERR.Number <> 0 Then
  25. ' Handle any eventual errors that occurred during MySQL query
  26. End If
  27. ERR.Clear
  28. Set ERR = Nothing
  29.  
  30. If CloseRS Then
  31. RS.CloseRecordset
  32. Set RS = Nothing
  33. End If
  34. End Sub
  35. Continue reading...

Web Design for Developers: A Programmer’s Guide to Design Tools and Techniques (With Source Code)

This item was filled under [ Java, PHP ]

Web Design for Developers: A Programmer’s Guide to Design Tools and Techniques (With Source Code)

Brian P. Hogan “Web Design for Developers: A Programmer’s Guide to Design Tools and Techniques (With Source Code)”Web Design for

Continue reading…


Developer Express 2009 v.2.6

This item was filled under [ FREE SOURCE CODE, Visual Basic.NET ]

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.

Developer Express 2009 v.2.6

Continue reading…


Hotel Management System (VB6 Source Code)

ABC Hotel Management System (VB6 Source Code)

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.

Continue reading…


Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 2

Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 2

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

Continue reading…


Microsoft Visual Basic 6 – Video Tutorial Basic – Chapter 1

Microsoft Visual Basic 6 - Video Tutorial Basic - Chapter 1

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

Continue reading…


History of the Internet (Video Tutorial)

This item was filled under [ FREE VIDEO TUTORIALS, System / Networking ]

History of the Internet (Video)

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,

Continue reading…


Explaining Cloud Computing (Video Tutorial)

This item was filled under [ FREE VIDEO TUTORIALS, System / Networking ]

Explaining Cloud Computing

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.

Continue reading…


Accounting System Source Code In VB6

Accounting System Source Code In VB6

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…