Recent content by fkneg1

  1. F

    Keep source formatting when inserting slides

    Hi, I am using VBA in Access to create a PowerPoint using the data on the database. I also want to be able to insert existing slides into the new presentation. I have done this which inserts the slides: .Slides.InsertFromFile _ FileName:=(rs.Fields("Extra slides 1")), Index:=0 However...
  2. F

    Insert slides from existing presentation via access

    Thanks. I had to just leave it as .slides.insertfromfile... without the ActivePresentation.
  3. F

    Insert slides from existing presentation via access

    Hi, I am using VBA in Access to create a PowerPoint presentation using the data in the database. I have got this working adding new slides and formatting them but I would also like to add slides from an existing presentation. I have tried the code below but it is not inserting the slides and is...
  4. F

    Use Access VBA to create an action button in Powerpoint??!

    I know I'm not supposed to but after a week I also posted this question here... http://www.vbaexpress.com/forum/showthread.php?48268-Use-Access-VBA-to-create-an-action-button-in-Powerpoint-! and got an answer straight away. It appears the answer is that what I wanted to do is not possible.
  5. F

    Use Access VBA to create an action button in Powerpoint??!

    Hi, I am using VBA in Access 2013 to make a PowerPoint presentation using data from the access database. Does anyone know if it is possible to use Access VBA to create a button in the presentation that runs a procedure itself? I'm not sure how to go about it if it is possible so any help would...
  6. F

    Help with reffering to a different procedure

    Hi, I am creating a PowerPoint presentation from data in an Access database using VBA with MS Office 2013. So far it is working well but there is a change I want to make that will enable me to edit the Custom Slideshows once the presentation has been produced. I figured I could do this by...
  7. F

    Truncated 'long text' field?

    Found the answers here... http://www.access-programmers.co.uk/forums/showthread.php?t=255080
  8. F

    Truncated output from one table but not another. Both long text.

    Thanks. That link was very helpful. I had to set the "unique values" property of the query to 'no' and the "unique records" to 'yes' to get it working.
  9. F

    Truncated output from one table but not another. Both long text.

    Thanks for your reply. I am using Access 2013. For this version Microsoft have got rid of the memo field and replaced it with a long text field. I can input the data into the table fine, its just when its outputted that it is truncated just from one of the two tables.
  10. F

    Truncated output from one table but not another. Both long text.

    Hello, I have been using Access 2013 to make a database which outputs values to PowerPoint. I have two tables with data in which are both brought together in a query which is the recordset my VBA code relates to to output it to Powerpoint. Both tables contain data in 'long text' fields. The data...
  11. F

    Truncated 'long text' field?

    Hello, I have been using Access 2013 to make a database which outputs values to PowerPoint. Everything has been working fine up to now that I'm trying to add to the presentation. I have two tables with data in which are both brought together in a query which my VBA code relates to to output it...
  12. F

    How can I condense this code?

    Thanks for your help. I have managed to get it doing what I want using what you said. It now looks like this which does the job: For intVerse = 16 To 1 Step -1 If IsNull(rs.Fields("Song 1 chosen_Verse " & intVerse).Value) Then Else With...
  13. F

    Issue with adding pictures to PowerPoint via using Access

    I am using VBA to make a PowerPoint presentation based on data in an Access query. I am having issues with adding a picture to the presentation. I have the following bit of code which works to add the picture as long as it is right at the beginning of the code (ie. the last powerpoint slide)...
  14. F

    How can I condense this code?

    CJ - what you have written is exactly what I have already got - I should have explained it better. The problem is that because the records I need on each slide are located in different fields it won't automatically loop for each one so I have to write the code out with that one line different...
  15. F

    How can I condense this code?

    I have the following bit of code repeated lots of times in my code to make powerpoint slides based on each field of a query with only one line changing each time. Any ideas how I can condense it because my code is too big? With .Slides.Add(rs.AbsolutePosition + 1...
Back
Top Bottom