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

    Can I convert a .PPS to a .PPT?

    Gurus I have been handed a CD which contains a MS-Powerpoint Slide Show (.pps) file. I'd like to be able to edit some of the slides in the .PPS file and put a few of the slides into a new presentation. Is there any way to open a .PPS file in an editable format (in other words, open it as a...
  2. ssmgr

    Can I send an email from excel and turn off the spell checker?

    I'd like to be able to send an email from Excel, but don't want the spell checker to fire up. Is there a way to turn spell checking off?
  3. ssmgr

    Attempt to send mail from Excel results in warning message.

    I am attempting to send an email from within Microsoft Office Excel 2003 via VBA. Operating system is XP Professional Desktop. Dim OL As Outlook.Application Dim Folder1 As Outlook.MAPIFolder Dim olMailItem As Outlook.MailItem Dim ToContact As Outlook.Recipient Set OL = New Outlook.Application...
  4. ssmgr

    Creating Outlook Calendar appointments via email

    The online MS-Outlook application allows you to create an appointment in the calendar, invite attendees, and email the invitation. The email actually updates the attendee's calendar. However, I can't work out how to do that in VBA. I can create and send and email using VBA, and I can create an...
  5. ssmgr

    Outlook VBA - Address Lists

    Does anyone know how I can find all Distribution and Address lists for a given user? I've been playing around with AddressList / AddressLists and AddressEntry / AddressEntries, but I'm a bit lost. Any advice would be appreciated. Steve
  6. ssmgr

    Excel Question: Can I detect last key pressed?

    Is there any way to detect the last key pressed in a worksheet? I would like to put some code inside a Worksheet.SelectionChange sub to ascertain whether the user pressed Enter, Tab, Left/Right/Up/Down arrows, or clicked on the newly selected cell with a mouse. I see that there are mechanisms...
  7. ssmgr

    Outlook and the appearance of folders

    Does anyone know how to apply/remover filters against Outlook folders using VB/VBA?
  8. ssmgr

    A question about Outlook and the appearance of folders

    Does anyone know how to apply and remove filters against Outlook folders using VBA?
  9. ssmgr

    Detecting last key pressed in Excel

    Can anyone tell me how I can tell when the last key pressed was the Delete key in Excel? I can work out when a change has occurred and when a selection has changed via Worksheet_Change and Worksheet_SelectionChange, and can deduce which cell I was in before if the last key was the enter key...
  10. ssmgr

    Windows Killtimer API

    Does anyone know how to use the KillTimer API? I have used SetTimer API from User32.dll to create a timer object on a VBA form, but when I hide the form the timer still keeps running. I tried calling KillTimer with the timer object's windows handle (returned by SetTimer) as the first...
  11. ssmgr

    Accessing Windows

    A question for the windows gurus. Is there a way to interrogate windows to find out what windows are currently open? If I know the title of a window, I can access it using the VBA.Appactivate method. However, what if I don't know it's title? Is there a way to obtain the title of all...
  12. ssmgr

    Excel97 Command Bar - How do I create a Text Only item?

    I'm using Excel97, and have created a floating command bar containing a single control. I want the control to display as Text Only (Always), not as an icon. Any ideas? This is what I have so far: Application.CommandBars.Add Name:="Module1", Position:=msoBarFloating, temporary:=False With...
  13. ssmgr

    4.3.1.2 MIMS.ModifyDistrict method problem

    Has anyone managed to successfully change district using Connector in MIMS OE 4.3.1.2? My code runs successfully and produces no errors, but I end up in the same district that I started in. I have provided a bit of my function code. Am I doing something wrong? ...... Private Function...
  14. ssmgr

    Using BOC to retrieve Purchase Order Data

    Does anyone know how to retrieve Purchase Order and Purchase Order Item data via Connector? I've had a look at all the available classes and it has me stumped. You can retrieve purchase order data related to requisitions using the "REQUISITION.Fetch" and...
  15. ssmgr

    Using VBA to drive MIMS through MSKs

    I frequently use Excel VBA to drive non-GUI MIMS (via MSOs and the 3270 emulator's Screen object), and would like to access data through the use of MSKs instead of scraping it off the screens. Can anyone point me towards some documentation on how MSKs work and how I can access them through VBA...

Part and Inventory Search

Back
Top