Search results for query: *

  • Users: djohnston
  • Content: Threads
  • Order by date
  1. D

    Retrieving data from a combobox binded to a dataset

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO: This line of code loads data into the 'IDM_Test_1000007680DataSet1.vw_BankCustomerRelationship' table. You can move, or remove it, as needed. Me.Vw_relationshipTableAdapter1.Fill...
  2. D

    xsl:if question

    I just need for a check on wether or not the node has any type of value numeric or alphabetic or alphanumeric. Doesn't really matter what value. I tried something like this <xsl:if "@asOF = true"> <value of selct = asOF> </xsl:if> With all the formatters im sure if you understand the...
  3. D

    xml html string in xsl

    Ok so basically I have code like this all done by hand. <?xmlversion="1.0"encoding="utf-8" ?> <xsl:stylesheetversion="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:templatematch="/a/b/c_d"> <tablewidth="100%"border="0"> <tr> <tdcolspan="4"width="600" > <b>...
  4. D

    xslt

    Ok I am trying to display and xslt stylesheet on a webpage if anyone could explain to me the easiest way it would be greatly appreciated. Just say i create a vs2005 web site I have an xml file and a xslt stylesheet what would you say is the easiest way to install a website.
  5. D

    Populating ComboBox

    OK so basically I have a combobox and a stored procedure that pulls a list of customers in alphabetical order. I need to populate the combobox with those customers. How would I go about doing so. I have been looking up code and keep running into a dead end.
  6. D

    Basic Checkbox question

    OK this sounds simple and all but I am a serious noob when it comes to programming. So lets say I have a checkbox, then 3 textboxes below it. When i click the checkbox i want it to set the 3 textboxes active. So when I hit the sumbit button it knows to pull data from those to be inputted into...
  7. D

    how to get node value frmo xml document

    xml string variables Ok so basically i have sent a byte array to a web service converted it back into an xml string now i need to know how to loop through the string and pull the variables out so i can then pass them to a database. It would be greatly appreciated if someone could either...
  8. D

    Byte Array to Web Service

    Making this as simple sounding as I can. I already have a form that generates an xml file. I could go 2 ways with it: cycle through the variables and move them as an array through the web service or move the whole entire xml file as a stream through the web service. So now to the part I need...
Back
Top