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

    Linking table where both columns are the same field

    Hello all, I'm developing a parts database, and I need to store information about which parts mate together. The only way I can think of to do it is to create a linking table with two similar columns, like: Part1 Part2 ----- ----- 11478 11340 11478 85675 11478 11415 11229...
  2. snoopy75

    Uninstalling NetBeans

    I'm trying to uninstall my old copy of NetBeans 4.0 beta 2, but when I run the uninstaller, it tells me A suitable JVM could not be found. Please run the program again using the option -is:javahome <JAVA HOME DIR> I have the JRE SE 1.4.2_06 installed... Is that not what it's looking for...
  3. snoopy75

    Getting to a network folder with FSO

    Hi all, I'm trying to iterate through files in a folder contained in a network share, using ASP. Here's my code: Dim objFSO, objFolder, strFolder Set objFSO = server.CreateObject("Scripting.FileSystemObject") strFolder = "\\hif-fslgnt1\logon$\Tracking data\Logon\Users\" &...
  4. snoopy75

    Retrieve data from Outlook address book?

    Simple question: Is it possible to retrieve personnel data from the Outlook address book using an ASP page (using VBScript or Javascript)? If so, how? Thanks! :) --Ryan
  5. snoopy75

    Design opinion question

    Part of my database will be tracking equipment orders in my office. There are two types of orders that the user might enter: accountable or unaccountable. Both types of orders need certain common fields entered, but each order has a handful of unique fields as well. In addition, for...
  6. snoopy75

    How come this doesn't work?

    I'm trying to create an "Expand All" button that, when clicked, will show a bunch of rows that were previously hidden. Here's the code I'm using, but it does absolutely nothing. How come? var arrRows = document.getElementsByTagName("td"); for (var i=0; i < arrRows.length; i++) { if...
  7. snoopy75

    Accidentally formatted flash disk

    My stomach sank to my toes when I realized I had hit the 'Format' icon instead of the one I was looking for, and all the pictures and video clips I had taken on my digital camera that day (which were many) were suddenly gone.... [surprise] I've heard formatting only erases the FAT, but the data...
  8. snoopy75

    Key capture basics

    A function I'm trying to develop is going to be storing a sequence of keys pressed. Unfortunately, I can't find any way to take the keyCode generated by the onKeyUp event and translate it into the actual character pressed. Could anyone point me to a table or function to give me the nudge I...
  9. snoopy75

    Crosstab queries are confusing me!

    I've done the search thing and read all I can on crosstab queries, and I just don't get it! I need to make a permissions table (or query, probably) with usernames in the row headers, and accounts in the column headers (or vice versa, I don't care)... like this: | Acct1 | Acct2 | Acct3 |...
  10. snoopy75

    Retrieving webpage to server with ASP

    Hello! There are a bunch of text files, available over the Internet, that I want to retrieve and save to my local server, so that I can then parse them using FSO. Obviously, I can save and upload the files manually, but there are a lot of files, and I need to do it regularly, so it would be a...
  11. snoopy75

    Outlook 2002 - Advanced Filtering

    I want to filter my tasks to show items that are not completed, OR have a due date that has not yet passed. I can't seem to do this using the regular methods. Can anyone else figure it out? Alternatively, can anyone help me understand the odd SQL that Outlook uses for its filtering, so I can...
  12. snoopy75

    Change slices to hotspots?

    This is probably a silly question, but I'm still kind of new to Fireworks, so please go easy on me. I just finished positioning close to 100 slices on my image, but I was told that hotspots would work better for what I was doing than slices. Is there a quick and easy way to transform a slice...
  13. snoopy75

    .submit() not working?

    I don't understand. I have a link on my page that looks like this: <a href=&quot;javascript:;&quot; onClick=&quot;deleteNom();&quot;>Delete Nomenclature</a> ...which fires this function: function deleteNom() { if (confirm(&quot;Really delete this Nomenclature and all items under it?&quot;))...
  14. snoopy75

    localhost gone?

    Today, suddenly, whenever I try to connect to my site on http://localhost/something, my browser instead tries to connect to http://www.localhost.com/something. I've checked, and IIS is still installed on my computer. Is there a setting that somebody could have changed to disable IIS? Or is it...
  15. snoopy75

    Set the active printer?

    I have an ASP page that dynamically generates a Word document, using Response.ContentType = &quot;application/msword&quot;. It is a page of labels, designed to be printed on a specific label printer. I'd like to change the default printer for the page to that label printer. I know such a...
  16. snoopy75

    Queries with functions using ADO

    I have an ASP page that is using ADO to connect to an Access 2000 database. In the database itself, I have created a query that goes like this: SELECT tblEquipmentInfo.EquipmentID, tblEquipmentInfo.Account, tblEquipmentInfo.Detail_Number...
  17. snoopy75

    Load div contents in background?

    My site has a navigational menu with some sub-menus that are contained in hidden <div> tags, and appear when a link is clicked. One of these sub-menus is dynamically generated, and turns out to be huge, which makes the page take an average of 10-15 seconds to load, and is really annoying to my...
  18. snoopy75

    Too many users on localhost???

    Does anyone know how it could be possible to get a 403.9 error (Forbidden - Too many users) on my localhost server, where I am the only one that could possibly be connecting? Well, I'm getting that very error. I've been experimenting with Excel connections this morning. Could that be the cause?
  19. snoopy75

    Why can't I rotate a picture in PowerPoint XP?

    I've dragged and dropped a .jpg image file (taken by my digital camera) into a PowerPoint slide. I would then like to rotate it 90 degrees to the left. But the 'rotate object' option is greyed out. Any idea why? Thanks! --Ryan
  20. snoopy75

    Print a closed page

    I am developing a website used to generate, fill out, and print a number of forms for equipment maintenance in my facility. Ideally, what I would like is for the user to enter a couple of parameters in some form fields and click a button to print all the applicable forms, without having to open...

Part and Inventory Search

Back
Top