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 bkrike 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. humbletechie

    Keep format when copying data into memo field?

    Hi, Is there a way to have a memo field keep the same format that the data is copied as? I am copying data from .doc or .html files and would like it to save in the field without loosing the format. Is this possible? Thanks!
  2. humbletechie

    Displaying Image Error

    Hi, I am trying to display an image based off the value that is stored in a database field. I put the following code in the Forms On Current event and I have the forms data source set to the proper table. Dim Path Path = CStr(Me![ImagePath]) Me!Image7.Picture = Path ImagePath is a text box...
  3. humbletechie

    ASP with Access DB Search

    Hi, I am attempting to use the LIKE search function but it only works in certain cases. For example: If I search for Garcia it displays all results with the last name of Garcia, but if I type Judge Garcia it displays nothing. The first name in the DB is not judge but is there a way to...
  4. humbletechie

    Formatting currency Problem with Access

    Hi, The fields format is set to Currency in the Access DB but it's displaying on the page as a string. I have tried using the formatcurrency and formatnumber functions and both are giving me a Type mismatch error. Below is the code for all three ways I have tried...
  5. humbletechie

    OUTER JOIN help

    Hi, Can someone tell me why the following SQL statement is giving this error? Error: Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'Atty_2_CaseNew.Atty_ID = Tbl_Unique_Attorneys.Atty ID'...
  6. humbletechie

    Need URGENT help with all items not showing in email

    The code that sends the email, only list the first item in the cart, the cart items are pulled from an access database. The items are all in the database but only the first item shows in the email that is sent. Below is the code, can someome please help? Thanks.. <% option explicit %> <%...
  7. humbletechie

    Prompt For Table Name in Update Query??

    Hi, Is it possible to have an update query prompt for the table name that is being updated. I need to run an update query that will need to update different tables depending on what the user chooses. The tables all have the same field names. Thanks in advance!
  8. humbletechie

    Send Page By E-mail

    I would like to be able to send an HTML or ASP page by email. I would like it to work like IE's send page by email. I need it to open up the default email on the PC and insert the page into the body. I also need it to insert the to, from and subject from what I have specified in the URL's...
  9. humbletechie

    Drop down list hyperlink

    Hi, I have a form drop down list with 8 options. I would like to make it so if one of the options is selected, it routes to another form. If any of the other 7 are selected it stays on the same page. I would like the 1 option to re-oute to another form without having to submit the original...
  10. humbletechie

    Help with syntax error

    Hi, I have a page that reads from a database and populates a form with the results. This form then posts to another page which updates the info. I am receiving a syntax error on the update page. The key is an order # which sometimes gives multiple item results per order #. I would like to...
  11. humbletechie

    Update new SQL table with query results

    Hi I am running a select statement off one database to accumulate the needed records that I would like appended to an SQL database. I have the results of my select statement output to a page and the fields I want appended I have in hidden form fields. I then have the form post to an update...
  12. humbletechie

    Comparing Data From 2 different databases

    Hi I am trying create a page that shows all orders that hit the first database but never made it into the second database. The problem I am having is both databases are on different servers. The order hits the first database and then processes run that puts it into the second database. I...
  13. humbletechie

    Results from past dates

    Hello Is there a formula I can use that will give me results from past dates? I need qty shipped on items for last week, 2 weeks ago, 3 weeks ago, 4 weeks ago, 5 weeks ago and 6 weeks ago. I need all of these to be in a seperate field like below. Item # last week qty 2 weeks ago qty 3...
  14. humbletechie

    Cannot add allow null with a bit data type

    Help! I created a table with a bunch of bit data types and they all are set to allow null. I am now trying to add another bit field and it gives me the following error 'TableName' table - Unable to modify table. ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot insert the...

Part and Inventory Search

Back
Top