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

    "... path is not valid error message"

    Does anyone know why am I getting an error message: "C:\... is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides." Another person built forms and backend database doing it in his own computer having his...
  2. Coding

    SQL SERVER REGISTRATION FAILED

    The window promted me to enter login and password and I did so. But I got the same error message as for the Windows NT authentication. Is it something about the version of SQL Server? The version is SQL Server 7.0 and I am using Windows XP Professional. Coding
  3. Coding

    SQL SERVER REGISTRATION FAILED

    Can you help me solve this problem. When I try to register SQL Server it wouldn't work. When I right-click Microsoft SQL Server node I get window "Registered SQL Server Properties". On General tab I pick "local" server and "Use Windows NT authentication" or "Use SQL Server authentication" and I...
  4. Coding

    HOW TO MAKE SEARCH ENGINE LIST YOUR WEB SITE ADDRESS

    What should I do with my web site to be listed by a search engine like Google, Altavista or Hotbot. I wrote this line <meta name=&quot;keywords&quot; content=&quot;...&quot;> inside the HTML <head> tag where I added inside the content quotation marks the keywords related to my site and my web...
  5. Coding

    HOW TO MAKE SEARCH ENGINE LIST YOUR WEB SITE ADDRESS

    What should I do with my web site to be listed by a search engine like Google, Altavista or Hotbot. I wrote this line <meta name=&quot;keywords&quot; content=&quot;...&quot;> inside the HTML <head> tag where I added inside the content quotation marks the keywords related to my site and my web...
  6. Coding

    ADDING RECORD TO SQL SERVER TABLE DOESN'T WORK

    I forgot to mention that I get the same error message on the same line in the save.asp file with a code for Access database.Does that mean that both databases settings are OK and something is wrong with IIS settings or else? Thank you for your help.
  7. Coding

    ADDING RECORD TO SQL SERVER TABLE DOESN'T WORK

    'This is comprecord.inc file of DSN connection for SQL 'Server: <!-- #Include file=&quot;adovbs.inc&quot; --> <% Dim objConnect set objConnect = Server.CreateObject(&quot;ADODB.Connection&quot;) objConnect.Open &quot;DSN=companies&quot;, &quot;sa&quot;, &quot;&quot; %> 'This is...
  8. Coding

    ADDING RECORD TO SQL SERVER TABLE DOESN'T WORK

    Does anyone know how to fix this bug which error message is showed below: HTTP 500.100 - Internal Server Error - ASP error Internet Information Services ----------------------------------------------------------- Error Type: ADODB.Recordset (0x800A0BB9) Arguments are of the wrong type, are...
  9. Coding

    HOW TO CODE BOTH UPDATE AND DELETE BUTTON ON ONE WEB PAGE

    Hi, does anyone know how to get together DELETE and UPDATE buttons on one page. Actually, I can code them separately on two pages. So I must have a link for one of them to go to another page and to use the another button. The form is being submitted by one button only to one unique page while...
  10. Coding

    HOW TO RETRIEVE DATA FROM dB BY SELECTING OPTIONS FROM SELECT BOX

    I am trying to get new line by ASP underscore(<%_%>). It is OK. I tested it so it works. function selectItem() { document.the_form.the_area.value += &quot; &quot; + <%_%> the_form.the_selectbox.options[the_form.the_selectbox.selectedIndex].value; }
  11. Coding

    HOW TO RETRIEVE DATA FROM dB BY SELECTING OPTIONS FROM SELECT BOX

    Does anyone know how to retrieve information from database by selecting options from select box? This code works if I put value=&quot;John&quot; which is of a string type. But when I put value=&quot;<%=rsUserInfo(&quot;usr_firstName&quot;)%>&quot; it gives me type mismatch error. It seems that...
  12. Coding

    HOW TO RETRIEVE DATA FIELDS INTO TEXT BOX VIA SELECT BOX

    Does anyone know how to retrieve information from database by selecting options from select box. This code works if I put value=&quot;John&quot; instead of<%=rsUserInfo(&quot;usr_firstName&quot;)%> as option value. I actually need to fit this code to the application which will email the content...
  13. Coding

    HOW TO ASSIGN OPTION FROM SELECT BOX TO THE TEXTAREA

    Can anyone help me how to assign option from SELECT box by onChange event when I click on any item in the select box and want it to appear on the TEXTAREA at the and of the existing text. For example: when I type: Dear Mr. and click on the SELECT box to pick some option like in this case...
  14. Coding

    Validations of Fields in a Loop

    Thanks very much
  15. Coding

    Validations of Fields in a Loop

    Can anyone tell me if there is any chance to validate fields that are in a for-next loop. I tried to validate them by this line of code: function validateUser() { if (document.rfqForm.description.value==&quot;&quot;) ... document.rfqForm.submit(form); } ... <input...
  16. Coding

    How to write combo box data to the database by update procedure

    Does anyone know how to write combo data into the database when updating the recordset? For example: After adding new record the combo data are being written to the table. But, when I try to update an existing record, every field updates normally except combobox. When I tested it, I found out...
  17. Coding

    Building class for printing of reports

    Does anyone know how to write the code for the VB class module that will print reports. Data will be retrieved from recordset, and other arguments will be as first and last record on the printouts not inside the recordset itself. For example...
  18. Coding

    Sending form from the only one asp page

    Does anyone know how to write the ASP code inside the asp page that contains all form elements in order to send the form content. Actually, I made it in two asp pages by action=&quot;desiredform.asp&quot; and submit button. But I want to do the same writing code in just one asp page. On button...
  19. Coding

    Browse option

    Does anyone know how I can make the browse button browsing for files. Desired to be in VB. It seems that I should have a browse object. I couldn't find it in the MSDN library.
  20. Coding

    Browse object

    Does anyone know how I can make the browse button browsing for files. Desired to be in VB. It seems that I should have a browse object. I couldn't find it in the MSDN library.

Part and Inventory Search

Back
Top