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 TouchToneTommy 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: AT76
  • Content: Threads
  • Order by date
  1. AT76

    passing DropDownListValue

    Hi, I have an asp DropDownList and I'm trying to pass its selected value to javascript. Like this: this.DropDownList.Attributes.Add("onclick", "showDiv(this)"); I then have a js file that tries to get that value selected: var i = null; function showDiv(obj) { i =...
  2. AT76

    passing string from aspx to javascript function

    Hi all, I'm trying to pass the text string of a selected listBox to a javascript code function in the client side. Can someone help me with an example! Thanks in advance!
  3. AT76

    grouping with XSLT

    Hi all, I've been trying all day to do some groupings from an xml doc. The XML I have looks like this: <?xml version="1.0" encoding="UTF-8"?> <dataroot> <List> <ID>66</ID> <Title>Title1</Title> <Mapping>Yes</Mapping> <Link>L1</Link> </List> <List> <ID>67</ID>...
  4. AT76

    Edit Item in DropDownList

    Hi, I have a DropDownList with 3 string items. Is there a way to edit the text of of one of the items in my list? Thanks!
  5. AT76

    loading xslt into .aspx page

    Hi all, I'm trying to output an xslt into an .aspx page. Here's my code: StringWriter sw = new StringWriter(); try { XslCompiledTransform xslt = new XslCompiledTransform(); xslt.Load(xslPath); XmlDocument xdoc = new XmlDocument()...
  6. AT76

    getting back XML file after it's been processed by XSLT

    Hi, In my VS project I have an XML doc. I created an XSLT that sorts a node in my XML doc. After I do the transformation of the XML file I would like to re-use it in my program. I'm not sure how to call it back... Here's what I have: xDoc.Load(xmlPath); XslCompiledTransform...
  7. AT76

    modify xml using xslt...

    Hi, I have a DropDownList which source is an XML Doc. However, the items displayed by the DropDownList are not sorted. My Goal is to be able to sort the items in the DropDownList. I understand that I can achieve the sorting issue via an XSL doc. Is this correct? If so, my attempts have not...
  8. AT76

    DropDownList initial value

    Hi, I'm working on a web app that displays a couple of dropdownlists (ddl feed from an xml doc). When the app starts the 2 dropdown lists contain the 1st item of their respective lists. What I would like to do is have these values empty until the user makes a selection. Depending on what the...
  9. AT76

    XPath -&gt; get unique nodes values from XML doc

    Hi all, I'm working on an ASP app in which I need to load an XML file and the display a dropdownlist which when clicked it shows the unique values for a specific node: Ex. <?xml version="1.0"?> <!-- A fragment of a book store inventory database --> <bookstore xmlns:bk="urn:samples"> <book...
  10. AT76

    sort items in a drop down list

    Hi all, I have created a drop down list that display items from from an XML file. I would like to sort this items. I'm trying to figure out how to go about doing this. First thing that jumps to mind is putting the items in an array then sorting the array. After that I would pass this...
  11. AT76

    Displaying a customized list in a datagrid

    Hi all, I've been asked to display get all totals from various columns and display them in a datagrid in MOSS 2007. Can anyone make any suggestions as to how to approach this task. Thanks!!
  12. AT76

    Get Access App Name

    Is there a built in function that retrieves the name of the access App? Thanks!
  13. AT76

    Printing Form with Pages (tabs)

    Hi, I have a form that has a couple of pages that hold a subform. The subform have data on them. When I try to print the form it prints the tabs and subform but the data in the forms does not print. Is there a reason for this? Is there a way to make the data in the subforms print? Thanks!
  14. AT76

    Urgent! Accessing a text in a subform

    Hi all, I'm stuck trying to set a text field in a subform Here's the scenario. I have mainForm1. Inside frm_MainForm1 is frm_Form2. I'm trying to access a text field in that subform to set the text value. The code I have is the following: Forms!frm_MainForm1!frm_Form2.Form!txtField =...
  15. AT76

    opening new worksheet and adding query results

    Hi all, Thru VBA in access I've opened an excel worksheet and done some computations. I know want to add another worksheet to the instance I have already open and populated with an access query. Could someone help me with this? I'm able to create a new blank worksheet but I'm struggling in...
  16. AT76

    Querying by Date

    Hi All I have a table that has Date values like: 2/26/2007 3:34:52 PM I would like to query this table by ShortDate (Ex. 02/07/2007). Is there a way to do this? Thanks!
  17. AT76

    avoiding DSN-Less Connection prompt

    Hi all, I'm connecting to an Oracle database thru code via DSN. Here's what I have: Dim nRet As Long Dim sDriver As String Dim sAttributes As String sDriver = "Oracle73 Ver 2.5" sAttributes = "Server=PRA1" & Chr$(0) sAttributes = sAttributes & "DESCRIPTION=" & sDSN &...
  18. AT76

    Querying by date

    Hi, I'm trying to query a date field thru VBA but I'm not being successful at it. Here's what I have: ((SELECTED_DTE) Between 3/1/2007 And 4/30/2007) Can someone see what I'm doing wrong? Thanks!!!
  19. AT76

    Create a query from drop down lists selections

    Hi all, I have added drop down lists selections in a form. What I would like a user to do is select the fileds he/she wants and then press on a button that will create a query based on the items selected. I have a query already made but I'm not sure how to put this together. Any suggestions...
  20. AT76

    trouble querying in text column

    Hi, I'm pulling tables down from an Oracle database into an access database. I need to do the following filteron onw of the fields: "between ### and ###" (I need to filter for a specific number range.) The problem is that this field is of type text therefore the filter is not working. Is...

Part and Inventory Search

Back
Top