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 strongm 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. peterb1985

    cfexchangemail

    Hi there I'm trying to use coldfusion 8 to access an exchange server 2003 and copy emails to a mysql 4 database. I then want to delete the copied emails from the exchange mailbox as to save space. I am able to copy the emails using the get action but when I issue a delete action on the UID is...
  2. peterb1985

    Coldfusion MX6 and Complex Soap Problem

    Yes, I still get a zero returned, which according to the webservice is a good result. The webservice is supposed to reply with a result which is 1 for an error and 0 for good follwed by the stock level, description, etc... The problem I have is that the return result doesn't appear to be xml...
  3. peterb1985

    Coldfusion MX6 and Complex Soap Problem

    I am trying to access a webservice to retrieve stock levels of products. I have used cfinvoke to send the required parameters and receive no errors but all that is returned is a zero. When searching the web I found reference to a problem between Coldfusion MX6 and SOAP whereby the message body...
  4. peterb1985

    Ajax scrolling message banner

    yes it does
  5. peterb1985

    Ajax scrolling message banner

    Hi, I have a page which uses ajax to get info from a database and display it on screen with refreshing. This worked fine. I am now trying to put this text into a scrolling message which move across the screen but it doesn't work. If anyone could tell me where I'm going wrong I would be very...
  6. peterb1985

    Sharing mailboxes

    I have exchange server 2003 and whenever someone is away another user checks their emails. At the moment i setup mail forwarding to the other user. Is there a way for the user to share their mailbox so that the other user can view the mailbox within outlook without having the emails forward...
  7. peterb1985

    cached exchange mode outlook 2003

    We had to recover a exchange database from backup which we did by creating a new exchange database and using veritas to load the emails back into the database. Now when users connect to outlook 2003 they are given the option to connect or work offline. How do i get this message to go away...
  8. peterb1985

    insert images into mysql db

    Thanks for the link. You don't happen to have the actual query i need to use to insert them do you? I seen that in a lot of forums that you should only store the pointer and not the image. I needed to use the image because i'm using crystal reports 9 which cannot read file pointers and...
  9. peterb1985

    insert images into mysql db

    Does anyone know how i write an insert query to add jpg images to my database table.
  10. peterb1985

    Checkboxes

    Thanks this works. Your right about the id's i've now changed them to read cat10,cat20,cat30,..... for each of the main categories.
  11. peterb1985

    Checkboxes

    function handler(obj,catno) { var cchkbox=document.getElementsByName(catno); for (var i=0; i<cchkbox.length;i++) { cchkbox[i].checked=obj.checked; } } <input type="checkbox" name="cat" id="cat" onclick="handler(this,'sub10')" value="10"> <input type="checkbox" id="sub10" name="sub10"...
  12. peterb1985

    Checkboxes

    I have five checkboxes and each check box represents a category for example: software,hardware,stationery....etc Each of these categories has a set of sub categories which all have a checkbox for example the hardware category has the following options: desktops,notebooks,servers,handhelds...
  13. peterb1985

    Setting priority on queued emails

    Hi All, I have a mail that is used for company emails and a webserver that sends emails by relaying emails through the mail server. Is there a way of setting a higher priority on emails that are sent by users over messages sent by the webserver. Thanks
  14. peterb1985

    Checkboxes tick all

    Hi tsuji I can't get your script to work, code below: <html> <head> <title></title> <script language="javascript"> function handler(obj) { var cchkbox=document.getElementById("subcheck"); for (var i=0; i<cchkbox.length;i++) { cchkbox[i].checked=obj.checked; } } </script>...
  15. peterb1985

    Checkboxes tick all

    Is there a way to tick all checkboxes if the checkboxes all have the same name/id. For example I have a checkbox called tickAll and 10 other checkboxes containing values 10 to 100 all called subcheck. Does anyone know of a function that will tick all of the subcheck checkboxes when the...
  16. peterb1985

    table keeps corrupting

    I have a MyISAM table that receives a stock update every hour from a text file. Every hour i delete the data from the table and load up the new text file. Every few days the table becomes corrupt with the following message: warning Table is marked as crashed and last repair failed warning...
  17. peterb1985

    cfquery select * doesn't work

    Java internal error
  18. peterb1985

    cfquery select * doesn't work

    I've just setup mysql 5 for testing on my coldfusion mx 7 server. When i type a query with * (select all) in it i get an error, but if i type the field names into the query it works. Has anybody ever come across this or is it a problem with mysql 5 cos its still in beta. p.s. i tried the...
  19. peterb1985

    DateFormat

    I have a csv file that i'm trying to load into a mysql database, using a coldfusion page. In the csv file the date is in the format dd/mm/yyyy but when i use #dateformat(string,"yyyy-mm-dd")# to store it in my database, if the date is at the begging of the month then it swaps the day and the...
  20. peterb1985

    Formatting text strings

    I'm trying to format my string into uppercase and remove any alpha characters from the end of the string. For example i have a product code c8728ae which i wan't to format as C8728. I've been experimenting with the following code but it has an error somewhere. Please can someone help me. Any...

Part and Inventory Search

Back
Top