Search results for query: *

  1. T

    Remove a portion of a string value?

    Well, as I have seen a lot of examples on the web that use the proposed method. However, I cannot use this method I think... ??? What I have is a dataset that has my navigation links along with a Parent/Child relationship. I am trying to take that data from the dataset and placing it into a CSS...
  2. T

    Remove a portion of a string value?

    I am thinking of the best way to remove part of a string. Here is my String value: Code: <ul> <ul> <ID>98</ID> <li>Online CIO</li> <ul> <ID>99</ID> <ParentID>98</ParentID> <li>Add CIO</li> </ul> <ul> <ID>100</ID> <ParentID>98</ParentID>...
  3. T

    Database Connection Strings...

    Hi. I have a few questions as to how I should be working with my MSSQL 2005 connection strings in my VB.NET 2005 applications. My colleagues and I question the best methods to be used when dealing with connection strings. Currently we have a multiple location environment that has time clock...
  4. T

    Proxy Authentication Error...

    Just wanted to step in and let you know that I was able to authenticate through the proxy using the following method: Private proxyLoginId As String = "username" Private proxyPassword As String = "password" 'LOG ON TO THE PROXY. Try Dim makeReq As HttpWebRequest...
  5. T

    Proxy Authentication Error...

    Hi all. I have created a Windows Service that runs every 8 minutes to go out and get the current weather for several of our company's locations. To access the internet, we are required to provide a username and a password. This has to do with our proxy. After 8 hours of INITIALLY logging in...
  6. T

    VB.Net 2003 & MySQL

    I have been trying to determine if there is a way to build a PC based application so that I can access data in my MySQL database that resides on the web. Is there a connection method to do this and if possible, can anyone provide some example code to connect to a MySQL db on the web? Thanks in...
Back
Top