VB 일반 코드

1. 파일 대화상자 열기
엔지니어링 -->부품 -->Microsoft Common Dialog Control 6.0
ImportDialog.InitDir = App.Path 기본 열기 디렉토리
ImportDialog.Filter = 텍스트 파일(*.txt)|*.txt|데이터 파일(*.dat)|*.dat'파일 필터
ImportDialog.ShowOpen 대화 상자 열기
If Not Len(ImportDialog.FileName) = 0 Then
Open ImportDialog.FileName For Input As #1
    Do Until EOF(1)
         Line Input #1, newURL 
   Loop
Close #1
End If
2. 
vbCrLf VB
chr(10) & chr(13)
vbCrLf , chr(13)

3.
ubound() ,lbound() ,ubound()-lbound()+1

dim a(10) as long
dim nLen as long
nLen = ubound(a) - lbound(a) + 1 ' 10, 0, 11

4. WebBrowser
ProgressBar : - -MicroSoft Windows Common Controls 6.0
Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
If ProgressMax = 0 Then Exit Sub
ProgressBar1.Max = ProgressMax
If Progress <> -1 And Progress <= ProgressMax Then
ProgressBar1.Value = Progress
End If
End Sub










좋은 웹페이지 즐겨찾기