Visual Basic 60: Projects With Source Code [exclusive]

Go beyond simple addition. Implement functions like square roots, percentages, and memory storage ( MRcap M cap R

Slideshow Creator (EXE)

Go to File > Make ProjectName.exe to compile the source code into a standalone, executable desktop application. Best Practices for Reviewing VB6 Source Code visual basic 60 projects with source code

Simply downloading a project isn't enough. Here is a 3-step process to make it yours:

Dim maxClients As Integer Private Sub Form_Load() maxClients = 0 sckServer(0).LocalPort = 4000 sckServer(0).Listen txtLog.Text = "Server started on port 4000..." & vbCrLf End Sub Private Sub sckServer_ConnectionRequest(Index As Integer, ByVal requestID As Long) ' Accept connection request by loading a new Winsock element maxClients = maxClients + 1 Load sckServer(maxClients) sckServer(maxClients).Accept requestID txtLog.Text = txtLog.Text & "Client " & maxClients & " connected." & vbCrLf End Sub Private Sub sckServer_DataArrival(Index As Integer, ByVal bytesTotal As Long) Dim incomingData As String Dim i As Integer ' Retrieve data from the network buffer sckServer(Index).GetData incomingData, vbString txtLog.Text = txtLog.Text & "Client " & Index & ": " & incomingData & vbCrLf ' Broadcast data to all other connected clients For i = 1 To maxClients If sckServer(i).State = sckConnStateConnected Then sckServer(i).SendData "Client " & Index & ": " & incomingData End If Next i End Sub Use code with caution. Best Practices for Managing VB6 Projects Go beyond simple addition

Simulates AND, OR, NOT, NAND, etc..

This project utilizes the Winsock control to demonstrate network socket programming over TCP/IP in a local network environment. Core Features Here is a 3-step process to make it

Chat Client (LAN)

Complete Guide to Visual Basic 6.0 Projects with Source Code