.

http://www.edubilim.com/ana




Ayrıntılar Form1 Option Explicit Private Wi
SahiplikDeğer
İsimForm1 Option Explicit Private Wi
AçıklamaForm1 Option Explicit Private WithEvents Huffman As clsHuffman Private Sub Command1_Click() Dim OldTimer As Single On Error GoTo ErrorHandler Store the current timer for later use OldTimer = Timer Compress the source file Call Huffman.EncodeFile(Text1(0).Text, Text1(1).Text) Update the statistics Label2(3).Caption = Timer - OldTimer & " s" Label2(0).Caption = FileLen(Text1(0).Text) & " bytes" Label2(1).Caption = FileLen(Text1(1).Text) & " bytes" Label2(2).Caption = Int(Val(Label2(1).Caption) / Val(Label2(0).Caption) * 100) & "%" Show a nice dialog to the user Call MsgBox("Compression successful.", vbInformation) Exit Sub ErrorHandler: Call MsgBox("The compression was not successful. Something went terribly wrong." & vbCrLf & vbCrLf & Err.Description, vbExclamation) End Sub Private Sub Command2_Click() Dim Filenr As Integer Dim OldTimer As Single On Error GoTo ErrorHandler Store the time for later use OldTimer = Timer Uncompress the compressed file Call Huffman.DecodeFile(Text1(1).Text, Text1(2).Text) Update decompression statistics Label2(3).Caption = Timer - OldTimer & " s" Label2(0).Caption = FileLen(Text1(1).Text) & " bytes" Label2(1).Caption = FileLen(Text1(2).Text) & " bytes" Label2(2).Caption = Int(Val(Label2(1).Caption) / Val(Label2(0).Caption) * 100) & "%" Show a nice dialog to the user Call MsgBox("Decompression successful.", vbInformation) Exit Sub ErrorHandler: Call MsgBox("The decompression was not successful. Something went terribly wrong." & vbCrLf & vbCrLf & Err.Description, vbExclamation) End Sub Private Sub Command3_Click() End Sub Private Sub Form_Load() Set Huffman = New clsHuffman End Sub Private Sub Huffman_Progress(Procent As Integer) Label2(4).Caption = Procent & "%" Label2(4).Refresh DoEvents End Sub Class modules ...
Dosya AdıBağlantı form133.doc
Dosya BoyutuLink
Dosya Tipidoc (Mime Tipi: link)
Ekleyenadmin
Ekleme tarihi: 07.10.2008 16:13
İnceleyenlerHerkes
Kontrol EdenEditor
İndirme sayısı0 İndirme sayısı
En son güncelleme 07.10.2008 16:14
Anasayfahttp://www.edubilim.com