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. diarratech

    Dreamwevar Keyword "AND" and connection error

    Here is my problem! This is a query for a search in a database (databasephone book type ): SELECT * FROM CONTACT WHERE name LIKE %varName% AND firstname LIKE %varFname% AND company LIKE %varComp% ORDER BY name, firstname Here is part of the dreamweaver code to take the information from the...
  2. diarratech

    center a popup

    It is working great! Thank you very much!!
  3. diarratech

    center a popup

    OK! I will try this tonite. Thanks
  4. diarratech

    center a popup

    I have trouble centering my popup on a page. Can anyone help me. I know i need to use the following variable to center the popup var winl = (screen.width-w)/2; var wint = (screen.height-h)/2; but it doesn't work Here is my function popup.js var newWin = null; function closeWin(){ if (newWin !=...
  5. diarratech

    associating css to asp pages

    thank you for your help! I will try this today
  6. diarratech

    associating css to asp pages

    I have a problem with associating my css style sheet to any asp pages. First of all, here is how everything is organized: I have a top page called “top.asp”. This is where I put the title of my site. I have also a left page called “left.asp”. This is where I put my menu. Lastly, I have an index...
  7. diarratech

    Access Database Msydb problem

    Hi, I have an error message when I try to open my database. The error message is that the jet engine could not find the msysdb object. What can I do? Thank you
  8. diarratech

    Request.Form

    Thank you for your help!I figured it out
  9. diarratech

    Request.Form

    I have a variable that I assign to a textbox. Eg : <input type="text" name="<%=sInputName%><%=cstr(i)%>"> Now, I want to take all the information of the textbox and send it by mail but I have trouble with the syntax of that request.form: E.g strInfo = strInfo + "<tr...
  10. diarratech

    Connectio to a password protected Access database

    Thank you very much! The connection string works great now! But I don't know why it was not working with the Server Explorer
  11. diarratech

    Connectio to a password protected Access database

    The Server Explorer in Visual Basic.Net does let me connect to a password protected Access database using Jet 4.0 OLE DB provider. I have a connection test failure. It works fine without any password. The same problem occurs using a connection string in code!! What seems to be the problem? Thank...
  12. diarratech

    Beginner Question

    I have 3 tables in Access. The first one is called partners with columns such as partners name and an id. Eg: Name: Smith, IDpartner: Smith01 The second is the rights table: codeRight:1, Right:Download The third table has three columns : Idpartner: Smith01, codeRight:1, autonumber=1 On an asp...
  13. diarratech

    beginner question

    Here is the pb! I have an Access table with diffent records The fields are numfile and statut of action and action number For instance on one line I would have numfile Statut numaction 1 started 1 1 over 2 1 not started 3 2...
  14. diarratech

    How to connect to a web database (Access)

    I'm using VB5 and I'd like to know how to connect to an Access database on the web and be able to delete info from any tables. Thanks
  15. diarratech

    Accessing an Access DB on a server?

    Could anybody tell me me how to go about the following pb : I am trying to access a temporary Access DB on a web server (internet), get all the tables data, send the info to a DB (which has same structure as the temporary) in local server(not in the internet) and empty the temporary. Thank you...
  16. diarratech

    deletion pb!

    &quot;list&quot; is a check box on a form. This script is supposed to check if a user selected a check box or not before deletion. It works great except when there is only one check box left. Javascript sees the value of the check box as &quot;undefined.&quot; (I used that script to delete rows...
  17. diarratech

    javascript deletion warning message pb

    Thanks for your help but it does not work. The following script: {alert(&quot;Number of checkboxes = &quot; + &quot; &quot; + maxi);} is just like a message box that I displayed for myself to see the value of &quot;maxi&quot; which is undefined when there is only one box left. When I do if...
  18. diarratech

    javascript deletion warning message pb

    &quot;list&quot; is a check box on a form. This script is supposed to check if a user selected a check box or not before deletion. It works great except when there is only one check box left. Javascript sees the value of the check box as &quot;undefined.&quot; (I used that script to delete rows...
  19. diarratech

    count the number of download

    Thanks everybody. You helped a lot. I found a good code at http://www.codeave.com/ It works great but there is a stange pb. When you replace your url by a PDF file from your directory, you'll get more records than the click. For instance, if I click once, instead of having one record in the...
  20. diarratech

    count the number of download

    I'd like to count and send the result of the total download to an Access DB each time someone download something on a page. THANKS

Part and Inventory Search

Back
Top