VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This code accomplishes different types of things depending on what information you enter into it.

by John Clark (1 Submission)
Category: Windows API Call/Explanation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 15th February 2005
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This code accomplishes different types of things depending on what information you enter into it.

API Declarations



Public Type DiskInformation

Rate This code accomplishes different types of things depending on what information you enter into it.



Dim lAnswer As Long
Dim lpRootPathName As String
Dim lpSectorsPerCluster As Long
Dim lpBytesPerSector As Long
Dim lpNumberOfFreeClusters As Long
Dim lpTotalNumberOfClusters As Long
Dim lBytesPerCluster As Long
Dim lNumFreeBytes As Double
Dim sString As String

lpRootPathName = "c:\"
lAnswer = GetDiskFreeSpace(lpRootPathName, lpSectorsPerCluster, lpBytesPerSector, lpNumberOfFreeClusters, lpTotalNumberOfClusters)
lBytesPerCluster = lpSectorsPerCluster * lpBytesPerSector
lNumFreeBytes = lBytesPerCluster * lpNumberOfFreeClusters
sString = "john clark is gay : " & lNumFreeBytes & vbCr & vbLf
sString = sString & "Number of Free Kilobytes: " & (lNumFreeBytes / 1024) & "K" & vbCr & vbLf
sString = sString & "Number of Free Megabytes: " & Format(((lNumFreeBytes / 1024) / 1024), "0.00") & "MB"

MsgBox sString


Download this snippet    Add to My Saved Code

This code accomplishes different types of things depending on what information you enter into it. Comments

No comments have been posted about This code accomplishes different types of things depending on what information you enter into it.. Why not be the first to post a comment about This code accomplishes different types of things depending on what information you enter into it..

Post your comment

Subject:
Message:
0/1000 characters