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

    update a table using a rows from another table

    I have 2 tables. The first table (table1) is a list of zip codes and a distributor ID for each. The second table (table2) has a smaller list of zip codes. I need to change all of the distributor IDs in table1 to another ID number ONLY IF the zip code exists in the second table. Then I need to...
  2. artguy

    converting from actionscript 1.0 to 2.0

    I have a script that I would like to use that worked with Actionscript 1.0 but if I export using settings for Flash Player 8 (using either AS1.0 or AS2.0), it no longer works. It's a very simple script that has 5 lines in the main timeline and another 4 or 5 on one of the movie clips. I export...
  3. artguy

    separate domains temporarily - same server

    I have 2 web sites that are going to be merging with each other. So for the next few months, they are creating similar Web sites and retaining their separate domain names. Each site will have an identical home page allowing people coming to either domain decide which one they want to view. Is...
  4. artguy

    Pull info from multiple XML files where IDs match

    I have 2 xml files that I'm trying to combine to display some contact info. My goal is to grab the Department info (address, phone) from the dept.xml file and add a list of contacts that are located in the corresponding dept from the contact.xml file by matching the ID field in one file to the...
  5. artguy

    Taking Web form and saving info to XML

    I'm trying to figure out the easiest way to write to an XML file using ASP(vbscript) from a simple HTML form. I already have existing pages that grab the data from existing XML documents so I thought I could figure out the best way to write to them. I've run across ASP tutorials and ASP.net...
  6. artguy

    DOM/XML: append_child() expects parameter 1 to be object

    I'm afraid I can't find an answer to this. I'm just trying this simple PHP DOM/XML example to understand how it should work since I'm new to this. My error is: Warning: domnode::append_child() expects parameter 1 to be object, null given in line 6 which is this line...
  7. artguy

    Simple PHP script to create XML file, not working; blank screen

    I edited this little bit of code to test to see why writing to an XML file using DOM/XML in PHP is not working and I get no errors nor any sort of result (like an xml file). I checked and the directory is CHMOD 777 if that matters. Any ideas would be appreciated. <?php $xmlDocument =...
  8. artguy

    Outlook 2000: Contact names missing

    Has anyone ever run across this? My boss' Outlook 2000 somehow has blank fields for his contact names on maybe a hundred of his 700 contacts (give or take). Appears to be most recent additions. He noticed it after he sync'd his Sony Clie. May or may not be related but thought I'd throw that in...
  9. artguy

    link to files on CD from flash movie

    I'm creating a little CD browser that contains links to AutoCAD drawings on a CD. How do I create a link to the files on the CD so it works no matter what CD drive you have the cd in?
  10. artguy

    Modular layout - best way to accomplish

    I look at sites like 2advanced.com that have lots of text/buttons that have the same kind of transition and when I build something like that, I have to, for example, create a symbol with the text/icon I want to do with a certain transition and then do a second symbol that contains the...
  11. artguy

    adding record to existing DB; id field blank; needs to increment

    I must not be searching for the right keywords because I can't find a direct answer for this: I'm trying to add a record to an existing MS SQL database with ASP and it works but the ID field ends up blank. I'm assuming the person that setup the DB set that field to auto increment but I don't...
  12. artguy

    File not saving &quot;because the file is in use or was left open&quot;

    We use a combo of Macs and PCs at our office. We've been using an NT 4.0 server for the past 2 years with no problems. We recently added a new server and eliminated the NT server. The new server is using Windows 2003 Server with a NAS setup. Now when opening a file from the new network server...
  13. artguy

    Incorrect syntax near the keyword 'SELECT'

    I'm getting this error. I have read the dealers table successfully without using the SQL statement just to make sure I'm connecting to the database fine and that the table name is correct. I simplified my query to as simple as possible. Here's my ASP code snippet: Set rs = Nothing Set rs...
  14. artguy

    session variable: IE doesn't read it unless I try twice; Firefox works

    I'm setting a simple session variable with this script to let me know the next time a person comes to the home page to not display the Flash component: <% Session("flash") = "played" %> That works fine. But when I run this code to read it in IE the first time, it doesn't output anything until...
  15. artguy

    Mac files &quot;Saving as&quot;on Windows Server 2003

    We use a combo of Macs and PCs at our office. We've been using an NT 4.0 server for the past 2 years with no problems. We recently added a new server and eliminated the NT server. The new server is using Windows 2003 Server with a NAS setup. Now when opening a file from the new network server...
  16. artguy

    random startup items missing; shutdown prolonged

    Not sure why or what exactly is going on but when I start Win XP Pro, my systray usually starts with things such as Zone Alarm, AVG antivirus, Google Desktop, among others and Outlook I have in my startup items to open on startup as well. In the past, they all started just fine. Now when I start...
  17. artguy

    2-column layout; sidebar messing up IE

    I'm having difficulties getting IE to display how I'd like i to. Firefox seems to do a good job so I wanted to make sure my code was how it should be to create my desired results. I'd like the image to display in the left "column" with a sidebar box underneath it. I would then like the main...
  18. artguy

    CRT/LCD laptop display toggle in XP

    We have a Dell laptop at church (don't know the model no. off the top of my head) and are having problems displaying the exact same display on both the laptop LCD and the projector screen. We did it once or twice and now when you toggle through the modes (function + function key # whatever) now...
  19. artguy

    ASP string manipulation - keep the middle portion only

    I need to find a function that would allow me to take the string from request.servervariables("URL") and keep just he part between the first and last slashes. e.g. "www.domain.com/folder1/folder2/page.asp" would keep "/folder1/folder2/" only) I was trying to use the InStr() and Mid() but that...
  20. artguy

    Searching a memo field for a word with ASP

    I am using an Access database on a web site and am pulling info from it just fine. Now I need to somehow do a search in a memo field to find a particular word. The field contains lists of counties and they are separated by commas. I enter a zip code, it finds the corresponding county and then I...

Part and Inventory Search

Back
Top