Skip to content

Releases: PhongSeow/PigObjFs

Add support for .net 5.0

04 Jan 06:41
Compare
Choose a tag to compare
2.5

Src Add DotNet 5.0

Update ReadMe

29 Dec 09:17
Compare
Choose a tag to compare
2.4

Modify README.md

2.3

11 Oct 14:15
Compare
Choose a tag to compare
2.3
Update some errors.

Add VB.net demo

20 Sep 10:23
Compare
Choose a tag to compare
2.2

del PigObjFs.vbproj.user

Version 2.1

02 Sep 09:16
aa73635
Compare
Choose a tag to compare

Fix bug, recompile PigObjFsLib.dll.

Version 2.0, added VB6DLL

01 Sep 09:40
64a6b8f
Compare
Choose a tag to compare

VB6DLL
This scheme is suitable for VB6, reference PigObjFsLib.dll The compiled exe can run directly on different versions of windows, but it needs to be registered through regsrv32.exe PigObjFsLib.dll 。

Example code:
Open VB6 project file PigObjFsTestDll.vbp , sample code in frmPigObjFs.frm Form.
PigObjFsTestDll.exe By PigObjFsTestDll.vbp It can run directly on different versions of windows, but it needs to be registered through regsrv32.exe PigObjFsLib.dll , the command is: Regsvr32 PigObjFsLib.dll

Direct use in VB project

30 Aug 13:27
64a6b8f
Compare
Choose a tag to compare

First release version, This scheme is suitable for VB6, without reference to DLL modFsDeclare.bas , pFile.cls , pFileSystemObject.cls , pFolder.cls , PigLog.cls , pTextStream.cls These 6 files can be added to your VB6 project.

Example code:
Open the VB6 project file, PigObjFs.vbp , sample code in frmPigObjFs.frm Form.
PigObjFs.exe By PigObjFs.vbp You can test whether it can run directly in different windows.

Class description:
pFileSystemObject
Objectified Scripting.FileSystemObject , encapsulates the main interfaces, such as copyfile, createfolder, deletefile, FileExists, folderexists, GetFile, getfolder, MoveFile, opentextfile, etc.

pFile
Objectified Scripting.File , which is used for file operation and encapsulates some interfaces, such as datecreated, datelastmodified, delete, path, shortname, shortpath, size, etc.

pFolder
Objectified Scripting.Folder , which is used for directory operation and encapsulates some interfaces, such as datecreated, datelastmodified, files, isrootfolder, parentfolder, path, shortname, shortpath, size, subfolders, etc.

pTextStream
Objectified Scripting.TextStream , which is used for reading and writing text files and encapsulates some interfaces, such as atendoffline, atendofstream, readall, readLine, writeblanklines, writeline, writestr, etc.