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: maesb
  • Order by date
  1. maesb

    Cannot send CC Mail

    bslintx, I'm just wondering, how did you place your codes into those neat textarea? is it by using the code tag? <code> Some codes here. </code>
  2. maesb

    Cannot send CC Mail

    Thanks bslintx and steven290.. i've now striped off everything like what bslintx suggested and seems like it's working fine now.. but i'm still not sure what exactly cause it to go wrong in the first place. I tried hardcoding the From, To and Cc to my own email account and it looks like if i...
  3. maesb

    Cannot send CC Mail

    Hi bslintx, I've tried using small cap cc and now i've assigned the objMail.To , objMail.cc and objMail.From email to my email acc, which is valid. But so far i have only received 1 mail. The CC email just doesn't seem to be able to get through. I've even copied your code and try it out...
  4. maesb

    Cannot send CC Mail

    Hi.I'm trying to send out an email using the following to user1 and CC to user2. User1 is able to receive the email but not user2. Set MyCDONTSMail2 = Server.CreateObject("CDONTS.NewMail") HTML = "<!DOCTYPE HTML PUBLIC""-//IETF//DTD HTML//EN"">" HTML = HTML & "<html>" HTML = HTML & "<head>"...
  5. maesb

    Using wrong index

    Hi Musafa, The database structure of both users are the same as i exported user1 and imported the tables into user2. So i assume the permission should be the same? The only difference i know of is that user1 and user2 are using a different table_space. does that answer your question?
  6. maesb

    Using wrong index

    i've got 2 different users with the same set of database, but when i run the same query on both users, they seem to be using different indexes to run the query. How do i make them use the same index? Following is my query : select a.cust,(b.dorq-b.qrtn) as qnty from soinno a, ptdord b, socrsd...
  7. maesb

    SMTP Virtual Server - Cannot send Email

    I forgot to mention that my colleague tried the same method using his PC and there's no problem sending out the email.
  8. maesb

    SMTP Virtual Server - Cannot send Email

    Hi.. I posted this in the IIS forum but there's no reply. So I figured I'll try to post it here. I coded something in asp which automatically sends out an email whenever user hits a button. My script works alright, no error message or anything, but my mail got stuck in the...
  9. maesb

    SMTP Virtual Server - Cannot send Email

    Hi.. I'm not very familiar with IIS, and i have a problem sending email using the SMTP Server. I coded something in asp which automatically sends out email whenever user hits a button. My script works alright, no error message or anything, but my mail got stuck in the C:\Inetpub\mailroot\Queue...
  10. maesb

    special charater found

    Hi tsuji, Thanks a lot for the reply. I've found out what's the problem. I'm now replacing it with vbCrLf and it works fine now! FARM=replace(Trim(objRS("farm")),vbCrLf," ") thanks again :)
  11. maesb

    special charater found

    travisbrown, response.write will not be able to see what's the problem, the display will be "CRT ( A68LZU185 ), " which looks very normal, but in the table, it's stored as a black box. any idea?
  12. maesb

    special charater found

    Hi, I found a special character in my database table which gives my asp page an error when loading. It's a black colour box at the end of my string. I'm not sure how the user key in the character, but my guess is that it's a carriage return. So, i try to get rid of it by doing this : <code>...
  13. maesb

    a simple question

    hi, this question may sound a bit silly. how do i redirect user to a mainpage.asp when user enters my link for example, http://mae/svc ? thanks..
  14. maesb

    combining columns

    why didn't i think of that? lol.. thanks a lot.
  15. maesb

    combining columns

    Hi.. I'm trying to query a few columns from my table, but i would like it to return those few columns as one. my table looks something like this : add1 add2 add3 Unit 101 East Malvern Caulfield i want to select add1, add2 and add3 as address, with a comma as a...
  16. maesb

    textarea - disable schrollbar?

    thanks a lot! now i've got another question. the box you use to place your html script above, i notice that it's using a <div> tag. that can be used to display text instead of a textarea? and the 3d effect of the div is done using css? and by the way, how did you get the box to write your...
  17. maesb

    textarea - disable schrollbar?

    Hi, can i actually not have a schrollbar in a textarea? thanks. maegan.
  18. maesb

    value comparison in SQL

    Himanshu, thanks a lot. that works great! Maegan.
  19. maesb

    value comparison in SQL

    select dorq, actq, decode(dorq-actq, <0, dorq, actq) as temp from ptgrnd how do i specify the <0(negative) condition? i don't think so i can use decode. or can i??
  20. maesb

    value comparison in SQL

    Hi, i'm working on an SQL statement, but am not sure how can i make comparison between values in SQL. I've got a temporary table which stores some value, and i need to get the values to update another table in batch. Here's my SQL statement : UPDATE copart a SET qono=NVL(qono,0)-NVL((SELECT...

Part and Inventory Search

Back
Top