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 strongm 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. Programming2007

    Trying to remove an xml tag

    That was the first thing that I tried.
  2. Programming2007

    Trying to remove an xml tag

    I am trying to remove a whole element but instead am just removing its attributes. For example my code will take the tag: <item key="dbName" value="TESTdb" /> and after removeall it leaves it as: <item />. I want the item tag totally erased. How do I do this? Here is the xml: <?xml...
  3. Programming2007

    using asp code within vbscript

    I have a submit button. When it is clicked then I want it to call asp code. It calls a vbscript sub.I don't know how to write the asp code within the script. Below is my code ........................................................ <tr><td><%=(vName)%></td><td><input type ="checkbox"...
  4. Programming2007

    DataReader error-Operation is not valid due to the current state of th

    Thank you for responding. The problem is not with the dataadpater closing it is with the stored procedures. The statusQwest stored procedure works but the other 2 do not. the "ADD_RECORD_Qwest_MISSING_FILES" stored procedure is what closes the connection at execute nonquery.
  5. Programming2007

    DataReader error-Operation is not valid due to the current state of th

    Thanks, the exception says that the connection is closed. It is closed at execute nonquery but it is open before that. I don't know why it is suddenly closing.
  6. Programming2007

    DataReader error-Operation is not valid due to the current state of th

    The error message is "Operation is not valid due to the current state of the object
  7. Programming2007

    DataReader error-Operation is not valid due to the current state of th

    Imports System.IO Imports Oracle Imports Oracle.DataAccess Imports System.Threading Imports Oracle.DataAccess.Client.OracleDataReader Public Class LoadMissingData Public myDS1 As New DataSet() Public daOracle As New Oracle.DataAccess.Client.OracleDataAdapter() Public...
  8. Programming2007

    Navigating through a dataset to find column values

    Hello how do I navigate through a dataset to find column values. My code looks something like this: Dim myDS1 As New DataSet Try strSQL = "select TERMINATE_NUMBER,ORIGINATE_NUMBER,CALL_DATE,CALL_TIME" & _ "from ratesys_gc_cdr_bad " & _...
  9. Programming2007

    Want to avoid teh Filestream.position from reading whitespace

    Hi I have a huge file with numbers and white space. Each of the numbers in a specified position represents a field. The problem is that when I read the numbers at the specified position it takes whitespace into account. How do I avoid this? Below is my code: Files =...
  10. Programming2007

    Write to a textFile without substituting text

    Hello I am trying to write to a textfile at a certian position. The problem is that when I do that what I write to the file writes over the existing data. How do I do a write that is like an insert which just inserts the values into the textFile without replacing them. Below is my code...
  11. Programming2007

    DataList with hyperlink and label from arraylists

    Hello I am writing my own site Search for my website. I am opening all the files with .htm and aspx extensions, reading these files and searching for a keyword that a user types in for search criteria textbox.Descriptions is an arraylist that contains the first few words of a sentence where the...
  12. Programming2007

    DataList with hyperlink and label from arraylists

    I am using a DataList to display a list of hyperlinks and labels. A user enters a search criteria and the page (hyperlink) is displayed along with a sentence (label)where the keyword is used. I have a Files arraylist of hyperlinks and a Descriptions arrayList of sentences. I don't know how to...
  13. Programming2007

    DataList with 2 arrayLists for hyperlink and label

    I am using a DataList to display a list of hyperlinks and labels. A user enters a search criteria and the page (hyperlink) is displayed along with a sentence (label)where the keyword is used. I have a Files arraylist of hyperlinks and a Descriptions arrayList of sentences. I don't know how to...
  14. Programming2007

    Array CopyToMethod ..error

    Thanks so much now it works
  15. Programming2007

    Array CopyToMethod ..error

    Hello All I have 4 string arrays and I am trying to copy them all into 1 large array and have an error that the index is out of range.I thought of using an arraylist but then I would have subindexes for each of the add()'s which I am not sure how to manipulate.Below is my code which currently...
  16. Programming2007

    How do I write !=null in vb .net?

    This is my code: Private Sub getWebViewFiles(ByVal s As String) Dim files As String() Dim curDirectory As String() Dim dirs As String() curDirectory = Directory.GetFiles("C:\\SCoutline4") dirs = System.IO.Directory.GetDirectories("C:\\SCoutline4")...
  17. Programming2007

    Simple Button to pass string to aspx Webform

    Hello all I have a textbox that takes a string and when a button is clicked the string has to be passed to a method in an asp .net webform. How do I do this? below is my code. Function in HOME.html (This is what I need help writing)! <!-- function Button1_onclick() {...
  18. Programming2007

    Operator '|' cannot be applied to operands of type 'string' and 'stri

    Unfortunately that doesn't work it searches for files of type "*.htm && *.css", with the and in the middle.

Part and Inventory Search

Back
Top