I heard that if you could retrieve the serialnumber, then by a first time installation of an access application, this can be stored in the application.
So then, you can not copy the installation from that harddisk to an other harddisk. You would need the installation diskette
I have no idea how to do that, and I suppose one needs Office Developer Edition, which we do not have hear.
Main Topics
Browse All Topics





by: JDettmanPosted on 1999-11-12 at 07:36:19ID: 2203317
You can use the FileSystemObject:
ame("c:")) / 1024, 0) / 1024, 0)
Private Sub Command3_Click()
Dim fso As New FileSystemObject, drv As Drive, s As String
Set drv = fso.GetDrive(fso.GetDriveN
s = "Drive " & UCase("c:") & " - "
s = s & drv.VolumeName & vbCrLf
s = s & drv.SerialNumber & vbCrLf
s = s & "Total Space: " & FormatNumber(drv.TotalSize
s = s & " Kb" & vbCrLf
s = s & "Free Space: " & FormatNumber(drv.FreeSpace
s = s & " Kb" & vbCrLf
MsgBox s
End Sub
What version of Access is this for BTW?
JimD.