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 SkipVought 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. amigo02

    Multiple email domains with one IP address

    Do you know if this can be applied to exchange 2000 as well ?
  2. amigo02

    Multiple email domains with one IP address

    Can you please tell me how I can do it ?
  3. amigo02

    Multiple email domains with one IP address

    Can we setup multiple email domains on one Exchange server using only one IP address.
  4. amigo02

    XMLHTTP in VB.NET

    I am able to use xmlhttp in javascript but when I use it in vb.net I get unhandled exception. Is there a better way in vb.net where I can retrieve html pages and use them in my program. If you can provide some code snippets that would be very helpfull... thank you
  5. amigo02

    Modify Fields Propertied with ADOX ?

    In other words the problem is with the following code: For Each p In col.Properties colnew.Properties(p.Name).Value = p.Value Next
  6. amigo02

    Modify Fields Propertied with ADOX ?

    I don't think you need the "set" keyword in vb.net anymore! am I correct? And I isolated the problem to column attributes. For example I can't set the col property for a null value etc. I still don't have a solution to this problem
  7. amigo02

    Modify Fields Propertied with ADOX ?

    Hi there I have a master database (ms access 2000) that I use to develop my application and I modify it almost daily. My application is being used by several client companies already and I want to reflect those master database changes on their current databases too. To accomplish that I wrote...
  8. amigo02

    How to get field description from an Access table using ADO

    Hi there I have a master database (ms access 2000) that I use to develop my application and I modify it almost daily. My application is being used by several client companies already and I want to reflect those master database changes on their current databases too. To accomplish that I wrote...
  9. amigo02

    How to relay?

    I have a win2k server with exch2k and some 10 domains hosted on the same computer with smtp virtual servers for each domain. The setup as follows; machine IP : 168.100.100.1 and no external domain pointing to this address, this is the default smtp server in exchange server. There is another...
  10. amigo02

    mail stuck in queue - and badmail

    I am running exc2k sp3 with multiple SMTP servers on win2k sp4 with IIS. The default smtp server is keeping the mails in queue folder for a long time and then transfer it to badmail folder. All the other smtp server are able to send mail outside (Multiple domains are hosted with a different...
  11. amigo02

    Migrate from vb6 to vb.net problem

    I have a vb6 component with following code Public objContext As COMSVCSLib.ObjectContext Public Request As Object Public session As Object Public Application As Object Public Server As Object Private rs As ADODB.Recordset Public Function Init() Set objContext = GetObjectContext() Set...
  12. amigo02

    Outlook automation using javascript

    I tried src='cid:somepic.gif' solution but no go! May be I was not clear enough on what I meant . I give you the code below; var outlookApp = new ActiveXObject("Outlook.Application"); var nameSpace = outlookApp.getNameSpace("MAPI"); var mailFolder = nameSpace.getDefaultFolder(6); var mailItem...
  13. amigo02

    Outlook automation using javascript

    yet another question? When I follow your instructions the image is displayed in outlook without problem. But if I send the html page as an attachment instead of in the body of the email internet explorer does not display the image when the attached file opened by double clicking the attachment...
  14. amigo02

    Outlook automation using javascript

    This is great stuff. Thanks again..
  15. amigo02

    Outlook automation using javascript

    tsuji thanks for the very valuable information you provided.. How can I copy the image file from web server(intranet) to user's temporary folder so I can attach it to the email.. Or better yet how to attach images from server directly into emails in javascript and outlook active x .
  16. amigo02

    Outlook automation using javascript

    Also I have another question! How to embed images into emails instead of sending a link to it. (using outlook active x and javascript)
  17. amigo02

    Outlook automation using javascript

    Thank you tsuji , it worked fine..
  18. amigo02

    Outlook automation using javascript

    Hi there I want to attach a file to outlook email using javascript within a web page. The following code works fine without attachments. var outlookApp = new ActiveXObject("Outlook.Application"); var nameSpace = outlookApp.getNameSpace("MAPI"); mailFolder =...
  19. amigo02

    how to attach a file to OUTLOOK.APPLICATION object

    I have following code and works fine var outlookApp = new ActiveXObject("Outlook.Application"); var nameSpace = outlookApp.getNameSpace("MAPI"); mailFolder = nameSpace.getDefaultFolder(6); mailItem = mailFolder.Items.add('IPM.Note.FormA'); mailItem.Subject="CUSTOMER SERVICE"...
  20. amigo02

    Very slow performance writing to network share in server

    I found the solution to my problem. It may not apply to all others discussed here but I found out this: On the 2003 server check the Domain Controller Security policy and make sure account lockout time is long enough. I found out that the Default is 600 minutes and since in our office users...

Part and Inventory Search

Back
Top