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 Chriss Miller 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: peter11
  • Order by date
  1. peter11

    cfmail read treated as spam???

    Here is the code I am using so my cfmail will not be blocked or put in the spam folders but Hotmail and a few others still do not like it. Any suggestions are appreciated. <CFMAIL TO = "#form.Email#" FROM = '"teacherconf@my.com" <teacherconf@my.com>' SUBJECT="Parent Teacher...
  2. peter11

    cfmail and spam filters

    Check out this link: http://kay.smoljak.com/archives/?Stop-cfmail-messages-being-flagged-as-spam
  3. peter11

    cfmail and spam filters

    Ironically I am looking to solve a similar problem. Not sure if it will help but here are some suggestion I have found. <CFMAIL TO = "#form.Email#" FROM = "account@yourserver.com" SUBJECT="" username="" password="" server="mail.datalabsolutions.com"...
  4. peter11

    Cfmail works only local

    Do you where i can find documentation on how to set up the server to do this?
  5. peter11

    Cfmail works only local

    i am using the following code but it will only send to local email accounts, ie. acounts at myserver.com. Accounts like hotmail and aol do not recieve any mail. We have a proxy server could that be the problem? <CFMAIL TO = "#form.Email#" FROM = "jbernhardt@myserver.com"...
  6. peter11

    Caching Problem

    here is the code <cfset uname= #Form.UserName#> <cfset pass= #Form.Password#> <!--- Get user's details from the database ---> <cfquery name="GetUser" datasource="login"> SELECT firstname, realname, title, password, username, passid, school, lastip, totallogins, lastbrowser, lastlogin...
  7. peter11

    Caching Problem

    I am using a CFM login page. The user enters a username and password and gains access to the site. The problem is that the server (the XP or the Coldfusion Server) caches the users name and password. When the next person logs on (from s different computer) they get the information from the...
  8. peter11

    How do you all symbols in all frames 100 pxls to the right?

    I have a flash movie that was designed starting at -100. How can I move all graphics and symbols (in all the frames) 100 pixels to the right? I can not do it frame by frame because there are 7000 frames.
  9. peter11

    Gravity

    I have to run to a meeting but I would love to pick up with this discussion on Monday. The v- gt actually helps I just need to figure what to make t. It has to be a constant value, right!? Since we are not really working in meters or seconds,I guess i can just make up that value. Thanks, I...
  10. peter11

    Gravity

    Bare with me, it has been a while since I studied physics. The top value of the ball is increasing by velocity every loop and velocity is decreasing by .5 every loop, at some point velocity (for upward motion will equal 0 which means the ball should begin to fall). Is this concept correct...
  11. peter11

    Gravity

    I meant until velocity = 0
  12. peter11

    Gravity

    Not sure what you mean F=m*a, there is no mass. I tried to decrease velocity by .5 until gravity = 0 Once it equals 0 the ball should begin to fall. At that point i am increasing velocity by .5.
  13. peter11

    Gravity

    Actually I am using .5. I am just trying to keep it close to a physics formula.
  14. peter11

    Gravity

    I am trying to create gravity for a flight of a ball. The code i am using causes the ball to travel in a more triangular pattern as opposed to a arc. I am trying my best to follow the laws of gravity (for a crossover lesson with physics). g is a constant value -- 9.8 conv =...
  15. peter11

    rotating a line

    I am trying to create a simple game that uses a line as a cannon barell. I want to use a horizontal slider to set the angle of the cannon. Here is the starting position of the line. Static xx As Integer Static yy As Integer xx = 0 yy = 200 line.x1 = 0 line.y1= 200 line.x2 = 50 line.y2= 200...
  16. peter11

    update code

    My goal is to copy image names from one table to another table where the first and last names are matching. I must have some silly mistake but i am suffering from tunnel vision at this point, +++++++++++++++++++++++++++++++++++= Here is the code <cfquery datasource="publication"...
  17. peter11

    Embeding Coldfusion code on a noncolfusion server

    http request is an XML thing, right? I have come upon this suggestion for other problems in the past but I have not figures out how to use it. If you know of any tutorials for non XML people let me know. Thanks
  18. peter11

    Embeding Coldfusion code on a noncolfusion server

    I did not want to use frames because I did not want to alter the web page and there is no visible content. I just want to place a query in the head of the document. Are you sure you can only include local files? It has been a whire but I thought SHTML allowed you to include non local files if...
  19. peter11

    Embeding Coldfusion code on a noncolfusion server

    I want to run querys from a clients home page to my server. My client does not have coldfusion server. I thought of using includes SHTML(<!--#include virtual="http://www.whateverurl.com/thefile.cfm" -->) or php includes(<? include ("http://www.whateverurl.com/thefile.cfm") ?>) or ASP includes...
  20. peter11

    Embeding Coldfusion code on a noncolfusion server

    I have a client that has a static web site (HTML). He is currently using a service of mine where he can make a temp home page. When he activates it I would like to activate a <META http-equiv="refresh" content="0; URL="> Tag that points to my site. The query is below is what i use with...

Part and Inventory Search

Back
Top