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 IamaSherpa 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. robertl

    search directories and list file names

    Hi all, I'm revisiting my issue of trying to search a directory on my webserver and return a hyperlinked list of the Excel files within whatever directory they're stored in. This is the closest that I've come, although it's in VB (which lists the full path and file name--not what I need) and...
  2. robertl

    creating a grid that can be referenced as a 2D array?

    I created a graph, which in my opinion is the long way around, by joining a bunch of lable boxes together. Currently, I have five rows each with of 30 lable boxes displayed on the screen. All of these rows creates my table. The current table I have associated with a month (Jan). However, with...
  3. robertl

    Use of NextRecordSet??

    I set up another recordset and read from the second rs in order to transverse the second table. Works fine Thanks for the idea. ::-)
  4. robertl

    Use of NextRecordSet??

    I have an access 2000 database with two tables An employee table linked to a holiday table (which contains a field for the link and a date/time field) The relationship is one-to-many I have the following line in my application. SQLString = "SELECT Count(EmployeeName.ID) AS NoOfEmp...
  5. robertl

    Is there anyway to create an array of cells that can be referenced

    I have a feeling that jaredn's pointer to the article maybe what I need, I'm just going through the article's sample so I can understand what they're doing with dynamically created tables. I should have made clear that I'm looking at creating a chart that lists the month as 'mmm' in one header...
  6. robertl

    Is there anyway to create an array of cells that can be referenced

    I don't think Javascript will let me do this, and with what I know from HTML, I don't think this can be done as well. I'm wanting to create an array, that will reference cells in a table created in HTML. (I.E. I would like to be able to reference the values in the cells second column over...
  7. robertl

    ability to open vb application with a javascript function

    I'm wanting to create a calender application in VB, since I haven't seen any in Java or Javasript that I like. Essentially, I'm wanting colour coordinated employees (or graphs that represent employees) that show when the person booked holidays. However, our site is in Javascript and Java and...
  8. robertl

    submit or return value from <script> code

    Already tried. No matter if I include var or not in front of commval when I try referencing commval in say: <input type=&quot;hidden&quot; name=&quot;test&quot; value=&quot;<%=commval%> I receive an error that &quot;commval is not defined&quot; It's as if I can't pass a variable from within...
  9. robertl

    submit or return value from &lt;script&gt; code

    Hi! No go. When I change <% while (!rs.eof) { val=rs(&quot;commodity_desc&quot;); Response.Write('<option value=&quot;' + val + '&quot;>'); Response.Write(val); Response.Write(&quot;<BR>&quot;); rs.MoveNext(); } %> to <%...
  10. robertl

    submit or return value from &lt;script&gt; code

    Here's the entire page <% var connect = Server.CreateObject(&quot;ADODB.Connection&quot;); var rs = Server.CreateObject(&quot;ADODB.Recordset&quot;); connect.Open(&quot;DSN=verify&quot;); var SQL = &quot;SELECT commodity_desc FROM Commodities ORDER BY commodity_desc&quot;; rs.Open(SQL...
  11. robertl

    submit or return value from &lt;script&gt; code

    I have the following piece of script near the beginning of my page. <script> function navcom() { comm=document.bookform.bcommodity.selectedIndex; commval=document.bookform.bcommodity.options[comm].value; document.write(commval);} </script> further down I have the following scriplet...
  12. robertl

    recordset error

    I also had to have EOF in smallcase as well. Thanks.
  13. robertl

    recordset error

    Thanks for the info. I'll have to play around with the example you put down, although it works, in that I get more than just one record displayed, an infinate loop occurs with just the first record being displayed.
  14. robertl

    recordset error

    I just check my other site and I did code it in VBScript. I had recoded my connection strings to a javascript equivalent and want to transverse the records with a do while not rs.eof Is this allowed in Javascript? A book I have on Javascript only addresses while loops, yet a site that I just...
  15. robertl

    recordset error

    I'm receiving the following error: Microsoft JScript compilation error '800a03ec' Expected ';' /bulk/bookcargo.asp, line 13 set rs=Server.CreateObject(&quot;ADODB.RecordSet&quot;) when I try to run this code: <% //Create a recordset set...
  16. robertl

    capturing value of variable for an input value

    I'm trying to figure out what I need in order to take the value that is returned by the line gotUID = Session(&quot;UID&quot;) and insert it into this line <input type=&quot;text&quot; name=&quot;gotUID&quot; value=&quot;&amp;[gotUID]&quot;> As you can see I've been messing around with the...
  17. robertl

    return multiple files with GetFile method

    I cleaned up the code to have the following all the while trying to insert the file names into an array so I could check the substring and find out if it would equal &quot;.xls&quot;. This is what I have: var fso, fldr, fc, c; files = new Array(10); fso = new...
  18. robertl

    return multiple files with GetFile method

    Someone on this board directed me to another site that contained information regarding the FileSystemObject Objects. After experimenting with the Objects, I'm able to successfully list all files from a directory that I specify using the Files collection or I can display the name of one file...
  19. robertl

    problems with conditional with value from a record set

    I have the following code where I'm having problems comparing the value that a user entered &quot;upass&quot; with that retrieved from a database (RS('Password')) (which was assigned to pw for my ease of following). <% uname=Request.Form(&quot;uname&quot;) %> <%...
  20. robertl

    jscript conditonal upon data retrieval from DB

    Thanks, it appears that might work. I received an error of &quot;Object expected&quot; so I included the statement <%Response.Buffer = True%> but that just creates another error in that &quot;True&quot; is not defined. I've read conflicting statements on different sites that...

Part and Inventory Search

Back
Top