Recent content by YodaMan

  1. Y

    Viewing Shared Files

    Is there a command or screen in Win 95 through XP that tells you what files you are sharing and where they are located? I can see the files I am sharing by going to my Network Neighborhood, but it doesnt tell me where they are on my pc. Thanks!
  2. Y

    Printing from website w/o headers and footers

    Hey, I understood what you were saying about having the user actually changing their own settings in order for that not to happen. I was just hoping that someone could suggest something else, because like you said, you werent too sure. It was just a Monday morning bump that I had hoped someone...
  3. Y

    Printing from website w/o headers and footers

    I was able to print the form without borders by creating a css file. Thanks a lot Now I just need to know how to print this page without having the website and date appear on the bottom of the page.
  4. Y

    Printing from website w/o headers and footers

    I am trying to generate a letter online using information from our database as well as info inputted by a user. I have a page where the top (letter head if you will) has the info generated by the db. The "Address to" has 4 input text boxes. The body of the letter is same for all users...
  5. Y

    Web Interaction

    I need to create a webpage which involves two things. The first is using information within our database and showing it on the website. I can do that already. But the other is being able to take the information a user enters (Name and address) and adding it into the letter which will then...
  6. Y

    Email Support

    I have a list of over 600. The reason I am trying to do this is so that it can be done anytime because doing it that way will take me hours. Thanks though.
  7. Y

    Email Support

    Ok I found a computer here with Access. As you can probably guess I have never used it before. Any clues/suggestions as to how I can covert my column in Excel to separate email addresses that can be imported into Outlook? Thanks in advance!
  8. Y

    Email Support

    I dont have access :frown:
  9. Y

    Email Support

    I have a contact list within Excel. At times I need to send a mass email to all the email addresses at once. I use Outlook so they need to be separated by a semi-colon. Well I can easily do that by replacing all the .com with .com; The only thing is that its in a listed format and when I cut...
  10. Y

    JavaScript Mess

    I am trying to create a form using the clone function. The form has a couple of radio buttons and everytime the form clones itself the radio buttons are still named the same thing. I need to name them differently so when I answer a question in the first form, it is not affected by the answer...
  11. Y

    ASP/JavaScript Question

    bump**
  12. Y

    SQL n JavaScript Question

    I have a webpage where users can log in. When all the checks work out I have a page that says "Welcome Consumer" I want it to say "Welcome Joe"...the name I get from a SQL procedure. The SQL procedure does a couple of things and there is a JOIN within the SQL procedure that joins the...
  13. Y

    ASP/JavaScript Question

    Now that I have the "Add Item" feature, I also implemented the validation feature where I count the number of boxes to check if the user has filled in all required information. How can I create a "Delete Item" feature to remove any items after 1? As I have it now, if they click on Add Item...
  14. Y

    ASP/JavaScript Question

    So I have run into yet another problem. Here is the code I used to make a radio button within the loop. stritem += "<TD class=SubHeader align=left> Would you like to purchase an extended warranty?: </td><td align=left><input name=\"War"+ last +"\" type=\"radio\" value=\"Yes\">Yes <input...
  15. Y

    ASP/JavaScript Question

    Thanks a lot for all your help! I have been working on changing my form to resemble this one, however I ran into another problem I am hoping you can help me with. Instead of making each box a text box, I want to make a couple of them select values where they can click and choose rather than...