VB6 | 2005 |
---|---|
vpg | sln |
vbp | vbproj |
http://blogs.msdn.com/dd_jpn/archive/2007/02/05/1603522.aspx http://www.microsoft.com/downloads/details.aspx?FamilyID=92faa81e-e9c1-432c-8c29-813493a04ecd&DisplayLang=en
webBrowser.Document.All.GetElementsByName("login")(0).InnerText = "hoge"
webBrowser.Document.Forms(0).DomElement("login").value = "hoge"
WebBrowser.Document.Forms(0).DomElement("RadioButton").checked = True
webBrowser.Document.Forms(0).InvokeMember("submit")
InvokeMember?
Application.DoEvents()
System.IO.Path.GetDirectoryName?(System.Reflection.Assembly.GetExecutingAssembly?().Location) GetDirectoryName?
My.Application.Info.DirectoryPath
Me.Visible = False
WindowState?
KeyPress?
e.Handled = True
http://www.atmarkit.co.jp/fdotnet/vb2005/vb2005_02/vb2005_02_01.html
http://www.microsoft.com/japan/msdn/vbasic/migration/tips/xmldocument/
Dim hash As New Hashtable() hash("key1") = "hoge" debug.print(hash("key1"))
http://support.microsoft.com/kb/307933/ja
StreamWriter?
Dim fileWriter As System.IO.StreamWriter fileWriter = New System.IO.StreamWriter(filepath, True, System.Text.Encoding.GetEncoding("Shift-JIS"))
StreamReader?
http://jeanne.wankuma.com/tips/process/
Dim server As String = "www.yahoo.co.jp" System.Net.Dns.GetHostEntry(server).AddressList(0)
Dim urlobj As New Uri("http://search.yahoo.co.jp/search?p=vb2005&x=0&y=0&fr=top_v2&tid=top_v2&ei=euc-jp&search.x=1") msgbox(urlobj.Host) 'search.yahoo.co.jp msgbox(urlobj.Port) '80 msgbox(urlobj.Scheme) 'http
http://msdn.microsoft.com/library/ja/default.asp?url=/library/ja/script56/html/jsgrpregexpsyntax.asp
http://www.microsoft.com/japan/msdn/vbasic/migration/tips/netmail/
Try Dim message As New System.Net.Mail.MailMessage("from@hoge.jp", "to@hoge.jp") message.Subject = "Subject" message.Body = "Body" client.Send(message) Catch ex As Exception End Try
VSUG
C# to VB.NET Translator
SharpDevelop