Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ChadJK

    Default Form?

    How do I set up a default form in Access? That is, when a user opens the .MDB file I want a form to automatically open at that moment.
  2. ChadJK

    Automated HTTP Form Submission

    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...
  3. ChadJK

    Check IE Version via VB.NET Code

    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.
  4. ChadJK

    Text Comparison in ASP.NET

    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...
  5. ChadJK

    Text Comparison in ASP.NET

    Darn, I checked http://www.tek-tips.com/threadforum.cfm?lev3=32 for an ASP.NET forum and didn't see one. :(
  6. ChadJK

    Text Comparison in ASP.NET

    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.
  7. ChadJK

    Text Comparison in ASP.NET

    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.
  8. ChadJK

    SQL Server 2005 without an Instance Name

    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...
  9. ChadJK

    Question on Getting Windows Auth to work with DSN

    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"...
  10. ChadJK

    Question on Getting Windows Auth to work with DSN

    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...
  11. ChadJK

    Need Const Variable Declaration Converted to C#

    How would this snippet of VB code be done in C# Private Const SRCCOPY = &HCC0020
  12. ChadJK

    Monitor Free Space on HDDs

    Is there a way to configure Windows to monitor hard disk free space and send an administrative alert when there is less than x MBs or x % free space?
  13. ChadJK

    XML NodeLists

    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...
  14. ChadJK

    Map a Drive

    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#.

Part and Inventory Search

Back
Top