Advertisement

Results for "Author: jim reforma"

ASP_Volume2 #27808
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

ASP_Volume2 #27810
JRRCompressZ-It

How to use JRCompressZIt By Jim Reforma [email protected] http://www.linuxman.2ya.com or http://www.dakila7forums.ne1.net Ok. So you've just downloaded the JRRCompress-Z-It. Now you want to know how to use it properly? Well, here are some very simple ways to get you started. First, we'll describe the control's Properties. VB 4 users should read this document. A 16-bit version is released in this download. JR-Z-It Properties and methods. method CompressData Usage: Compresses a byte array Parameters: Byte Array, (ie. MyData()) Notes: It must be a byte array. To to this, pass the array name and both parentheses as per ( ), with no number inside of them. This passes a reference to the entire array. When this method is successful, the CompressedSize property contains the compressed size of the data, the OriginalSize property contains the original size of the data before compression. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method DecompressData Usage: Decompresses a byte array, given the original size Parameters: Byte Array, (ie. MyData()), Long (ie, OrigSize&) Notes: The byte array is the compressed data, the Long represents the original (decompressed) size of the data. You can retrieve this original size from the property OriginalSize after calling a successful CompressData method. The OriginalSize and CompressedSize properties are reset to zero. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method CompressString This method is the same as the CompressData method and produces the same results, but the first parameter is a string, not a byte array. The CompressedSize and the OriginalSize properties are filled with the same values as per the CompressData method. method DecompressString This method is the same as the DecompressData method, only that the first parameter is a string, not a byte array. The CompressedSize and OriginalSize properties are reset to zero. property CompressedSize Read-Only. Contains the value which represents the compressed size of the data or string that was compressed in the last executed CompressData or CompressString method. property OriginalSize Read-Only. Contains the value which represents the decompressed (original) size of the data or string that was compressed in the last executed CompressData or CompressString method. Attention: VB 4 - 16 bit Users A 16-bit version has been released. In this new download. It is a .CLS file which encapsulates the functionality of the control. It comes as a class. This is a class module in VB 4 - 16 Bit versions. It will make use of the 16 bit zLib.DLL library. It should make life easier for developers who still use the 16-bit version of VB 4.0 (zLib.DLL is written by zLib authors. VB is a trademark of Microsoft Corporation).

ASP_Volume2 #28271
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

ASP_Volume3 #62178
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

ASP_Volume3 #62179
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

C_Volume2 #68870
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

C_Volume2 #68872
JRRCompressZ-It

How to use JRCompressZIt By Jim Reforma [email protected] http://www.linuxman.2ya.com or http://www.dakila7forums.ne1.net Ok. So you've just downloaded the JRRCompress-Z-It. Now you want to know how to use it properly? Well, here are some very simple ways to get you started. First, we'll describe the control's Properties. VB 4 users should read this document. A 16-bit version is released in this download. JR-Z-It Properties and methods. method CompressData Usage: Compresses a byte array Parameters: Byte Array, (ie. MyData()) Notes: It must be a byte array. To to this, pass the array name and both parentheses as per ( ), with no number inside of them. This passes a reference to the entire array. When this method is successful, the CompressedSize property contains the compressed size of the data, the OriginalSize property contains the original size of the data before compression. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method DecompressData Usage: Decompresses a byte array, given the original size Parameters: Byte Array, (ie. MyData()), Long (ie, OrigSize&) Notes: The byte array is the compressed data, the Long represents the original (decompressed) size of the data. You can retrieve this original size from the property OriginalSize after calling a successful CompressData method. The OriginalSize and CompressedSize properties are reset to zero. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method CompressString This method is the same as the CompressData method and produces the same results, but the first parameter is a string, not a byte array. The CompressedSize and the OriginalSize properties are filled with the same values as per the CompressData method. method DecompressString This method is the same as the DecompressData method, only that the first parameter is a string, not a byte array. The CompressedSize and OriginalSize properties are reset to zero. property CompressedSize Read-Only. Contains the value which represents the compressed size of the data or string that was compressed in the last executed CompressData or CompressString method. property OriginalSize Read-Only. Contains the value which represents the decompressed (original) size of the data or string that was compressed in the last executed CompressData or CompressString method. Attention: VB 4 - 16 bit Users A 16-bit version has been released. In this new download. It is a .CLS file which encapsulates the functionality of the control. It comes as a class. This is a class module in VB 4 - 16 Bit versions. It will make use of the 16 bit zLib.DLL library. It should make life easier for developers who still use the 16-bit version of VB 4.0 (zLib.DLL is written by zLib authors. VB is a trademark of Microsoft Corporation).

C_Volume2 #69333
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

Java_Volume1 #87414
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

Java_Volume1 #87416
JRRCompressZ-It

How to use JRCompressZIt By Jim Reforma [email protected] http://www.linuxman.2ya.com or http://www.dakila7forums.ne1.net Ok. So you've just downloaded the JRRCompress-Z-It. Now you want to know how to use it properly? Well, here are some very simple ways to get you started. First, we'll describe the control's Properties. VB 4 users should read this document. A 16-bit version is released in this download. JR-Z-It Properties and methods. method CompressData Usage: Compresses a byte array Parameters: Byte Array, (ie. MyData()) Notes: It must be a byte array. To to this, pass the array name and both parentheses as per ( ), with no number inside of them. This passes a reference to the entire array. When this method is successful, the CompressedSize property contains the compressed size of the data, the OriginalSize property contains the original size of the data before compression. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method DecompressData Usage: Decompresses a byte array, given the original size Parameters: Byte Array, (ie. MyData()), Long (ie, OrigSize&) Notes: The byte array is the compressed data, the Long represents the original (decompressed) size of the data. You can retrieve this original size from the property OriginalSize after calling a successful CompressData method. The OriginalSize and CompressedSize properties are reset to zero. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method CompressString This method is the same as the CompressData method and produces the same results, but the first parameter is a string, not a byte array. The CompressedSize and the OriginalSize properties are filled with the same values as per the CompressData method. method DecompressString This method is the same as the DecompressData method, only that the first parameter is a string, not a byte array. The CompressedSize and OriginalSize properties are reset to zero. property CompressedSize Read-Only. Contains the value which represents the compressed size of the data or string that was compressed in the last executed CompressData or CompressString method. property OriginalSize Read-Only. Contains the value which represents the decompressed (original) size of the data or string that was compressed in the last executed CompressData or CompressString method. Attention: VB 4 - 16 bit Users A 16-bit version has been released. In this new download. It is a .CLS file which encapsulates the functionality of the control. It comes as a class. This is a class module in VB 4 - 16 Bit versions. It will make use of the 16 bit zLib.DLL library. It should make life easier for developers who still use the 16-bit version of VB 4.0 (zLib.DLL is written by zLib authors. VB is a trademark of Microsoft Corporation).

Java_Volume1 #87877
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

2_2002-2004 #114561
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

2_2002-2004 #114563
JRRCompressZ-It

How to use JRCompressZIt By Jim Reforma [email protected] http://www.linuxman.2ya.com or http://www.dakila7forums.ne1.net Ok. So you've just downloaded the JRRCompress-Z-It. Now you want to know how to use it properly? Well, here are some very simple ways to get you started. First, we'll describe the control's Properties. VB 4 users should read this document. A 16-bit version is released in this download. JR-Z-It Properties and methods. method CompressData Usage: Compresses a byte array Parameters: Byte Array, (ie. MyData()) Notes: It must be a byte array. To to this, pass the array name and both parentheses as per ( ), with no number inside of them. This passes a reference to the entire array. When this method is successful, the CompressedSize property contains the compressed size of the data, the OriginalSize property contains the original size of the data before compression. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method DecompressData Usage: Decompresses a byte array, given the original size Parameters: Byte Array, (ie. MyData()), Long (ie, OrigSize&) Notes: The byte array is the compressed data, the Long represents the original (decompressed) size of the data. You can retrieve this original size from the property OriginalSize after calling a successful CompressData method. The OriginalSize and CompressedSize properties are reset to zero. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method CompressString This method is the same as the CompressData method and produces the same results, but the first parameter is a string, not a byte array. The CompressedSize and the OriginalSize properties are filled with the same values as per the CompressData method. method DecompressString This method is the same as the DecompressData method, only that the first parameter is a string, not a byte array. The CompressedSize and OriginalSize properties are reset to zero. property CompressedSize Read-Only. Contains the value which represents the compressed size of the data or string that was compressed in the last executed CompressData or CompressString method. property OriginalSize Read-Only. Contains the value which represents the decompressed (original) size of the data or string that was compressed in the last executed CompressData or CompressString method. Attention: VB 4 - 16 bit Users A 16-bit version has been released. In this new download. It is a .CLS file which encapsulates the functionality of the control. It comes as a class. This is a class module in VB 4 - 16 Bit versions. It will make use of the 16 bit zLib.DLL library. It should make life easier for developers who still use the 16-bit version of VB 4.0 (zLib.DLL is written by zLib authors. VB is a trademark of Microsoft Corporation).

2_2002-2004 #115024
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

3_2004-2005 #133105
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

3_2004-2005 #133107
JRRCompressZ-It

How to use JRCompressZIt By Jim Reforma [email protected] http://www.linuxman.2ya.com or http://www.dakila7forums.ne1.net Ok. So you've just downloaded the JRRCompress-Z-It. Now you want to know how to use it properly? Well, here are some very simple ways to get you started. First, we'll describe the control's Properties. VB 4 users should read this document. A 16-bit version is released in this download. JR-Z-It Properties and methods. method CompressData Usage: Compresses a byte array Parameters: Byte Array, (ie. MyData()) Notes: It must be a byte array. To to this, pass the array name and both parentheses as per ( ), with no number inside of them. This passes a reference to the entire array. When this method is successful, the CompressedSize property contains the compressed size of the data, the OriginalSize property contains the original size of the data before compression. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method DecompressData Usage: Decompresses a byte array, given the original size Parameters: Byte Array, (ie. MyData()), Long (ie, OrigSize&) Notes: The byte array is the compressed data, the Long represents the original (decompressed) size of the data. You can retrieve this original size from the property OriginalSize after calling a successful CompressData method. The OriginalSize and CompressedSize properties are reset to zero. Returns: Error code. If 0 then it was successful. If negative, then an error has occurred. method CompressString This method is the same as the CompressData method and produces the same results, but the first parameter is a string, not a byte array. The CompressedSize and the OriginalSize properties are filled with the same values as per the CompressData method. method DecompressString This method is the same as the DecompressData method, only that the first parameter is a string, not a byte array. The CompressedSize and OriginalSize properties are reset to zero. property CompressedSize Read-Only. Contains the value which represents the compressed size of the data or string that was compressed in the last executed CompressData or CompressString method. property OriginalSize Read-Only. Contains the value which represents the decompressed (original) size of the data or string that was compressed in the last executed CompressData or CompressString method. Attention: VB 4 - 16 bit Users A 16-bit version has been released. In this new download. It is a .CLS file which encapsulates the functionality of the control. It comes as a class. This is a class module in VB 4 - 16 Bit versions. It will make use of the 16 bit zLib.DLL library. It should make life easier for developers who still use the 16-bit version of VB 4.0 (zLib.DLL is written by zLib authors. VB is a trademark of Microsoft Corporation).

3_2004-2005 #133568
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

4_2005-2006 #167475
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

4_2005-2006 #167476
LZ77 the basics of compression (1st ed.) by Jimmy Reforma 1999-2005

Introduction In this article I'll present the basics of lossless compression, also called text compression. This scheme, lz77, is very used because it's easy to implement and also it's fast. (if you improve it, of course) This is the second version of this article, if you've read the second version, you'll notice that is new version is bigger, in fact from 15k to 33k, more than twice, and its better than the first one. Also I recommend reading it, even if you've read the first version, because you'll learn even more. Even this new version is in html format. This is a second version corrected. (have a look at the date at the end)! You can download complete article of this lossless compression at http://www.dakila7forums.ne1.net/

5_2007-2008 #189993
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

Languages
Top Categories
Global Discovery