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
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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..
  4. 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?
  5. 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...
  6. 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...
  7. 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...
  8. 1Data

    Need some help validating the LEN on a Text Box

    I need to assign a length of an Text box to an object for validation purposes. I know this is not that hard but I have had a long weekend and can't think today...thanks for any suggestions... dim intcheck If Form.purchaseprice1.value = "" then 'Elseif...
  9. 1Data

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

    I need to assign a length of an Text box to an object for validation purposes. I know this is not that hard but I have had a long weekend and can't think today...thanks for any suggestions... dim intcheck If Form.purchaseprice1.value = "" then 'Elseif Form.purchaseprice1.value...
  10. 1Data

    Regular Expression Validator

    I need to make certain that the first character in a text box is Capatilized. I've inserted a Regualar Expression Validator to my text box can someone give me either the Validation Expression to do this or should I use a Java Function?
  11. 1Data

    Tracing Question

    I am trying to use the built in tracing function in .Net. However, I have a question. I know how to Write and Warn exception messages to the trace log. However, I have noticed that by disabling the Trace property on my form it clears the trace log. Is Tracing mainly used at development? Because...
  12. 1Data

    More Datalist Help...

    Two days ago i asked for some help with a Datalist problem that was resolved thanks to Jim and Co. It was solved using the ItemDataBound Event. I have a new problem, however, I was wondering if anyone can offer some suggestions. I would like to extract a DataItem in the Items Template that is...
  13. 1Data

    Datalist Item

    I have a Datalist with a button in it that I need make visibility off and on based on a Session Variable. Can someone help me with this code? On my page load I have an IF ELSE based on the session variable but don't know how to obtain the visibility property off of that button in my datalist...
  14. 1Data

    datareader attach to a text box in datalist..

    I need to attach a datareader column to a datalist text box... Dim dp As SqlDataReader = SQL_Data_admin.GetVol_LookUp_admin(Session("ssn"), txtlname.Text, Session("User_org")) dp.Read() ...Here i need to Attach my return to textbox in a datalist..specific data.. like ssn, address, fname...
  15. 1Data

    Need an Item from Datalist

    I need an Item off of a datalist so that I can use it in a Function (Code Behind Procedure). I found this Line but don't know what else to add? Datalist.Items.Item (?) The Datalist is binded to a Reader off of a SQL DB. It works but I need a particular item to perform an IF Statement in my...
  16. 1Data

    Datalist Problem

    I having problem displays my information in a Datalist. It displays the Header Template but no data, I am setting the source and bind (Code Behind) to a SqlReader that is reading fine but for some reason I can't see it in my Datalist. I did a Response.Write on my Reader to make certain that it...
  17. 1Data

    Windows NT Login Box

    I need to attach a Windows NT Login box off of my start form to my project. If anyone knows where I can find this I would appreciate it. It doesn't need to be off of my page I just want it to pop up when someone try's to enter my project....
  18. 1Data

    Need some help on the Code Behind Interface

    On the IDE (Code Behind Interface) I want to add the line number on the left of my code and the text wrap. I haven't been able to find those two things on my IDE was wondering if anyone knows how to turn these thing on...
  19. 1Data

    DataReader Insert into a Drop Down Box

    I need to know how to insert a data reader object into a drop down box...I am missing something.. Here is what I have aleady.. Dim dr As SqlDataReader = SQL_Data.GetEmps1() dr.Read() If dr.HasRows() Then DropDownList1.DataTextField = dr("Written_Name")...
  20. 1Data

    Need to sort a DataSet on a Drop Down Box

    Can someone please help me sort a drop down box DataSet. I have read that you have to use a DataView. I have tried that and can't get it to work. Thanks in advance

Part and Inventory Search

Back
Top