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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hitoshi

  1. hitoshi

    trap Excel Application Events

    I have this problem too, I don't know the solution. Anyone?
  2. hitoshi

    graph memory leak

    Actually, I figured it out myself. Here's my solution for anyone who is interested: You need to "activate" the chart by doing the following: ActivePresentation.Slides(i + 1).Shapes(yq + 2).Select ActiveWindow.Selection.ShapeRange.OLEFormat.DoVerb Index:=1...
  3. hitoshi

    graph memory leak

    Actually, on this computer, Graph9.exe never exists. Do you know an API call to terminate a program? -greg
  4. hitoshi

    graph memory leak

    Hey, I am pasting a lot of data from excel to powerpoint, here is a code fragment: Sub adjustData() ' ' This sub changes the chart data to the relevant excel informaiton ' Dim oGraph As Object Dim oPPTShape As PowerPoint.Shape Dim j As Integer On Error GoTo xxx Set...
  5. hitoshi

    Is there an equivalent to GetChartElement using Powerpoint's Chart?

    Is there an equivalent to GetChartElement using Powerpoint's Chart? I don't think there is but, hopefully there is. -Grg
  6. hitoshi

    Using Excel Chart Event Procedures when embedded in PowerPoint

    OK! Your code works great in excel, and in powerpoint if you are not presenting. By while the presentation is not running I do not how to get this macro to run. I tried this: -set the pasted chart's action setting to run the macro called "display" on a mouseover -then made this macro: Sub...
  7. hitoshi

    Using Excel Chart Event Procedures when embedded in PowerPoint

    Hi, Say I've declared a procedure in Excel, with a chart on a seperate sheet, that msgboxes what the value of the series is when you mouseover it, something like this: >> Private Sub Chart_MouseMove(ByVal Button As Long, _ ByVal Shift As Long, ByVal X As Long, ByVal Y As Long)...

Part and Inventory Search

Back
Top