Get/post to RESTful web service

You’ll need to add a reference to the MSXML library: Dim sUrl As String Dim response As String Dim xmlhttp Set sUrl = “http://my.domain.com/service/operation/param” Set xmlhttp = Server.CreateObject(“MSXML2.ServerXMLHTTP”) xmlhttp.open “POST”, sURL, False xmlhttp.setRequestHeader “Content-Type”, “application/x-www-form-urlencoded” xmlhttp.send() Dim response As String = xmlhttp.responseText Set xmlhttp = Nothing

Objects implicitly instantiated in vb.net?

Yes that is legacy behavior. Classes did not show up in VB until v4, before that Form1.Show was The Way to show forms. In order to keep previous code compatible (VB3 was also very popular), the old method was maintained. It is still supported in .NET as a legal means to show forms. Initially, this … Read more

Alternative IDE for VB6 and VBA [closed]

I have never heard of an alternative IDE for Visual Basic 6.0 (VB6). However, these two (free) VB6 add-ins are indispensable and will make your life easier – especially if there is a lot of code. They are equally effective for VBA in Microsoft Office. MZ-Tools: provides a superb collection of IDE tools – finding … Read more