Search results for query: *

  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

    Thanks Ya i was just playing around. I am still a programming newbie but I will continue to get better at it. Im thinking about this weeked and I am probably going to create a tetris like game then move up from there. Thanks for the help.
  3. D

    xsl:if question

    Ok thats cool Ohh lol ya I'm actually just displaying it with a gui interface. So I'm not really using xpath. I think lol. FYI: Only on my third week of programming lol.
  4. D

    xsl:if question

    Thanks alot Its not a database value so i just omitted the @ But other then that thanks alot The report will look alot more professional now that i can ommit fields. Well I'm thinking about maybe making some forums of my own, its probably a really good way to learn. If not maybe i can get...
  5. D

    xsl:if question

    Didn't work It gives me a red underline and says required whitespace does not exist.
  6. 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...
  7. D

    xml html string in xsl

    Ok so maybe not Maybe its not a string but im still not sure on how to format it.
  8. 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>...
  9. D

    xslt

    Sample code if you dont mind Im not trying to sound rude or anything I was just wondering if you could maybe post a sample on how you mean for me to do that. Like i said before i think it was the ordering in which i was messing up before here ill post the code i was using so its not like im...
  10. D

    xslt

    reply OK check this out I just use vs 2005 to create a website from there i use the built in assmebly to show the xslt so i can format it according. So basically I need to know how to load the xml document the apply the stylesheet I'm not using a "server" Its an asp.net website. Not sure if...
  11. D

    xslt

    asp.net website I have tried to use xmlpath, xmldatadocument, xmlcompiletransform ^ all of the above that go along with that. I cant seem to get it to display the data from the xml document into the xslt onto the webpage. So i was wondering if anyone had any sample code they could give me...
  12. D

    xslt

    Update I think the way i worded that was a little wrong. I need to load the stylesheet to the webpage so i can see how it is going to look when displayed. Like i said I have the xsl and the xml i just need the information on how to load it to the webpage.
  13. 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.
  14. D

    Basic Checkbox question

    Thats awesome but one more question I understand the basic IF else statement but I need like if checkbox36.checked then 'this if checkbox36.checked and checkbox37.checked then 'this if checkbox 36.checked and checkbox37.checked and checkbox38.checked then 'this. end if I dont think i...
  15. D

    Populating ComboBox

    Probably the last question. Ok check this out I have mastercustomerid's 1 2 3 4 5. Let say 1 is connected to customerid's 1,2, and 2 is connected to 3,4 and 3 is connected to 4,5. When I display it in the combobox it shows all of the instances of the mastercustomerid that connect to...
  16. D

    Populating ComboBox

    Got Dataset OK i got the dataset, now when I display the information i only display 1 part of the dataset. Once they select lets say customer name ABC there is a customer number that is in that dataset as well. I am going to need both of those so it knows what database to put the information...
  17. D

    Populating ComboBox

    Data being retreived I am actually retreiving a dataset from a stored procedure.
  18. 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.
  19. D

    Basic Checkbox question

    Thanks for the help Thanks alot Im getting that much closer to finishing this app. I'm about 3/4 done with my first app ever, which was stopped so i could work on this other one so ya im pretty noob to this. But thank alot David.
  20. 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...
Back
Top