Страница: 1 |
|
Вопрос: Вопрос по шифрованию
|
Добавлено: 26.12.08 06:46
|
|
Автор вопроса: Max
|
Всем привет! Вопрос такой. Каким редактором можно привести в понятный вид текстовый зашифрованный файл
http://matuza.1xw.ru/code.zip
Ответить
|
Номер ответа: 1 Автор ответа: Father
Вопросов: 0 Ответов: 159
|
Профиль | | #1
|
Добавлено: 26.12.08 09:35
|
На скорую руку:
- Option Explicit
- Private Sub Form_Load()
- Dim i As Integer
- Dim bt() As Byte
- Dim nFile As Integer
- Dim ncnt As Integer
- nFile = FreeFile
- Open "C:\чистый.txt" For Binary As #nFile
- ncnt = LOF(nFile) - 2
- ReDim bt(ncnt)
- Get #nFile, , bt
- Close nFile
- nFile = FreeFile
- For i = 0 To ncnt
- bt(i) = bt(i) + 1
- Next
- Text1.Text = StrConv(bt(), vbUnicode)
- End Sub
***Сети
Компьютерная сеть - это:
Компьютеры объединенные аппаратными средствами и сетевым программным обеспечением.
.....
.....
Ответить
|
Номер ответа: 8 Автор ответа: Father
Вопросов: 0 Ответов: 159
|
Профиль | | #8
|
Добавлено: 27.12.08 17:37
|
в поле не влезает
в Text1 установи св-во MultiLine = True, Scrollbars = Vertical
- Option Explicit
-
- Private Sub filesave_Click()
- Dim comdlg As Object
- Dim strfile As String
- Dim nFile As Integer
- On Error Resume Next
- Set comdlg = CreateObject("MSComDlg.CommonDialog.1")
- comdlg.Filter = "Text files|*txt"
- comdlg.CancelError = True
- Err.Clear
- comdlg.ShowSave
- strfile = Trim(comdlg.FileName)
- If CBool(Err.Number) Then Exit Sub
- If Len(strfile) = 0 Then Exit Sub
- If Right(strfile, 4) <> ".txt" Then strfile = strfile & ".txt"
- nFile = FreeFile
- Open strfile For Binary As #nFile
- Put #nFile, , Text1.Text
- Close nFile
- nFile = FreeFile
- End Sub
-
- Private Sub mfileopen_Click()
- Dim i As Integer
- Dim bt() As Byte
- Dim nFile As Integer
- Dim ncnt As Integer
- Dim comdlg As Object
- Dim strfile As String
- On Error Resume Next
- Set comdlg = CreateObject("MSComDlg.CommonDialog.1")
- comdlg.Flags = 7
- comdlg.Filter = "Btplus one text files|*txt"
- comdlg.CancelError = True
- Err.Clear
- comdlg.ShowOpen
- If CBool(Err.Number) Then Exit Sub
- strfile = comdlg.FileName
- If Len(Dir(strfile)) = 0 Then Exit Sub
- nFile = FreeFile
- Open strfile For Binary As #nFile
- ncnt = LOF(nFile) - 2
- ReDim bt(ncnt)
- Get #nFile, , bt
- Close nFile
- nFile = FreeFile
- Dim ss As Integer
- For i = 0 To ncnt
- Select Case bt(i)
- Case 13, 10, 32, 62
- Case Else
- bt(i) = bt(i) + 1
- End Select
- Next
- Text1.Text = StrConv(bt(), vbUnicode)
- End Sub
-
-
- Private Sub Form_Resize()
- Text1.Width = Me.ScaleWidth
- Text1.Height = Me.ScaleHeight
- Text1.Top = 0
- Text1.Left = 0
- End Sub
Ответить
|
Страница: 1 |
Поиск по форуму