How can I use VB.NET to do an HTTP form submission (method=POST) behind the scenes?
Basically, I need some VB.NET code to accomplish the same thing as clicking submit on the HTML form below would accomplish:
<form method="post" action="http://www.myurl.com/default.aspx?formid=13">
<input...
How can I programmatically check what version of Internet Explorer is installed on a desktop. When my app launches if I simply want it to check what version of IE the user has and if it's not the one (or ones) I specify then pop a message and exit.
That's correct, ca8msm.
It's for quality control. We have typists who type up legal descriptions of properties (real estate). It's typed twice (by two different typist) if they both match then we assume it's correct. Otherwise, we want to mark the difference in the two so it can be quickly...
Does anyone know of any existing code or third party control for doing text comparison? I want to compare two different string values (from two different multiline textboxes in ASP.NET) and then highlight the differences in the two.
Does anyone know of any existing code or third party control for doing text comparison? I want to compare two different string values (from two different multiline textboxes in ASP.NET) and then highlight the differences in the two.
Is it possible to install SQL Server 2005 without an instance name? I installed the CTP a while back to test/play and I *have* to connect to it as SQL-DEV/sql2k5dev where SQL-DEV is the server name and sql2k5dev is the instance name. In SQL Server 2000 you could simply connect to the server...
I figured it out finally...
using System.Runtime.InteropServices;
[DllImport("ODBCCP32.DLL")]
private static extern bool SQLConfigDataSource(IntPtr parent, int request, string driver, string attributes);
SQLConfigDataSource((IntPtr)0, 4, "SQL Server\0"...
I'm using the following bit of code to generate a DSN, but it seems to keep setting it up to use SQL Server authentication and I want it to use the integrated Windows Authentication:
using System.Runtime.InteropServices;
[DllImport("ODBCCP32.DLL")]
private static extern bool...
I'm trying to turn an XML response into a Word Doc. I'm doing well with formatting the Word doc, but I need help iterating through nodes.
The xml node <_DATA_PROVIDER_COMPARABLE_SALES> repeats 1 or more times. So, I want to go through each instance and dump it into my Word doc report. The...
How can I map a network share as a drive letter using C#. Normally you'd use a "NET USE ..." from the command prompt, but there has to be a programmatic way to do it in C#.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.