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

  1. crowsario

    Help Please...<xsl:if > not working

    ChrisHunt, thanks a ton for the extra set of eyes.. that worked. also thanks for everyone else's suggestions -Crowsario
  2. crowsario

    Help Please...<xsl:if > not working

    Hi JJR, i thought i was using the most recent version... it's microsofts SQLXML3.0... thanks -Crow
  3. crowsario

    Help Please...<xsl:if > not working

    Hi Jel, i still get the same error. In fact i can't even use xsl:when or xsl:choose statements in my xsl files... it's really weird. Do you think it is because i am using asp and not asp.net? This is my first xml project so any suggestions/comments/links would be helpful. thanks again -R
  4. crowsario

    Help Please...<xsl:if > not working

    thanks for the quick response, sorry.. i left that out of my post... but my xsl does contain the closing tag for the stylesheet. it doesn't like the <xsl:if> statement for some reason. as i stated the page does work without the <xsl:if> but thanks for trying -R
  5. crowsario

    Help Please...&lt;xsl:if &gt; not working

    Hello, i am trying to do a for loop for only the first ten records returned by an asp generated xml file from a sql server backend. when i do not put the <xsl:if> in the template below it works fine... it just gives me more than i want to show at one time. with the <xsl:if> it gives me the...
  6. crowsario

    can you reference a collection of type table in a sql statement?

    Hello All, I am very new at this so any help would be much appreciated... I am trying to reference a table collection in a sql statement in a stored proc... and keep getting the following error in the last criteria of the where clause when trying to compile it: &quot;PLS-00383: type mismatch...
  7. crowsario

    How should I estimate disk space requirement?

    Hello All, I have been given the task of estimating the disk space requirement per record in a database being accessed by an application. I have no idea where to start.. or if there is a utility I can use to help in this endevor. Does anyone have any good links or suggestions to get a better...
  8. crowsario

    is it possible to run an exe from network?

    Hello All, I need to run an application from a network... but I don't want to run the installation on each workstation, as there will be about 30 machines needing to use it concurrently, and any updates would have to be done to each workstation. Is it possible to simply install the...
  9. crowsario

    Can you really only update one table in an UPDATE Statement?!?!

    Thanks Chris and Terry... I guess i'll be changing a bunch of queries next week... oh bother... [afro] -crow
  10. crowsario

    Can you really only update one table in an UPDATE Statement?!?!

    Hi all, I created an app that started off using Access as a backend. There are many places that I have updates to more than one table in a single statement. I am now trying to move to SQL Server 7.0, residing on a windows NT 4.0 machine. Everytime one of these statements is run SQL Server...
  11. crowsario

    Variables passed from form 1 don't get printed to form 2

    Hey Again, I just found out it was a configuration issue with Apache. Now I just need to find out what I need to do to get the jsp's to work. Anyone know off hand?..... thanks -Crow
  12. crowsario

    Variables passed from form 1 don't get printed to form 2

    &quot;Hey Everybody&quot;, I'm a JSP newbie and am trying to do a small example i found in a JSP book. I have an HTML page that uses the Method =&quot;get&quot; to pass two string variables to a .jsp page. I can see the variables being passed in the url of the .jsp page however i can't get...
  13. crowsario

    Can you invoke &quot;Word formating&quot; in a text box control?

    Well Duhlbert, If I did that it would have been too easy. I would have been already finished and could have been worrying about some other part of my program. So yep, you got me... I'm a moron. Sometimes I wonder about myself. :-P Thanks a ton -Crow
  14. crowsario

    Can you invoke &quot;Word formating&quot; in a text box control?

    Thanks for the post JohnYingling. I have tried this and unfortunately for me, my users use 97, 2000, and 2002. In order to make 2002 work like 97 you have to add a line of code that will throw errors with 97 and 2000 (according to microsoft). Also, with Word 2002 you can not use Union Queries...
  15. crowsario

    Can you invoke &quot;Word formating&quot; in a text box control?

    Hi all, I'm trying to create an interface for users to type up a form letter that will save to a database. I am using a text box control with the multiline property set to true. (i can change this control if you think I should use something different). The tabs save and as long as the user...
  16. crowsario

    SELECT FIELDNAMES FROM TABLE????

    Thanks Jebry, Unfortunately I am using a VB frontend....my original thoughts for posting to this forum was that I could right a SQL statement that Access could understand that would return the names of the fields. Instead I played with VB methods to achieve the same. Thanks anyways -Crow
  17. crowsario

    SELECT FIELDNAMES FROM TABLE????

    Ok I actually ended up solving this one....igk pointed me in the right direction but with an adodb.recordset there is no .FieldName property. what I had to do is: do until x =recordset.fields.count-1 list1.additem recordset.Fields(x).name x=x+1 loop after running my select...
  18. crowsario

    SELECT FIELDNAMES FROM TABLE????

    Sorry I should have been a little more specific...I need to do this using a sql_statement that retireves an adodb.recordset so the .FieldName function will not work. Thanks for the post though igk. -Crow
  19. crowsario

    SELECT FIELDNAMES FROM TABLE????

    Does anyone out there know how to select the fieldnames from an access table? I need to fill a list box in my VB front end with the fieldnames from an access table. Anyone?...Anybody?....Anybody?....Anyone? thanks -Crow
  20. crowsario

    is it possible to do a select from a query???

    I figured out what the problem is.... the error occurs when I use &s and &quot;s in an access query (which is fine for use in access) but not when i'm trying to do a select from it. Thanks anyway RAtkison -Crow

Part and Inventory Search

Back
Top