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: fchan
  • Content: Threads
  • Order by date
  1. fchan

    Dynamically Creating a table that displays images

    I want to dynamically create a table to display thumbnail images. The table should only have four columns, but can have as many rows as needed to display all the images. I am pulling the images from my web server using the FileSystemObject object and I am inserting the file name into the image...
  2. fchan

    Deleting records while inserting same records into new table

    Hi, I have a small asp app that allows our HR group to maintain job postings (add, update, delete) on our public web site. Our HR Rep would like a list of the deleted postings. How can I delete records from one table while inserting the same records into another table? I know how to do this...
  3. fchan

    VBScript question regarding loop control structure

    I am creating an SQL statement from an array. The values in the array supply the values for the WHERE clause of my SQL statement. Here's my code: ************** Dim strPostingSQL, strWhere, iLoop strPostingSQL = "DELETE FROM tblCurrentJobs WHERE " For iLoop = LBound(arrPostings) to...
  4. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    Hi, I recently removed and re-installed the IIS 5.0 component on my Windows 2000 server and now my asp pages will not display. All my html pages display correctly, but I get a "Page Not Found" error when I try to view an asp page. I checked my permissions and I am using the Internet...
  5. fchan

    Page Not Found Error when loading my asp page

    Hi, My test webserver (Win 2000 Server) recently started acting up so I uninstalled IIS 5.0 and then added the IIS component again. Instead of fixing the problem my steps made the problem worse. Now none of my asp pages will display from my test server. I get the error message, "Page...
  6. fchan

    Cannot display asp pages from my web server

    Hi, I'm running IIS 5.0 on a Windows 2000 workstation and I can't get my asp pages to display. I get a HTTP 500 - Internal Server Error when I try to view my asp pages. I can see html pages fine though. Any suggestions? I already uninstalled and reinstalled the IIS component a couple of times.
  7. fchan

    How do you apply the @page at rule in your html

    Hi, I'm trying the change the orientation of my html document when its printed to landscape using the @page at rule. I know that you define the @page using the following, @page [page selector]:[optional pseudoclass] {size:auto landscape} What I'm not sure of, is how you apply this at-rule in...
  8. fchan

    Problems sharing files and printer in a home network

    Hi, I have a home network set-up that consists of a desktop PC running Windows XP, a laptop running Windows 98 with a wireless PCI card, a SMC 4-port wireless router, and a DSL modem. The DSL modem is plugged in to the WAN port of the wireless router and my desktop is plugged into one of the...
  9. fchan

    Pop-Up menus using DHTML like Microsoft's home page

    Does anyone know where I can get the code to create the pop-up menus like those on Microsoft's home page. I know that there is code out there for DHTML menus, but they all seem to use image links instead of text links. I would like to use my text links, but still be able to generate the pop-up...
  10. fchan

    Passing a value from one form to another form

    Hi, This question involves three forms in my application. Form 1 is a search form. When an ID is entered, a table in my database is queried. If the ID is found, I use the Open method of the DoCmd to open form 2. The recordsource for Form 2 is then dynamically created using an SQL statement...
  11. fchan

    Using asp code to update a record and add a new record at same time

    Hi, Is it possible to write asp code or actually an SQL statement for my recordset object, that will update a specific field in a specific record and also add a new record to a db table all at the same time? Thanks.
  12. fchan

    FileSystemObject object and the Folders collection of the Drive object

    Does anyone know how I can use the FileSystemObject object to list the folders in a drive. For example, I want to list all the folders on the c drive of my web server. I tried using the following code, but got an error message stating that the object does not support this property or method...
  13. fchan

    mapping a drive to a novell file server

    Hi, I've mapped a drive on my win2000 server to a directory on a novell file server. But I'm having problems accessing the files through my active server pages. Is there something that I'm missing? Do I need to set permissions to this mapped drive? If so, I can't find where I can do that...
  14. fchan

    ODBC DSN for a Visual Fox Pro database Table

    Hi, I'm having problems connecting to a Visual Fox Pro database table thats in a Free Table Directory on a (Novell) machine that is not that same machine (Windows 2000) that my webserver resides on. I mapped a drive on my webserver machine to the directory containing my Fox Pro table...
  15. fchan

    Code for detecting if browser's back button was clicked

    Is there a way to determine if a web site visitor reached a certain page by hitting the browser's back button or by clicking on a link to that page? For example if a web site visitor went from page A to page B and then goes to page A. Is there a way to detect whether the visitor go to page A by...
  16. fchan

    Data Entry Validation on a form

    Hi I'm trying to write some code to validate user input in a text box on my form. The text box accepts up to 10 characters and the values can be a string of two letters and six numbers (AA1223456) or a string of three letters and six numbers (AAA123456) or a string of four letters and size...
  17. fchan

    Question using the OpenDatabase Method

    Hi, I've written some code to correspond to a button_onclick event. The code is suppose to open another Access database and then use the DLookup function to validate a user's login name and password. However, I'm not sure how to reference the table in the other database. What is the correct...
  18. fchan

    Restricting Design View for queries and reports only

    Is there anyway to restrict the design view for queries and reports only? I don't the users changing the form design, but I want them to be able to create their own queries and reports. Is this possible?
  19. fchan

    In valid use of Null error message when form load event is called

    I have two tables that have a one-to-many relationship. Table 1 has staff ID info and table 2 has staff leave of absence info. I have a search form that the user can search using staff id or staff name. The search form opens the LeaveInput form which contains the LeaveRecord subform. When...

Part and Inventory Search

Back
Top