MS PowerPoint Slide Background?
Mar 20, 2012
I'm currently working with PowerPoint in VB.NET and having a bit of trouble getting a slide to have an individual background. Using the SlideMaster method changes all slide in the presentation and I want only one to be affected
PS Using the Background.Fill.UserPicture method doesn't seem to be working, but I'm not sure why...
View 1 Replies
ADVERTISEMENT
Apr 20, 2010
MS PowerPoint, on the left side, there is a slide bar showing slides/pages available, is it that a slides pane? And how can I do that, let say if I want to create a new page/slide, how can I create a new blank slide? Also the side bar will display the pages/slides but is in smaller view...
View 1 Replies
Sep 1, 2011
I have been using VB to manipulate notes in PowerPoint presentations.Until today, everything had been working fine (in PowerPoint 2007) using:[code]But today I tried the code on a PowerPoint 2003 presentation and it threw an error saying that the object didn't exist.I tried looking in shape 1 and 0, but I don't find the notes.I then tried updating the presentation to the 2007 format, but the notes are still not accessible using VB, although they appear in the PowerPoint window fine.
View 1 Replies
Dec 31, 2011
I have a project Visual Studio VB2010 which controls PowerPoint and is working, I now want to copy a slide and put it into a Picture box but it does not work. I need to find what format PowerPoint puts it on the clipboard in. The copy is working because I can paste it into Paint or Word but when I use the code below I get nothing. If I copy a bmp/jpeg/tiff/png/meterfile in Paint it then shows in picturebox, so it appears the format is not right for powerPoint
If
My.Computer.Clipboard.ContainsImage()
Then
[code].....
View 1 Replies
Mar 23, 2010
I have written a VB.net 2010 Powerpoint addin that needs to be able to advance the slide via a button on it's main form when running the presentation. The functionality I require is exactly as if you press the space bar while focus is on the slide show window.
I have tried-PowerPointApp.ActivePresentation.SlideShowWindow.View.Next
But this does not work in excatly the same way, namely when working with several animation sequences on the same slide.I am looking into using the API - FindWindow & SendMessage but I do not fully understand the steps to get this to work, or even if it can. Or is there another way?
I am using Visual Studio 2010 RC with Powerpoint 2010 Developer Beta.
View 6 Replies
May 17, 2010
if this is the case.What I'm trying to do:1) have a way to save / copy screenshot from an Air app2) automatically paste such screenshot into a new powerpoint slide in the current presentation
View 1 Replies
Feb 10, 2010
I have a text box on a Powerpoint Slide. The text box contains text that I need to use in an Excel program. The Excel program will be run from a button on a toolbar within Powerpoint. I need to be able to pass the text box text, from Powerpoint to a variable in Excel, so I can use it in my Excel VBA code.
View 2 Replies
Aug 30, 2011
I have a strange problem on one machine that my VB.Net (.NET 3.5 - VS2008) app is running on, it runs a custom sized Powerpoint presentation in an IE control within my VB app. However, on one of the machines my app is installed on, the presentation always pauses on slide 2.
This is a kiosk type app, where there is no user interactivity. On all the other machines running this software, there is no problem. So it must be something related to the machine itself.
The PC is an XP Pro machine and was originally running IE6, which displayed the problem, I ugraded it to IE8 to see if this would fix it, but the problem persists. The machine is running Powerpoint 2003 (don't recommend upgrading the machines OS/Software- this is out of the question, as it is a business spec machine - even getting IE8 installed was a battle!)
The presentation itself has no complexity, all 15 slides are basic text and photos, no animation, no video etc. As far as I can tell, the problem is nothing to do with my software, or the Powerpoint slideshow, as this operates fine on similar machines and reinstalls made no difference, it must be a problem with the machine/installation itself. I've tried running the slideshow on the problem machine, in PowerPoint itself, rather than in my app, and it runs fine. I've also tried running it in an IE window, without running it through my app, and again, it seems fine.
View 2 Replies
May 12, 2010
I am trying to send a keystroke to a running powerpoint presentation with SendMessage or Postmessage. But I can't get as far as the handle for the presentation.
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Shared Function FindWindow( _
ByVal lpClassName As String, _
[code]....
As I understand it, you have to use FindWindow to get the application's handle and then FindWindowEx to get the sub-window's handle. The problem is that the line below FAIL returns 0, not a handle.Relevant material / possible answers are given in these sites but in C-type languages and I just can't see how what I'm doing is making the code fail: RE: hide cursor for kiosk application (powerpoint) hide cursor for kiosk application (powerpoint) | keyongtech Passing Event to Other Application.
View 2 Replies
Jun 22, 2010
how to set a powerpoint presentation as the powerpoint.application.activepresentation? In the program below, when the form is loading, it will open 2 powerpoint files (Test1.ppt and Test2.ppt). After Test2.ppt is opened, it will be the activepresentation because it is opened last.What I am trying to do is when I press button1, it will set Test1.ppt as activepresentation so that when I press button4, it will show me "C:Test1.ppt".The same also goes to button2 making Test2.ppt as activepresentation..But what I get is, no matter how many times i press button1, Test2.ppt is always the activepresentation.[code]
View 1 Replies
Oct 24, 2009
Im using this code
Private Sub Form1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.MouseEnter
For i As Integer = 38 To 2 Step -1
Panel1.Height = i
Next
[CODE]...
I have 2 panels on the form butttt for panel one i want to slide height and panel 2 i want it to slide width.
View 4 Replies
May 11, 2011
I'm trying to copy a Range from Excel and Paste the information in powerpoint in either the HTML or the default format, however, I am having some difficulties. I am able to get the code to work for pasting the Range as an OLE Object but nothing else. The problem with doing this is that having the embedded excel documents in the powerpoint makes the file extremely large and unstable. I just need to be able to paste the information without the embedded information where it is editable (so, not as a bitmap or picture).
With ppt2Slide
Sheets(index2).Activate
Range("CP12:CT" & RangeIndex2).Copy
[code]....
View 1 Replies
Jun 12, 2011
I like to use pop out panels that would just slide but sometimes it looks bad. is there a way i can fix it to make is as smooth as possible?
Here is the code i use:
dim pp as new point
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
pp = Panel1.Size
End Sub
[CODE]...
View 1 Replies
Jul 5, 2011
I was wondering if anybody could tell me how to make a slide show for a picture viewer. I already have a counter set up for it... all I really need help with is a timer to change the pictures. Here is the application's page and source code:
[Code]...
View 5 Replies
Jun 4, 2010
How can I make a transition between forms so that it appears the second form slides in from the right? I know its possible to make a slide effect with a timer, but how do I do it to move a form?
View 18 Replies
Sep 28, 2011
add notes in the powerpoint slides notes part under the powerpoint slide.using Microsoft.Office.Interop.PowerPoint. I'm using vb.net code.Now it si creating the ppt file and I can add text,comments,image. in the slide . But I need to add notes in the powerpoint slide , in the bottom part of the slide.
Here is the code i'm using for creating slides.
Dim oApp As Microsoft.Office.Interop.PowerPoint.Application
Dim oPres As Microsoft.Office.Interop.PowerPoint.Presentation
Dim oSlide As Microsoft.Office.Interop.PowerPoint.Slide
Dim bAssistantOn As Boolean
[code]....
View 1 Replies
Aug 1, 2011
I am looking to create a custom slide in menu that will host all of my modules for my application. The part I need guidance on is how to create the animation for the panel to slide in and out. I am looking to have a button on my application and when a user click on it I want it to expand down and right to show available modules. Is this done with the slider panel or a canvas, custom animation or something else?
View 2 Replies
Mar 13, 2012
I have a tab control on my MDI parent form that I want to have docked so just the tabs show from the bottom up on the screen. Then on mouse over it slides open to reveal another form/controls that are contained in the tabs.
Just to understand me a little better I am including some images.
The first is where I want the tabs to start. The second is where I want it to slide to on mouse over or click.
View 5 Replies
Mar 26, 2010
How can I get a control to slide into view onto my form? It could be a button, panel anything. I just want it to look like it slides in from one of the sides.
View 1 Replies
Aug 16, 2009
Make a slide show on visual Basic Please exact code
View 10 Replies
Feb 6, 2012
How to slide a form up while revealing another form. II basically want form1 to slide up when closed by the user and while the slide transition is taking place I want form2 to Gradually show. How to achieve the slide up transition in Visual Basic 2010?
View 4 Replies
Jan 30, 2012
Just a quick one really folks. Has anyone come across any VB.net control that acts similarly to a kind of slide out panel. I'm thinking a form in which there is a little tab at the side which can be grabbed and pulled out to reveal more controls. (Pulling the panel over the current form). I assume that this is something I will have the create myself but I was just wondering whether anyone has come across a control that already does this.
View 4 Replies
Aug 27, 2009
Alright im trying to make my application look very nice with a slide out panel. The panel has all the settings for the application.How do i make it so when the mouse is not on it, it will side back, But it will leave a tiny pixel of panel still showing. But when the mouse is over that how would i make it slide back out?
View 9 Replies
Mar 20, 2012
How to put more than 1 picture in a PictureBox then show all the pictures one by one such that it looks like a small slide-show?
I am working on a project that needs me to show all my products on the form.
View 1 Replies
Feb 14, 2011
I'm trying to create a simple slide show using timers.I tried this but doesn't seem to work.
Code:
Dim Count As Integer
If Count = 3 Then Timer1.Enabled = False
PictureBox1.Image = My.Resources.Water_lilies
Sleep(900000)
[Code]...
View 2 Replies
Apr 14, 2010
Currently,I'm doing a image slide show application but I'm don't know how to save/publish the slide show project into .swf file.
View 3 Replies
Oct 17, 2009
I have this Slide show on a weppage the picture goes from right to left, but now i want to make the same slide show in a windows form, i have look at some other Topigs and can see that i maybe can
use a timer, can someone help me here, The picture shall come in one Row and from right to left
View 3 Replies
Nov 9, 2011
I am using the WindowsMediaPlayer. I disabled the Controls , and created my own. I want to use a Trackbar to slide throug the media being played.This works, for moving
Private Sub TrackBar2_Scroll(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TrackBar2.Scroll
LenOfVideo = AxWindowsMediaPlayer1.currentMedia.duration
TrackBar2.Maximum = LenOfVideo
[code]....
But i need the trackbar to track of the position of the video while playing.It stands still now. I need it to be updated.
View 1 Replies
Feb 25, 2012
How could i re create the slide transition in the windows 8 lock screen. I want my form1 to quickly slide up while revealing form2(Both forms are borderless and in maximized state) (like when the lock screen slides up while revealing the logon screen in windows 8)
View 2 Replies
Apr 26, 2011
I was asked to create a slide show in Visual Basic 2010 that had to meet certain requirements but I've run into a few difficulties. I have a slide show that works but it doesn't meet my friends standard and I'm not sure how to go about this process.He asked me to meet these requirements: The Slide Show Project requirements of your project are:
1. The use of if statements.
2. The use of arrays.
3. The use of loops.
4. The use of graphics.
5. The use of key/mouse controls.
6. The use of images.
7. Allow user to set delay time for each photo.
8. Transition effects 1: Fade in, fade out
9. Transition effects 2: Fly in, Fly out
10. The use of timers.
11. Borderless, always centered.
12. Introduction Screen, Credit Screen.
13. innovations, special feature.
The code that I had previously came up with was as follows:
Public Class Form1
Private ImageFileNames As New List(Of String)
Private CurrentImage As Integer = -1[code].....
I pre-loaded my own photos into the slide show but I just want to know how to right this code in order to satisfy my friend.
View 2 Replies