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 Mike Lewis 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: *

  1. Dashsa

    Syntax error (missing operator) in query expression

    Actually I got it, Thanks again.... Stupid 's :)
  2. Dashsa

    Syntax error (missing operator) in query expression

    WHoooo! Thanks a BUNCH! why do I need to replace that session var and not the two above it?? thanks again.
  3. Dashsa

    Syntax error (missing operator) in query expression

    Hello I am collecting info from a form and trying to insert it into a Access Table. I am getting the following error. Syntax error (missing operator) in query expression ''Thu Jul 01 19:35:59 2010david's Test', '4')'. I have printed the Sql and it is Insert INTO CustomEntry (EmailAddress...
  4. Dashsa

    inserting records into table

    Thanks a bumch i'll give it a whirl!
  5. Dashsa

    inserting records into table

    Hello, This is simple I know, but I am have an issue when trying to insert data into a SQL DB. I am collecting data from a user and then inserting the data. I think I am connecting to the DB correctly but I can seem to add the records. Thanks for the help <% firstName=Request.Form("Fname")...
  6. Dashsa

    change div contents based on select box

    Hey Feherke, I wimped out and just used frames. I agree that it would have been to much work tying to initialize every time- I had started to work on that aspect in the beginning and then skipped over it. Frames suited my needs well for this project.
  7. Dashsa

    change div contents based on select box

    Hello Feherke, Thanks for taking a look. The visitor will not be able to link directly to the page - they have to login first and then navigate to the page. As for the amount of information - The target div will contain about 10 - 20 thumnails that the user will be able to click on and that will...
  8. Dashsa

    change div contents based on select box

    Hello, I am making a photo gallery and I have a bunch of photos that are organized by month. I would like a user to choose a date from a drop-down menu on the left side of a page and then the div in the middle of the page will display the images for that month. I have done this in the past with...
  9. Dashsa

    change Div contents depending on select box

    Hello, I am making a photo gallery and I have a bunch of photos that are organized by month. I would like a user to choose a date from a drop-down menu on the left side of a page and then the div in the middle of the page will display the images for that month. I have done this in the past with...
  10. Dashsa

    create variable from user selection

    thanks, Actually I am not using vb ASP but rather JSCRIPT , anyway I got it to work by : function reDirect(){ var cc= document.formName.jobsite.options[document.formName.jobsite.selectedIndex].value; //alert the value needed for testing purpose alert(cc) } Full code below. <!DOCTYPE...
  11. Dashsa

    create variable from user selection

    ...</center> </div> <!-- End Nav bar --> <div class="addJobLog"> <center> <form onSubmit="reDirect(this)" action="" method="post" name=""> //************************************ THIS IS WHERE I NEED HELP!!!!***************************************** <select name="jobsite"> <option...
  12. Dashsa

    CSS remove link decoration

    Thanks for looking but nevermind I got it, I added this: #renovate_Wiebe{ background-color:#669999; width:963px; text-decoration:none; color:#FFF; } #renovate_Wiebe a{ background-color:#669999; width:963px; text-decoration:none; color:#FFF; } #renovate_Menu { font-family:Arial, Helvetica...
  13. Dashsa

    CSS remove link decoration

    Hello I have a div inside a div that I want to remove the blue color and underline from a link. the HTML is: <div id="renovate_Wiebe"> <div id="renovate_Menu"> <b>RENOVATIONS</b><br> <br> Port Royal Residence<br> <br> <a href="remodel_Wiebe.html">Harbourtown Townhouse</a><br> <br> <a...
  14. Dashsa

    Spry Menu border issues

    ...//--> </script> </body> </html> Here is the Spry generated CSS - You can see what I have changed around line 107 ish @charset "UTF-8"; /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */...
  15. Dashsa

    Provider error '80004005' Unspecified error

    ...= Server.CreateObject("ADODB.Connection"); var record = Server.CreateObject("ADODB.RecordSet"); connect.Open("DSN=hhhba"); record.Open("select * from GenralInformation where EmailAddress ='"+ umail+"' And userPass ='"+ userPass+"'", connect, adOpenKeyset,adLockOptimistic); if(record.EOF)...
  16. Dashsa

    Force Office documents to open in office, not the browser.

    Actually for me it opens in word.... I found this that explains why mine works - http://support.microsoft.com/kb/162059 I will keep looking.
  17. Dashsa

    Force Office documents to open in office, not the browser.

    If I need a user to open a file I just create a link - <html> <head> </head> <body> <a href="Array.docx">array</a> </body> </html> Do you need to use javascript?
  18. Dashsa

    Select * from Variable

    Yeah its working now. I did not change anything- weird... Thanks for looking
  19. Dashsa

    Select * from Variable

    ...= Server.CreateObject("ADODB.Connection"); var record = Server.CreateObject("ADODB.RecordSet"); connect.Open("DSN=hhhba"); record.Open("select * from " +table+" where EmailAddress ='"+umail+"'", connect, adOpenKeyset,adLockOptimistic); %> </head> <body> <center> </center> </body> </html>...
  20. Dashsa

    loop through access DB to find record

    Hello Kirby, I guess thats the beauty of these forms - They help people like me sort out my logic! I really thought I had to loop through the DB but just looking for the location of the name makes more sense and works well!

Part and Inventory Search

Back
Top