ARQUIVO DE LOG
GOSTARIA DE SABER COMO FAZ PARA CRIAR UM ARQUIVO DE LOG PARA O MEO SISTEMA NO VB
SE ALGUEM PUDER MI AJUDAR
SOU GRATO DESDE JÃ
SE ALGUEM PUDER MI AJUDAR
SOU GRATO DESDE JÃ
esta uma função para escreve e ler arquivos de texto
Public Function ReadFile(strPath As String) As Variant
On Error Goto eHandler
Dim iFileNumber As Integer
Dim blnOpen As Boolean
iFileNumber = FreeFile
Open strPath For Input As #iFileNumber
blnOpen = True
ReadFile = Input(LOF(iFileNumber), iFileNumber)
eHandler:
If blnOpen Then Close #iFileNumber
If Err Then MsgBox Err.Description, vbOKOnly + vbExclamation, Err.Number & [Ô] - [Ô] & Err.Source
End Function
Public Function WriteFile(strPath As String, strValue As String) As Boolean
On Error Goto eHandler
Dim iFileNumber As Integer
Dim blnOpen As Boolean
iFileNumber = FreeFile
Open strPath For Output As #iFileNumber
blnOpen = True
Print #iFileNumber, strValue
eHandler:
If blnOpen Then Close #iFileNumber
If Err Then
MsgBox Err.Description, vbOKOnly + vbExclamation, Err.Number & [Ô] - [Ô] & Err.Source
Else
WriteFile = True
End If
End Function
Tópico encerrado , respostas não são mais permitidas