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: *

  • Users: 1Data
  • Order by date
  1. 1Data

    Need to insert search capability..

    I think that is going to do it...thanks a million.
  2. 1Data

    Need to insert search capability..

    That is great I have another question is there a way to use a wildcard for instance in the path String Dim path as String = "C:\root\directory\*.doc" Can I use something like that to search for all docs in that directory? Thanks
  3. 1Data

    Need to insert search capability..

    I need to be able to search a directory for XML files as part of this application. Can someone please offer some direction on how I can do this...I would then consume the Document into a Dataset. Thanks in Advance
  4. 1Data

    Conversion Problem

    I know that about IE...its an intranet app no one will be using anything but IE. Thanks LEE that works great.
  5. 1Data

    Conversion Problem

    elements" is that a function. I ask cause it doesn't work.
  6. 1Data

    Conversion Problem

    I apologize upfront for this question...but my brain is not working properly this morning... I have a "statement" that I need to be excuted. strbidunitprice = "form1.bidunitprice1" & index & ".value" Now I need to attach this value to another object. But of course its value is the literal...
  7. 1Data

    Combining/Merging DataTables

    For i = 0 To All.Rows.Count - 1 All2.Rows.Add(All.Copy.Rows(i)) Next I get this exception? This row already belongs to another table
  8. 1Data

    Combining/Merging DataTables

    Jim what is i? Dim i As DataRow?
  9. 1Data

    Combining/Merging DataTables

    Your the man Jim...thanks
  10. 1Data

    Combining/Merging DataTables

    I need to combine 2 DataTables into 1..How can I do this. FYI I know about the merge for Datasets this won't work for what I need to do. I thank you in advance..
  11. 1Data

    Need to Bind Several Dataset Tables to a One Datagrid

    I probably should of said this from the beginning but I am loading my dataset from an XML Document.
  12. 1Data

    Need to Bind Several Dataset Tables to a One Datagrid

    Jim can you give me an example please? something generic...
  13. 1Data

    Need to Bind Several Dataset Tables to a One Datagrid

    When I try to renders a Datagrid that is bound to a dataset it only displays the first table in the dataset? Is there a way to render all the tables in the dataset through that datagrid?
  14. 1Data

    Call A Script Function Problem

    that works fine...it returns a 1...plus I have tried this with everything commented out to make certain that it's not something like that...I have made the call to the function by itself and it still faults out..
  15. 1Data

    Call A Script Function Problem

    I realize that the expression is what you mentioned, that's not important to me right now...I have another question though in my HTML tags I am using this.. <SCRIPT Language="VBScript" src="/Validate.vbs"></SCRIPT> <SCRIPT language="VBScript"> <!-- ... <\SCRIPT> The Validate.vbs is the...
  16. 1Data

    Call A Script Function Problem

    No but I wanted to use Regular Expressions more for future formatting issues. The problem is on the call to the script not so much the formatting...
  17. 1Data

    Call A Script Function Problem

    I am making a call to a VBScript called Validate.vbs. There is a Function within this script that is called validateNumeric(strValue). I keep getting a Type mismatch: 'validateNumeric' here is my code.. If Form.purchaseprice1.value = "" Then 'If Null then Nothing Else Check Else Dim...
  18. 1Data

    VBScript Problem

    I am making a call to a VBScript called Validate. There is a Function within this script that is call validateNumeric(strValue). I keep getting a Type mismatch: 'validateNumeric' here is my code.. If Form.purchaseprice1.value = "" Then 'If Null then Nothing Else Check Else Dim strValue...
  19. 1Data

    Attaching an Object to a Text Box in HTML..

    I need to get the length of a text box value and attach it to an object in VBScript... dim intvalue = Len(form.purchaseprice1.value) does not work I was wondering if someone can help me with this... I keep getting an Expected End of Statements...If someone can offer some advice I would...
  20. 1Data

    Rookie Question - Need to assign LEN to an object..

    thank you ca8 and jennifer i just realized that I posted in the wrong BLOG..i am coding in ASP...so I appreciate your help none the less..that is probably why i was confused with your responses...thanks anyways...

Part and Inventory Search

Back
Top