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 bkrike 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: amigo02
  • Content: Threads
  • Order by date
  1. amigo02

    Multiple email domains with one IP address

    Can we setup multiple email domains on one Exchange server using only one IP address.
  2. 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
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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 =...
  8. 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"...
  9. amigo02

    6:30pm users forced to logout/logon to windows

    We have a small business server 2003 standart and 8 windows xp pro clients. Everyday at around 6:30pm all the network operations slows down so badly, it almost brings all xp pro clients to crash and unless the user logs out and logon to window, it is impossible to work. During this time internet...
  10. amigo02

    Information Store Backup Question

    I use windows backup utility (2003 small business server) to backup our exchange information store. Backup completes successfully and in the backup utility I go to Restore and Manage Media and open the catalog file I recently used to see if exchange is backed up correctly and it shows the...
  11. amigo02

    Very slow performance writing to network share in server

    We have 8 windows xp pro sp2 machines and a domain controller with Small business server 2003. Lately network performance is really bad, for example saving a word document into a shared folder on server brings the xp computer into halt. Server has 2 mirrored SATA harddrives. Opening files no...
  12. amigo02

    How to setup Public Folders?

    I would like an shared folder and its subfolders to be shown in Public folders in outlook 2003 and exchange 2003, How can I do it? Also can I delete pub1.edb from exchsrvr\mdbdata folder without any complications. The reason I want to do it, because I tried to copy a .pst file into public...
  13. amigo02

    HOW TO PUT EXISTING FOLDERS IN PUBLIC FOLDER

    I would like to put the entire D drive shown on public folder in outlook, how can I do that.
  14. amigo02

    Some Emails are rejected by Destination servers

    We have a Windows Small Business Server 2003 and have a static IP with verizon DSL. We also have an ISP called fatcow.com which is hosting our web site and forwarding the MX record to this static IP Now with all that said, I get a return message as follows with some of the emails that I...
  15. amigo02

    Exchange Mailbox Restore - help ?

    We have a Windows Small Business Server 2003 Standard installed on a server computer which had only one 33gb SCSI hardisk with two partitions on it (C and D). Due to harddisk failure we need to restore from tape backup. All the partitions (C and D) backed up along with system state using Backup...
  16. amigo02

    xmlhttp.open gives me "Invalid syntax" error

    I have the following code in a javascript function function fnAction(oButton){ var objXMLHTTP= new ActiveXObject("Msxml2.XMLHTTP.4.0"); var objXmlDOM=new ActiveXObject("Microsoft.XMLDOM"); varStr="somePage.aspx"; try { objXMLHTTP.open("POST",varStr ,false); } catch...
  17. amigo02

    xmlhttp.open gives me "Invalid syntax" error

    I have the following code in a javascript function function fnAction(oButton){ var objXMLHTTP= new ActiveXObject("Msxml2.XMLHTTP.4.0"); var objXmlDOM=new ActiveXObject("Microsoft.XMLDOM"); varStr="somePage.aspx"; try { objXMLHTTP.open("POST",varStr ,false); } catch...
  18. amigo02

    xmlhttp.open gives me "Invalid Syntax" error

    I have the following code in a javascript function function fnAction(oButton){ var objXMLHTTP= new ActiveXObject("Msxml2.XMLHTTP.4.0"); var objXmlDOM=new ActiveXObject("Microsoft.XMLDOM"); try { objXMLHTTP.open("POST",varStr ,false); } catch (errorObject) {...
  19. amigo02

    Dataset & Datasource update problem

    In my Access database table I have an autonumber field which obviously is automatically given a value when a new record inserted I use dataset in my asp.net (vb) to update the Datasource but I could not figure out how to read back this autonumber fields value after successfully inserting a...
  20. amigo02

    Access 97 under windows XP

    Hi there! We have an Access 97 application. I moved that application to an windows XP machine and everything seems to be working fine except some of the field values on printouts shows "Name?" instead of the actual value entered? Any idea greatly appreciated Thanks

Part and Inventory Search

Back
Top