Controlling A PowerPoint Presentation

Aug 28, 2009

I am using Visual Basic Express Edition 2008 and Office 2007

View 3 Replies


ADVERTISEMENT

How To Set A Powerpoint Presentation As Powerpoint.application.activepresentation

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

Powerpoint Presentation In Web Control?

Aug 20, 2010

I'm putting the finishing touches to a fullscreen Winforms Application in VB (.net 3.5, VS2008). This is Q2 for today, as I seem to be coming up with all these little glitches I can't figure out!!I have a webcontrol, which I use to show a PowerPoint presentation - by using webctl.navigate("c:MyPresentation.ppt").This works perfectly, and my presentation shows exactly as desired.However, sometimes, when I close my application, the Powerpnt.exe process is left running.Is there any way of programatically forcing this to close if it has been left open, or am I not disposing of something I should (I can't find anything along these lines when running powerpoint through a web control)?

View 5 Replies

Automate The Starting Of A Powerpoint Presentation?

Mar 31, 2009

How do I Automate the starting of a Powerpoint Presentation from Visual Basic? I would like to create a simple program in visual basic (2008 Express Edition that starts and runs a Powerpoint (powerpoint 2007) presentation in full screen on certain days of the week at certain times. The days of the week and times need to be user input variables.I am writing the program to automate a projector

View 4 Replies

Changing PowerPoint Presentation Colours

Dec 9, 2009

I am looking for a way or a code that will change the colours used in a powerpoint presentation, I will also need to change the background colours of active x text boxes etc.

View 6 Replies

Embed PowerPoint Presentation With Password?

Sep 12, 2011

I want to embed a PowerPoint presentation with narration, timings and the presentation PASSWORD in my application so that it will automatically start the Pesentation and enter the password, when a button on the form is clicked. I want to do this so that the PowerPoint presentation can only be viewed from within the application, where the password is embedded in code, and cannot be run by just finding the PowerPoint presentation file and clicking on it to run it.

I do not intend for the user to be given the password. I would imagine that i could use process.start to run the presentation, which can be put on the target computer at the time of instal, but I don't know how to handle the password with code on the button.

View 8 Replies

VS 2010 Powerpoint Presentation In Application?

Oct 18, 2011

I'm looking for a way to put a powerpoint presentation into a VB project I'm working on. Is this possible? I've searched google upside down, but I couldn't find anything usefull.

View 1 Replies

Access A Powerpoint Presentation Within The Windows Form?

Nov 17, 2009

I am designing a vb.net application and I want the user to be able to access a powerpoint presentation within the windows form. Can anyone direct me to a good site with good enough instructions for VB.net (not vb 6

View 1 Replies

Disable The Automatic Reset Of A Kisok Presentation In Powerpoint 2010?

Jan 6, 2012

I created a presentation which runs in kiosk mode as a PowerPoint Macro-Enabled Show. Now the problem is, that the presentation resets itself to slide one if there is no user input for 5 minutes. How do I disable this feature?

I am using Powerpoint 2010 (Version 14.0.6112.500 (32-bit))On a side note: I already found an Add-In (KioskAssistant) which enables me to increase the time before the slide is reset. But this change is only done locally for my machine and not saved into the presentation itself. So this not a sufficient enough solution if I want to ship my presentation to my client

View 4 Replies

Excel To Powerpoint Macro - Copying Excel Range And Pasting As HTML Or Default In Powerpoint?

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

How To Get Full Number Presentation In String

Apr 20, 2010

If I have a small double in vb.net like this:
dim x as double = 0.00000003
A conversion to a string would produce a E-presentation (3E-7). in debugging the value it will be shown as full number (0.00000003). How can I get the full number in a string?

View 1 Replies

VS 2008 - Refactoring Presentation Layer

Sep 10, 2010

I've been working to refactor my code and ended up with a quite clean main BLL class that has only a few manager classes that pass information between eachother. They handle separate tasks/areas like socket connection, data, etc. It's only one instance of each of these manager objects, so I believe maybe the base layout is a structural singleton (?) ..but not sure. This seems to give quite good oversight and a clean separation of PL/BLL as the main form only access the BLL through one instance of a single class. But now I'm trying to figure out how to lay out the presentation layer. So with this I would like to understand a few points: Do you have all controls as members of the form class, or can you make sub classes where some controls only exist on lower levels? Like for example if you have a tab where all controls only interact with each other, and not the rest of the form, would it then be possible to make this a separate class that holds both controls and additional logic ? The first problem I get when trying this is with the events, as if I simply move an event handler method to another class than the form class, I get the message: Handles clause requires a WithEvents variable defined in the containing type or one of its base types.What does this mean? and is there an easy way around this? I would like to understand how a slightly more complex PL is designed, so I know what direction to move in for studying/developing this.

View 3 Replies

Returning Query Results To Presentation Layer?

Mar 11, 2010

Im currently working on an n-layer application that does alot of database work.90% of all database queries are updates, and inserts and I want to be able to view the results of my query in the presentation layer.I was thinking of creating a QueryResult class that has a few properties like QuerySuccessful (boolean), Message (string) - holds success or error message, and optional field to hold any additional data that may need to be passed back to the presentation layer.So I guess my question is, am I going about this the correct way by creating a QueryResult class, and passing that back up through the layers to my PL?

View 2 Replies

VS 2008 Program That Utilizes A Three-tier Structure With Presentation

Jun 21, 2010

I am writing a program that utilizes a three-tier structure with presentation, business and persistence classes. I am needing to use a ComboBox to select a specific account type which will call a class. How do I get the program to call a class after the user has selected an account type from the ComboBox?

View 1 Replies

2 Column Table Presentation Control, Like The Properties Window In The Dev Environment

Sep 21, 2009

in a windows form if i want to duplicate the properties window layout on my form, which is basically a 2 column table with title on the left and value on the right, what control do i use to achieve that?

View 1 Replies

Combining Data From Multiple Tables Into One Table For A Presentation Software?

Oct 5, 2009

I am combining data from multiple tables into one table for a presentation software. I am doing a select statement and running a loop. Inside that loop I have multiple selects and I build a datatable an enter the data into the main table. There is a ton of records and it takes forever.

'Requisition Demands
InsertStr =
"SELECT COUNT(*) FROM Requisition WHERE (DMD_DT = " & dateVal & ") AND (QTY_REQ > QTY_PEND_CANC + QTY_CANC + QTY_REJT) " & searchvalString

[code].....

View 3 Replies

Open PowerPoint Using .net?

Jul 17, 2010

are there special code can help me to open PowerPoint 2007 slide and show it ?

View 14 Replies

.net - Which Platform Is Used For Powerpoint And Flash

Feb 15, 2011

I Want To create Animation Project like powerpoint In .net(vb.net).how to do the effects and what are the controls and components needed.

View 1 Replies

.Net Powerpoint Not Showing In Viewshow?

Jun 2, 2011

I have developed a small application to call several powerpoint presentations. The user will enter the powerpoint number and the powerpoint will be shown in Viewshow form. However this is not the case. The powerpoints are showing in the normal powerpoint form where the users can edit the texts in the presentation even though the powerpoint presentation are saved as viewshow. Please help with the code to display powerpoint in VIEWSHOW form:(;(If this is displayed in a form is fine, part my working code is as shown below;

Imports PowerPoint = Microsoft.Office.Interop.PowerPoint
Imports Office = Microsoft.Office.Core
Imports Graph = Microsoft.Office.Interop.Graph

[code].....

View 4 Replies

How To Check For PowerPoint In Autorun For CD

Jun 25, 2010

How do I check to see if a user has Powerpoint 2007 or 2010 in the autorun for a CD, and download a reader if he does not? Can this be done in a VB script, or do I need to write a program to do this. My initial attempts tried using Fileinfo, but VB script does not recognise this class. This needs to be run on any user computer.

View 2 Replies

How To Make DVD With PowerPoint File On It

Oct 17, 2007

I am a graphic designer and not even close to being a programmer. I have to make a DVD that has a powerpoint file on it. What I would like is that when the user puts the DVD in the drive, it will automatically open up a launch window. The launch window will contain a background image and the icon to launch the powerpoint file will be the clients logo.

View 3 Replies

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

MS PowerPoint Slide Pane?

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

Powerpoint Slideshow Does Not End When Saved?

Jan 16, 2009

I have a little problem with an application I am developing. My application is supposed to save a powerpoint slideshow, which I have finish coding. The code is as follows,

Dim dal As New CreateDAL
Dim bll As New createBLL
Dim searchQuery As String

[Code]......

However, upon click the button which calls these codes, the powerpoint slideshow that is saved does not end when it is in slideshow mode. For eg, there is 5 slides, after reaching the 5th slide, it returns back to the 1st slide and repeats over and over again. I'll have to press the ESC key to end the slide show. Is there anyway to prevent this? Perhaps I'm missing a statement to make the ending slide the last side?

View 1 Replies

Applying Animation To Object In PowerPoint?

Apr 29, 2010

I tried applying an animation to an object in powerpoint through VB.NET. I'm only a beginner and have tried my best to figure it out with something like the following code which is two objects using one as the trigger. I managed to get it working in pptVBA but just can't get it to work in .NET. I keep getting an error COMException was unhandled.

Imports PowerPoint = Microsoft.Office.Interop.PowerPoint
Dim intereffect as powerpoint.effect
Dim oShape/sPic as powerpoint.shape
With oApp.ActivePresentation.Slides(1).TimeLine.InteractiveSequences.Add(1)
[Code] .....

View 2 Replies

Convert Powerpoint To Smart Notebook?

Mar 14, 2011

I downloaded VB because I was instructed to do so in order to be able to convert powerpoint files to smart notebook files.unfortunately, this does not seem to do the trick.

View 4 Replies

Create PowerPoint Presentations Using Program?

Jul 17, 2009

I am in the process of writing a program that takes a .xls file of raw data, runs some calculations on the data, and then creates appropriate tables and charts. It then copies the charts into a PowerPoint presentation, formats each slide correctly with all the necessary information and saves the presentation with a new file name. That part alone works fine and takes about 12 seconds for the whole process (its roughly a 12 slide presentation).

View 5 Replies

Create Powerpoint Slides Without COM Objects?

Apr 22, 2010

I want to make powerpoint slides with the data from sql server 2008

View 2 Replies

Found The Root Of The PowerPoint SpellChecker Bug?

Apr 12, 2012

In PowerPoint (2007 at least, but probably others), it refuses to spell check "some" text in some shapes.

I thought it was the type of shape, so changed them, this didn't fix it. So I did some experiments moving what I called "infected" text into a few boxes and saw that it was somehow attached to the text.

Taking a very simple file with known infected and uninfected sections I converted the .pptx to a .zip and opened .pptslidesslide1.xml In here text which won't spell check is inclosed with:

<a:rPr noProof="1" Text which is spelt ok, or had "ignore" pressed in inclosed with:
<a:rPr dirty="0" smtClean="0" ...
And missspelled text, that was found with:
<a:rPr dirty="0" smtClean="0" err="1" ...

I found and deleted all the noProof="1"s in the file, returned it to the countainer and opened the presentation. and everything spell check as I would expect it should, all errors in all boxes were found, without damaging the file. After saving it, I reopened the silde1.xml and found dirty="0" smtClean="0" or dirty="0" smtClean="0" err="1" in the correct places.

Now the question is, how do I use this new found knowledge to fix a file, without manualy exstracting all the slide#.xml files, opening them in a text editor and using "Replace" to fix them? That process of exstraction could be automated, but if it is possible to do from VBA within PowerPoint it would be easier.

View 2 Replies

IDE :: Code Of Opening Powerpoint Won't Work

May 23, 2010

how to use access to automate the process of opening the power point from the VBA code. So what it does is if the user clicks on the open button, the power point will open...The path and file of the power point have been set correctly.Here is the code for the button click, private sub:

Private Sub cmdAutomatePowerPoint_Click()
Dim strFileName As String
strFileName = "C:PracticeAccessVBA_Programming5Ws.ppt"

[code]....

But whenever I click on the button I got the error message, saying power point could not open the file.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved