WinHTTP vs HTTPWebrequest vs XMLHTTP html 소스를불러온다던지 웹에 요청을 할때 I-NET , Winhttp, HTTPwebrequest(.NET) 정도가 있는데요.. 검색능력부족으로 제대로된 장단점을 찾을수 없네요.. 쓰던대로 고대로 써서 테스트했어요 사실 inet 은 닷넷에서 com오브젝트에 보이질 않고.. 해서 winhttp, httpwebreques, xmlhttp 이렇게 세개의 속도를 .. 프로그래밍언어/VB.NET 2013.07.07
INET vs WINHTTP WinHTTP vs. WinINet 3 out of 4 rated this helpful - Rate this topic With a few exceptions, WinINet is a superset of WinHTTP. When selecting between the two, you should use WinINet, unless you plan to run within a service or service-like process that requires impersonation and session isolation. Comparison of features Feature WinINet WinHTTP Credential Cache Allows all built-in.. 프로그래밍언어/VB.NET 2013.07.07
파일다운 Responsestream으로 Dim s As Stream = '해당하는 ResponseStream Dim fs As New FileStream("c:\xxx.pdf", FileMode.Create) Dim read As Byte() = New Byte(255) {} Dim count As Integer = s.Read(read, 0, read.Length) While count > 0 fs.Write(read, 0, count) count = s.Read(read, 0, read.Length) End While fs.close() s.close() '쿠키를 유지한체 파일을 다운받아야할경우... 프로그래밍언어/VB.NET 2013.07.07
비베 로그남기기 '로그폴더생성 My.Application.Log.DefaultFileLogWriter.CustomLocation = System.Windows.Forms.Application.StartupPath & "\Log" '로그기록 My.Application.Log.WriteEntry(Format(Today, "yyyy-MM-dd") & " " & Format(TimeOfDay, "HH:mm:ss") & "로그기록", TraceEventType.Information) 프로그래밍언어/VB.NET 2013.07.06
VB.NET MetaWeblog API 참조 이 단원의 참조 항목은 다음과 같습니다. MetaWeblogAPI metaWeblog.newPost 메서드는 블로그에 새 항목을 게시합니다. MetaWeblogAPI metaWeblog.editPost 메서드는 블로그의 기존 항목을 편집합니다. MetaWeblogAPI metaWeblog.getPost 메서드는 블로그에서 특정 항목을 반환합니다. MetaWeblogAPI metaWeblog.getCategories 메.. 프로그래밍언어/VB.NET 2013.07.06
[스크랩] Re: 컴퓨터로 특수 기호 읽는 법좀 알려 주세요 컴퓨터로 특수 기호 읽는 법좀 알려 주세요 특수기호 읽는법

키보드에는 여러 특수문자가 있습니다. !나 @, %, ^와 같은것들 말이지요. 편의상 ~는 '물결', ^는 '꺽쇄', *는 '별표' 등으로 읽는데 정확한 명칭은 무엇일까요? 읽는 법은 다음과 같습니다. 


&.. 기타/메모 2013.07.05
1부터 10까지 숫자 제곱구하기 출처 : MSDN ' Generate a sequence of integers from 1 to 10 ' and project their squares. Dim squares As IEnumerable(Of Integer) = _ Enumerable.Range(1, 10).Select(Function(x) x * x) Dim output As New System.Text.StringBuilder For Each num As Integer In squares output.AppendLine(num) Next ' Display the output. MsgBox(output.ToString()) ' This code produces the following output.. 프로그래밍언어/VB.NET 2013.07.04