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

    Turn off Office 2003 Security Features

    Thanks Chip. I would do that, but one of the requirements (which I forgot to mention above) for the app is to create an email that sits in the sent items box of Outlook. Peter
  2. PM2000

    Turn off Office 2003 Security Features

    I have a vb.net app that sends emails with attachments for clients. I am currently testing it with Office 2003 and get the following message when the app tries to send an email: "A program is trying to automatically send e-mail on your behalf..." The fixes out there are apps that click the...
  3. PM2000

    Telnet issues

    ok - thanks to some help outside the forum, this problem has been solved. I needed to include a linereturn after the End statement that was being sent. I was hoping that it would be something simple like that! Peter
  4. PM2000

    Telnet issues

    I have an app that ftp's some data up to a site. Then using telnet, I need to kick off a process. It would be nice to automate this process, but I run into trouble when I send the commands. The command created and sent is correct, but the receiving server does not get the 'end' command. This...
  5. PM2000

    cannot empty the clipboard

    I am having the exact same problem with Excel 2000 on Windows XP Pro. I have tried reinstalling Office. I have made sure that there are enough resources available and everything. I am not sure if the clipboard is somehow affected by the network (we have a W2000 network and use roaming...
  6. PM2000

    Trigger - update other columns in the table

    Thanks Denny, I knew it would be fairly easy, I just couldn't get it to work when I tried. Works fine now! :-) Peter
  7. PM2000

    Trigger - update other columns in the table

    Hi, Maybe I'm a bit of a newbie on this one, but I can't figure this out. I have an old application that updates a table in the database (the app was not written by me and I don't have the code, which is why I need to use a trigger to do this.) This application will update column 'value' with...
  8. PM2000

    Add a serial number to a Word file

    Hi, I am stumped on this one. I need to send out a Word document (Office 2000) in pdf to about 300 people. The problem is that each one has to be numbered sequentially. The number has to appear on the front page of the pdf that is emailed. So, my code would essentially open the document...
  9. PM2000

    Email Attachment Sometimes Fails

    Thanks Sweep. I tried to add the space, but got the same error. So, I tried something a bit different. I use filecopy to copy the attachment and give the copied file a unique name. Then I attach the copied file, send the email, and then delete the copied file. For whatever reason, this...
  10. PM2000

    Email Attachment Sometimes Fails

    Hi, I have an vb.net app that emails attachment(s) as designated by the user to a list of people. There can be one or many attachments as selected by the user on the form. The following code generates the email: oMailitem = oOutlook.CreateItem(Outlook.OlItemType.olMailItem) oMailitem.To =...
  11. PM2000

    Finding a systems busy status.

    Hi, I am writing an app that needs to know if the user has not been using the PC for a certain length of time. When the user has not used the PC for 5 minutes, I want the app to show busy, kind of like what MSN messenger does. I am unable to find where Windows XP exposes this system value...
  12. PM2000

    Acrobat 6.0 security

    HI, I have an Visual Basic 6 application that generates PDF files that I send out to customers. I am not able to programmatically protect/secure the document using Acrobat 4.0. Therefore, anyone could change the text of the document if they had the right Adobe product. Does anyone know if...
  13. PM2000

    ERROR LOGGING

    HI, I'm trying to log each error produced by my app. I want to log: 1. Err.description 2. The Class/Form name 3. The Function/Sub name My code for a typical routine looks something like this Function DoSomething() Try 'Do stuff Catch LogError(err.Description, "form or class...
  14. PM2000

    Control Menu Access

    Hi, In VB6, I had an MDI app that was used office wide and each person was allowed different levels of access. For example, on a menu named Process, there were 3 functions. Person A could access Function 1 and 2 while Person B could Access 1 and 3. When Person A logged in, my app checked the...
  15. PM2000

    Send Email in VB .Net

    lermure, I had my SMTP server name wrong....silly me, it was a long day! My code is currently identical to that which is in the FAQ that Zarcom wrote. My best guess would be that you have the SMTP server wrong, but it could be something else. It would help if you posted your full piece of...
  16. PM2000

    Send Email in VB .Net

    Hi Zarcom, Sorry, my mistake...I got it to work. Thanks for the code. One final question. Why does the email not appear in my sent items box? I am using Outlook 2000 and my only delivery service is Microsoft Exchange Transport. Thanks Peter
  17. PM2000

    Send Email in VB .Net

    I am having the same issue as Yohann7 and wannabeel33t in VB.NET. I am not sure what environment they are working in, but I am on an XP Professional client with Exchange 2000 on a W2000 Advanced server For some reason, I get the following error: Could not access 'CDO.Message' object. I have...
  18. PM2000

    Browser modification

    Does anyone know a good site to learn how to modify browsers in ASP.Net. I am trying to write an simple application for my office. I want to do it in ASP.net because I don't want to have to install the new app on every PC each time I am asked to make a small change. However, I would like...
  19. PM2000

    Mailing Lists

    Thanks, I knew it was something small I overlooked! That fixed it. Peter

Part and Inventory Search

Back
Top