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 SkipVought 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: mww22
  • Order by date
  1. mww22

    1/1/1900 problem

    if date = "" then date = '' end if
  2. mww22

    More SQL assistance needed...

    Here try this statement below copy and paste it and it will work.... But only if accunumber is not a string made by concatenating pyy, pmm and pui.... "Select accnumber from tbl Where accnumber like '%" pyy & pmm & "%'" & "and initials =...
  3. mww22

    advanced search using ASP and Javascript

    you need a conditional module to check for the existence of certain search criteria and then build the SQL statement to run it based on that... example ==>any word or any phrase: WHERE strSearchCriteria LIKE '%strAny_Word_or_Phrase%' ==>exact word or phrase: WHERE strSearchCriteria =...
  4. mww22

    adding images to an Access Database

    If you really want to store it in Access you use the OLE Object data type
  5. mww22

    Please help me with this error

    post your Dsn-less connection string
  6. mww22

    Keeping Values When Refresh Occurs

    You mean how do you set the variable 'Desc' equal to the DB field 'Description'? Dim Desc Desc = objRS("Description")
  7. mww22

    Apostrophe and SQL problem

    You can also try this: your_variable = Trim(Replace(your_variable,chr(39),"’")) I'm assuming you are displaying the data in a browser once you've pulled it out from the database. By the way if it doesn't show up right in this message board the value that you replace the apostrophy...
  8. mww22

    CDONTS email not sending but no error getting logged?

    Are you sure that your SMPT virtual server is running in IIS?
  9. mww22

    How would I do this?

    add a submit button to the form that when clicked submits the form to itself. use the info typed by the user to run a SELECT statement against the database that will grab the matching info if any from the database and then run a loop to populate the drop down with the data you retrieve. example...
  10. mww22

    Post then redirect to another site with another Post

    Why don't you try and run a select statement against the database and grab the info you just added to it, in the page the user is redirected to. OR You can store the values the customer entered that were sent to the database in variables and then use those variables to build a querystring you...
  11. mww22

    Populating a drop down box

    Here is a suggestion. <SELECT name=&quot;location&quot;> <OPTION>-Select a Location-</OPTION> <% Do While Not RSEmps.EOF Response.Write &quot;<OPTION value=&quot; & RSEmps(&quot;intLocationID&quot;) & &quot;>&quot; Response.Write RSEmps(&quot;location&quot;) Response.Write...
  12. mww22

    Whats causing this error?

    I'm not sure but I didn't see anywhere in your code where you actually opened the recordset rs1.
  13. mww22

    populating a table with two cells/row using 1 db field

    Correction to the error I made :) I would like to know how to populate a table with the contents of a 2 field table in SQL. The way that I thought would work isn't.... Anyway here is the code I wrote to do it.... <% Do While Not objRS.EOF Response.Write &quot;<TR>&quot; & VBCRLF & &quot;<TD...
  14. mww22

    populating a table with two cells/row using 1 db field

    I would like to know how to populate a table with the contents of a 2 field table in SQL. The way that I thought would work isn't.... Anyway here is the code I wrote to do it.... <% Do While Not objRS.EOF Response.Write &quot;<TR>&quot; & VBCRLF & &quot;<TD width=% align=center valign=middle...

Part and Inventory Search

Back
Top