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

  1. rpthomas

    Accessing a Form thats already been instantiated

    In C#, how do you display a window that already has a previous instance loaded into memory? Example: Form1 has a textBox1 and a button. Some text is typed into texBox1. The button click of Form1 loads Form2 which also has a button. Clicking Form2's button calls Form3. How do you call the...
  2. rpthomas

    Create a Toolbar in Outlook w/ VB

    I'm trying to create a Outlook Toolbar using VB, but keep getting the error, "Object Variable Not Set”. Dim golApp As Outlook.Application Dim DPNewMenu As CommandBar Set golApp = GetObject(, "Outlook.Application") Set DPNewMenu = ol.ActiveInspector.CommandBars.Add _...
  3. rpthomas

    Create a PDF w/ PDFWriter without SaveAs Dialog

    Is there a way to print to PDFWriter using Visual Basic and not have the File SaveAs Dialog appear. I've tried creating a Word Object and using the syntax; Word.ActivePrinter = "Adobe PDFWriter" Word.Application.Printout . . . . OutputFileName:="C"\temp\filename.doc&quot...
  4. rpthomas

    VBA/Outlook Attachment

    Does anyone have a code sample that shows how to detect when an attachment is added to a new Mail Message in Outlook? Thanks Roland Thomas
  5. rpthomas

    Outlook/VBA

    I am trying to get the "AttachmentAdd" event to fire after adding an attachment to a new mail message. Can someone please tell me what I'm doing wrong? Here is my code which resides in the "ThisOutlookSession" module: Private WithEvents objMailItem As Outlook.MailItem...
  6. rpthomas

    Formatting a *.tif in Word

    I am trying to programically format a picture in Word with no success. Here are the steps I am taking; First I insert a *.tif into a Word Document. Then select 'Format | Picture | Layout' select 'Tight and click Left'. This works fine when done manually, but when I try to record these steps...
  7. rpthomas

    Permission Denied in COM+

    When I set the Identity of my COM+ application to the same network username as the person logged onto the local pc, it works fine. When I set the Identity of my COM+ application to anything other than the network username of the person logged onto the local pc, I prompts me with "Error 70...

Part and Inventory Search

Back
Top