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 wOOdy-Soft 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: andy570
  • Content: Threads
  • Order by date
  1. andy570

    Place an "X" in a box

    Is there a way to use a checkbox selection to place an "X" inside the appropriate box?
  2. andy570

    Connecting to the Exchange Server from online shopping cart?

    hello all, new to this forum. I have a problem hopefully someone can shed some light on. We have a client for whom we created an online shopping cart. Once the person places the order and checks out a confirmation email is sent. This worked fine until the client installed an exchange server...
  3. andy570

    Sending Email from online shopping cart

    hello all, new to this forum. I have a problem hopefully someone can shed some light on. We have a client for whom we created an online shopping cart. Once the person places the order and checks out a confirmation email is sent. This worked fine until the client installed an exchange server...
  4. andy570

    cfmail and exchange server

    Hello all, I have inherited a problem. We have a shopping cart which emails the contents of the cart to the sales address. However, our clients installed an exchange server to handle all the email and now they are not receiving any of the order confirmations. Below is the original code...
  5. andy570

    Possible to Pass Form Data to SQL Statement?

    Just a quick question. Is it possible to pass form data to a sql statement. For example: on one page a drop down list with a list of the different databases and another area for the table. Can these be passed to the SQL statement with something like: <cfquery name="getinfo"...
  6. andy570

    String index out of range: -17

    Any ideas on how to fix this? This is the line it is referring to: DESTINATION="D:\WWWRoot\safescriptinc.com\www\Employees\HSF" Thanks
  7. andy570

    Cffile Upload then create hyperlink to doc

    Hello everyone....I have a quick question. In my database I need to make a place to upload files in pdf format. Once they are uploaded then they need to be able to be searched and viewed. I don't want to the database to become too big so I was thinking of using a hyperlink field. Is it...
  8. andy570

    Best Way to Store Documents?

    hello I am a relatively new Access user. I am building a program to upload documents to a database. My question is this is the best way to achieve this by setting a field in a table to be OLE and upload to it....or to upload to a location and have hyperlink to that document? Thanks
  9. andy570

    Login Question

    Hi, I am almost finished with the application however I have one more question. I am trying to tweek the login page but it keeps redirecting me back to the same login page. Any suggestions? forceuserlogin.cfm code <!---Force the user to login---> <!---Thise code only executes if the user has...
  10. andy570

    Default Value Time Format

    Hi, here is what I am wanting to do: When someone enters a new report I want an entry in the date field. Currently I am using Now() in the default field for DATE. I have tried the following Format(Now(), "dddd, mmmm dd, yyyy h:nn:ss AM") however I get a type mismatch error when I enter this...
  11. andy570

    Good Search Tutorial?

    Hi, does anyone know where I can find a good tutorial for building a search with next and previous buttons? Thanks.
  12. andy570

    Format Now()

    Hello quick question. I have Now() displayed as 2004-07-06 01:36:15.0 I would like it displayed as Monday, June 07, 2004, 1:36:15 PM. What is the correct expression? Thanks!
  13. andy570

    Time/Date Question

    Hi all....is it possible to enter 2 expressions in a default value. For example in a memo field could I enter say =Now() followed by text? So that each time text was added the time that it was added would be displayed? or am i better off creating another field for Date/time?
  14. andy570

    Setting a Value in a Database

    I was wondering if there is a way to do the following: I have a table in MS Access called Reporting and another table named Admin. The ID field in Reporting is related to ID in Admin. In the Admin table I have 2 fields ID and Comments. I have a default comment basically stating that "we will...
  15. andy570

    Login Question

    I have a login page with the following query: <cfquery name="GetUser" datasource="#DataSource#"> SELECT UserID, Username, Password, Company, FName, LName, AuthLevel FROM Users WHERE UserName='#FORM.UserLogin#' AND Password='#FORM.UserPassword#' </cfquery> When I attempt to login I receive the...
  16. andy570

    GetUser.AuthLevel Question

    I have uploaded my database and have entered AccountExec in the AuthLevel Field. When I attempt to login I get the following error: Element AUTHLEVEL is undefined in GETUSER. The error occurred in line 33 31 : Name="#GetUser.LoginID#, #GetUser.FName#,#GetUser.LName#, #GetUser.Company#" 32 ...
  17. andy570

    Another Quotation Question

    This one has me confused. I have tried using both a SQL statement and a cfinsert statement. Here is the problem...when I type the message in the text area I can use quotation marks and they work fine....however, when I copy from another source (Word, or IE) and paste into the textarea I receive...
  18. andy570

    Referencing Autonumber Primary Key in UPDATE

    DB newbie here - I have MS Access table with the following fields PressID, PRTitle, Month, Day, and Year. Once the information is posted I want to be able to update/edit if necessary. The following is the code I have used to list the current data: With the html removed <cfquery...
  19. andy570

    Entering Quotation Marks in a CFUPDATE field?

    I am attempting to update a table in MSAccess. When I retreive the info from the database and when it is displayed the quotation marks show up as a box. How do I enter quotes surrounded by quotation marks using a cfupdate page? Thanks!

Part and Inventory Search

Back
Top