Top "Vb.net" questions

Visual Basic.

How to execute an SSIS package from .NET?

I have a SSIS package that eventually I would like to pass parameters too, these parameters will come from a .…

c# .net sql-server vb.net ssis
One line if in VB .NET

Is it possible to do one line if statement in VB .NET? If so, how?

vb.net conditional-operator
How to use <DllImport> in VB.NET?

How should I DLLImport things in VB.NET? An example would be: <DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.…

vb.net dllimport
Sending HTTP POST with System.Net.WebClient

Is it possible to send HTTP POST with some form data with System.Net.WebClient? If not, is there another …

.net vb.net http webclient
Need help rounding to 2 decimal places

Why is it that when I do the following... Math.Round(0.75, 1, MidpointRounding.AwayFromZero) I get 0.8 but when I do the …

.net vb.net math-functions
What is the best workaround for the WCF client `using` block issue?

I like instantiating my WCF service clients within a using block as it's pretty much the standard way to use …

c# vb.net wcf using wcf-client
center MessageBox in parent form

Is there a easy way to center MessageBox in parent form in .net 2.0

c# .net vb.net winforms messagebox
What exceptions should be thrown for invalid or unexpected parameters in .NET?

What types of exceptions should be thrown for invalid or unexpected parameters in .NET? When would I choose one instead …

c# .net vb.net exception
How to get status code from webclient?

I am using the WebClient class to post some data to a web form. I would like to get the …

c# .net vb.net webclient