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 wOOdy-Soft 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: robertl
  • Content: Threads
  • Order by date
  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 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...
  4. 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...
  5. 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...
  6. robertl

    submit or return value from <script> 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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;) %> <%...
  11. robertl

    jscript conditonal upon data retrieval from DB

    I have the following snippet of code in an ASP page: <% uname=Request.Form(&quot;uname&quot;) %> <% upass=Request.Form(&quot;upass&quot;) %> <% CON=Server.CreateObject(&quot;ADODB.Connection&quot;) CON.Open(&quot;DSN=verify;&quot;) SQL = &quot;SELECT User_Name, Password FROM mainpwl&quot...
  12. robertl

    displaying a directory listing in javascript

    I am trying to figure out a way to have a directory listing appear on a page whenever a user clicks on a link. I can't think of a way to get my script working unless I want to go with VB, which I really want to stay away from since most of the site uses javascript instead of vbscript. I'm...

Part and Inventory Search

Back
Top