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: *

  • Users: paulw1982
  • Order by date
  1. paulw1982

    Changing servers

    I have a slow 2k server with exchange 5.5 running, and fast 2k server with nothing else running. What is the fastest and easiest way to move everything to the faster server? Thanks in advance
  2. paulw1982

    calendar in outlook 2000

    I have changed the delivery to deliver to the mailbox rather than the pst file, and that has worked for the emails, but the PST calendar is still being used as the default.
  3. paulw1982

    reply addresses

    i hope this is understandable... My exchange 5.5 server sends emails out with a company1.com as the reply address. i recently bought the domain called company2.com and have run a script to add new smtp entries for with the company2.com addresses so they can now receive mail being sent to both...
  4. paulw1982

    calendar in outlook 2000

    I have a user that has a PST file set up on his local machine. He has a calendar within that PST file that he uses instead of his server-based calendar. If somebody sends him a meeting request and he accepts it, the calendar entry goes into his PST. How do I change the default calendar to...
  5. paulw1982

    connect AS400 to Exchange 5.5 HOW??

    Have a look at software called Winspool. It can send emails.
  6. paulw1982

    reply addresses

    5.5
  7. paulw1982

    reply addresses

    i hope this is understandable... My exchange server sends emails out with a company1.com as the reply address. i recently bought the domain called company2.com and have run a script to add new smtp entries for with the company2.com addresses so they can now receive mail being sent to both...
  8. paulw1982

    if statement- please help

    _root.onLoad=function(){ box1=new Array("1/H/20","1/H/21","1/H/22"); box2=new Array("1/H/17","1/H/18","1/H/19"); box3=new Array("1/E/34","1/E/35"); box4=new...
  9. paulw1982

    if statement- please help

    on(release){ for(j=0;j<50;j++){ for(i=0;i<15;i++){ if(_root.boxno.text==box+j[i]){ trace(&quot;FOUND&quot;) } } } }
  10. paulw1982

    if statement- please help

    sorry, ignore that one too. you are right, it should have the 'i' in there too. i dont know why it keeps being removed when i post the message.
  11. paulw1982

    if statement- please help

    Yep, Sorry!! Here it is again. boxno is an input box. this loop is supposed to search all the arrays for a match. on(release){ for(j=0;j<50;j++){ for(i=0;i<15;i++){ trace(&quot;box&quot;+j+&quot;[&quot;+i+&quot;]&quot;) if(_root.boxno.text==box+j[i]){ trace(&quot;FOUND&quot;)...
  12. paulw1982

    if statement- please help

    This is the script i have added to a button: on(release){ for(j=0;j<50;j++){ for(i=0;i<15;i++){ if(_root.boxno.text==box+j[i]){ trace(&quot;FOUND&quot;) } } } } i have loads of arrays set up named box1, box2, box3 etc etc please can somebody tell me the correct syntax for this...
  13. paulw1982

    web site authentication

    I have a website within IIS on a 2000 server machine. Is it possible for me use any type of code within a particular page to find out what the person accessing the site is logged on to the local domain as?
  14. paulw1982

    Pleeease help!!!

    Hello, I am having a nightmare of a time getting a caertain sql query to work this is the statement... SELECT USERINFO.USERNAME, OPPORTUNITY.DESCRIPTION, OPPORTUNITY.SALESPOTENTIAL, OPPORTUNITY.CLOSEPROBABILITY, OPPORTUNITY.ESTIMATEDCLOSE, PY3_OPPORTUNITY.EST_ORDER...
  15. paulw1982

    sql query problem

    I've worked it out Just incase anyone is interested how its like this... SELECT USERINFO.USERNAME, OPPORTUNITY.DESCRIPTION, OPPORTUNITY.SALESPOTENTIAL, OPPORTUNITY.CLOSEPROBABILITY, OPPORTUNITY.ESTIMATEDCLOSE, PY3_OPPORTUNITY.EST_ORDER, PY3_OPPORTUNITY.MARGIN, ACCOUNT.ACCOUNT...
  16. paulw1982

    sql query problem

    If I do that then I will only see the records that are exactly that date. I need to see all records on AND after that date. I've tried looking on the web. Do you know anything about a CONVERT command?
  17. paulw1982

    sql query problem

    I have tried taking that section out so that the date selection part is the only part of the where statement but it behaves in the same way. is there a command that can be put directly into the query to tell it to convert the variable into a date format?
  18. paulw1982

    sql query problem

    I have tried taking that section out so that the date selection part is the only part of the where statement but it begaves in the same way. is there a command that can be put directly into the query to tell it to convert the variable into a date format?
  19. paulw1982

    sql query problem

    Its coming back with this error Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E07) [Microsoft][ODBC SQL Server Driver][SQL Server]The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
  20. paulw1982

    sql query problem

    Hiya, I have used the following query to extract certain sales data from an sql database. The problem is that my WHERE statement must be incorrect because the records that are returned have an estimated close date of before and after the date I have specified. If anybody can tell me where i'm...

Part and Inventory Search

Back
Top