반응형
' 파일 입력 예제
Dim f As Integer
Dim str As String
f = FreeFile()
Open App.Path & "\config.ini" For Input As #f
Line Input #f, server
Line Input #f, ID
Line Input #f, pw
Line Input #f, str
cycleTime = str
Close #f
' 파일 출력 예제
Dim f As Integer
f = FreeFile()
Open App.Path & "\Log\" & Replace(Date, "-", "") & "_Log_Err.txt" For Append As #f
Print #f, Date & " " & Format(Time, "hh:mm:ss") & " " & str
Close #f
Dim f As Integer
Dim str As String
f = FreeFile()
Open App.Path & "\config.ini" For Input As #f
Line Input #f, server
Line Input #f, ID
Line Input #f, pw
Line Input #f, str
cycleTime = str
Close #f
' 파일 출력 예제
Dim f As Integer
f = FreeFile()
Open App.Path & "\Log\" & Replace(Date, "-", "") & "_Log_Err.txt" For Append As #f
Print #f, Date & " " & Format(Time, "hh:mm:ss") & " " & str
Close #f
반응형
'DEV > VB' 카테고리의 다른 글
Visual Basic 현재 날짜 가져 오기 (2) | 2010.09.15 |
---|---|
VisualBasic ODBC를 이용한 DB접속 (0) | 2010.04.08 |
VisualBasic 폼의 투명도 설정하기 (0) | 2010.04.08 |
VisualBasic 폼을 원으로 만들기 (0) | 2010.04.08 |
윈도우 마우스 포인트 좌표 가져오기 (0) | 2010.04.08 |