Programming :: Can't Get VBA Macro To Run In Powerpoint Slide Show

Aug 18, 2010

All I'm trying to do is ShellExecute a program every time a new slide appears.

I'm using Office 2003 Powerpoint.

I did the following:

1. Tools, Options, Security Options, Macro Security, Security Level= Medium

2. Tools, Options, Macro, VBA Editor:

Code:
Sub OnSlideShowPageChange(ByVal SSW As SlideShowWindow)
MsgBox ("OnSlideShowPageChange")
End Sub

3. File, Save

4. Back to PowerPoint: F5) Slide Show, View Show <= Did NOT see the message box

5. Exit out of Powerpoint, reopen the .ppt file, F5) again <= Still don't see the message box

why isn't "OnSlideShowPageChange" getting invoked when I run the slide show?

View 3 Replies


ADVERTISEMENT

Ubuntu :: Using Pptview From The Repositories To Show A Powerpoint File?

Oct 21, 2010

I'm using pptview from the repositories to show a powerpoint file, but when I'm connected to a projector, it insists on showing the show on my laptop screen rather than the projector.

View 1 Replies View Related

Ubuntu :: Put A Photo Slide Show In A Web Page?

Jan 18, 2011

I want to put a photo slide show in a web page I am creating. What is my best option? Want open source. I know CSS and HTML but am not a programmer. Need something fairly easy to install.

View 1 Replies View Related

Fedora :: Create Slide Show Movie With Sound?

Oct 7, 2010

actual GUI program, which allows to create slide show movie with sound?

View 14 Replies View Related

Ubuntu :: Desktop Wallpaper Slide Show Builder?

Jun 5, 2010

Any tools to assemble a set of images into a Gnome desktop wallpaper slide show -- like the Cosmos one in the default selection?I can see its a folder with the images and an xml file that controls the "playback". Presumably there is a reasonably easy tool to use to create my own short of reverse engineering the xml files.

View 7 Replies View Related

Ubuntu :: Red Circle Image On Desktop Slide Show?

Aug 17, 2010

When there has been no activity on my computer for a few minutes a slideshow of desktop backgrounds begins. Last week a new image was added: a red circle with a red diagonal line. It's like the "Don't go there" traffic sign. I have no idea where it came from.

View 2 Replies View Related

Ubuntu :: Create A Slide Show Of Background Images?

Oct 19, 2010

I would like to to create a slide show of background images, is there an easy way to do this? I would like the image to change roughly every 12hrs to 1 day

View 5 Replies View Related

OpenSUSE :: Annoying Tips In Libreoffice Impress Slide Show?

May 26, 2011

There's always some annoying tips showing in Libreoffice Impress slide show,like 'Click to select master text style','Second level' & 'Third level' on every slide,even in slide show mode.

View 1 Replies View Related

Ubuntu Multimedia :: Lives Basics Including Slide Show And Still Pics?

Dec 2, 2010

I downloaded Lives. It looks neat. I cannot figure out how to get still images to form like a slide show. I was able to open a short movie I have uploaded onto my pc from my digital camera. Edit -> Multitrack mode seems to be where multiple movies can be placed. I do not seem to be able to place the still images on here. Maybe I can and they just don't show up on the timeline well.

View 3 Replies View Related

Slackware :: Choosing Slide Show Picture Folder In Screen Saver

Jun 13, 2010

I select GLSlideshow in the KDE system settings, but there is no option to choose what folder I want to use. I have to open xscreensaver to do this. However, I don't want certain sub-folders being used and I can't seem to be able to blacklist those folders.

View 2 Replies View Related

Programming :: C++: Macro Not Defined In Quotes?

Dec 12, 2009

I converted my programming project over to autotools, which gives me a config.h file with all the cool definitions, like these ones:

Code:

/* Location of data files. */
#define DATADIR "/usr/local/share"
/* Define to the full name of this package. */
#define PACKAGE_NAME "lusus"

And naturally I think this is cool because then I can hardcore these into the binary. To my dismay, however, I discovered that the pre-processor does not do the text-substitution if the macro name is inside another quoted string.

Code:

// Prints out "/usr/local/share/lusus"
std::cout << DATADIR << "/" << PACKAGE_NAME << "
";

[code]....

This seems lame, because then this doesn't work:

Code:

CL_Image leaves_corner_tl(gc, "DATADIR/PACKAGE_NAME/img/leaves_corner_tl.png");

So, am I literally going to have to strcat DATADIR/PACKAGE with the other text every time I want to prefix DATADIR/PACKAGE_NAME onto another string?

View 2 Replies View Related

Programming :: How To Test Whether A Macro Is Defined

Mar 20, 2011

I've been reviewing some source code recently which contains many conditional compilation statements, and I found it hard to understand the code not knowing whether some macro is defined or not. Is there any way to test whether a macro is defined?

View 2 Replies View Related

Programming :: Append Item To A List ( C Macro )?

Apr 13, 2010

I have my own declared types and I have to operate with lists of items. I wish to write a one macro, instead of using a function for each type. It's intended to be like this: Code: #define ____append_to_list(head,

item, type)
type* ptr;
for ( ptr = head; ptr->next != NULL; ptr = ptr->next )

[code].....

View 9 Replies View Related

Programming :: Integrate A MACRO Command In Open Office?

Dec 3, 2010

integrate a macro from MS Word to Open Office? It is a script I need for music. I cannot upload the file here nor give you the link, because I'm not let.

View 9 Replies View Related

Programming :: Macro To Access Kernel Objectys Structure?

Jan 29, 2011

telling the exact macro name and location, by which I can gain control over the following kernel base level structure

1. strct super_block of Virtual File System, for super block object.
2. strct inode for inode ofject of VFS.
3 file structure for file object of VFS.

in addition to these if you know location to access other kernel structure.Please let me know.My main objective is to get the access to the structure pointer of these structure by which i can have access over the individual fields o these structure.

View 11 Replies View Related

Programming :: Macro To Get Base Address Register In Configuration Space?

Nov 21, 2010

I am trying to understand working of pci_resource_start function So I browsed code via cscope and searched for string pci_resource_start and got following in pci.h

Code:

#define pci_resource_start(dev, bar) ((dev)->resource[(bar)].start)

I am not able to understand how does this above macro works. How does it above macro gets appropriate base address register in configuration space?

View 1 Replies View Related

Programming :: Convert Macro Defined Functions From Kernel In Visual C++?

Jun 27, 2009

I am dealing with some Linux kernel code, which define most its functions with Macros.The trouble I am having is to use those code in user space in Windows.

For example, I have a function defined like this:

#define list_for_each_entry_safe(pos, n, head, member)
for (pos = list_entry((head)->next, typeid(*pos), member),
n = list_entry(pos->member.next, typeid(*pos), member);
&pos->member != (head);
pos = n, n = list_entry(n->member.next, typeid(*n), member))

And in user space code, I call it in this way:

list_for_each_entry_safe( pcre_item, tmp,
&(((pcre_list_head_t *)(hr.value))->head), list)
{
// My code to handle each element in the list
}

This is working like a charm in Linux, but I got errors in Windows:

It reminds me missing ';' after 'list_for_each_entry_safe( pcre_item, tmp,
&(((pcre_list_head_t *)(hr.value))->head), list)'.

Does this kind of linux code not working in Windows at all? (Linux is in GCC C stand and VC is ANSI C) I prefer not to convert them to normal functions but keep it the way if it could be working under windows by some tricks.

View 5 Replies View Related

Programming :: Bignum Library And 'BN_ULONG' Macro: Not Declared In Bignum.h!

Sep 17, 2010

I recently was pointed to [URL] in another thread and ran into a problem: What header file do I need to download to write the code in the documentation? Apparently no 'bignum.h' file on the Internet declares the "BN_ULONG" macro or "BN_BITS2" bit chunks.

View 1 Replies View Related

Applications :: Convert Powerpoint To Movie?

May 29, 2010

I wanted to upload a powerpoint presentation to ..... but apparently it needs to be converted to a video format first.Does anybody know of a linux based free software that can help me achieve the purpose please?here seems to be a few on the net but they are for sale. I'm afraid I am not ready to spend for this particular feature at the moment

View 1 Replies View Related

Slackware :: Open A *pps Powerpoint File?

Aug 3, 2010

What is the issue with slackware to open a *pps powerpoint file.I use Slack32.13Can't find any application in standard.Is there something in the slackbuils ?Don't want to install the whole Office

View 3 Replies View Related

General :: Finding A PowerPoint Presentation Software?

Aug 7, 2010

I was looking for a descent powerpoint presentation software for Linux. I am seriously not bugged up with openoffice presentation tool. I am not looking for Microsoft Office or Apples's iWork.

View 3 Replies View Related

Ubuntu :: Saving Open Office To Powerpoint?

Feb 28, 2010

I need to have a video in a powerpoint like presentation. I make the presentation with Impress, open office, save as a .ppt and when i close it and open it again, the video isn't there.

View 1 Replies View Related

General :: Microsoft Powerpoint - Convert .png Images Into A .ppt Presentation?

Apr 20, 2010

I've created a presentation as a series of .png images, one per slide. What is a good way to convert these into a .ppt (PowerPoint) that I can give to some audio-visual person? I'm entirely on Linux, with no Windows or Mac software available.(Or maybe PowerPoint isn't the only game in town for presentation file formats?)

View 4 Replies View Related

General :: Word Processor And Powerpoint Viewer/Maker ?

Feb 20, 2011

I have started using linux again and the programme that used to come with Suse back in 2003 was called "open office" since this is 2011 and im now using Ubuntu which suits me much better I need a word processor that can support .doc or create files that I can then open and edit with Microsoft word in university. Is there any word processor out there that sounds like what im looking for?

Lastly I also need atleast a PPT viewer to see my lecture slides and a program that can make powerpoint presentations or can be used and edited with Powerpoint would be great for my presentation work.

View 4 Replies View Related

Ubuntu :: Open Office 3.2 Wont Play Sounds Of The PowerPoint Presentations?

Jul 1, 2010

i wonder if there is an incompatibility or just a config to do, to get the soudn enabled when playing ppt within Open Office

View 4 Replies View Related

Hardware :: What Slide / Negative Scanner?

Nov 29, 2010

I'd be grateful if anyone could recommend any scanners that will take 35mm - and ideally the old 120/620 and 127 formats! - transparencies and negatives to digitise our old memories and family history.I'm in the UK and the machines use Ubuntu.

View 3 Replies View Related

OpenSUSE :: Record A Macro In Libreoffice?

Jun 15, 2011

I recently noticed that my libreoffice doesn't have the "Record Macro" voice that used to be in OpenOffice Tools -> Macros. Is that normal or have I installed libreoffice incorrectly?

View 6 Replies View Related

Ubuntu :: Make A Macro That Will Log In On A Website

Nov 10, 2010

I am looking to make a macro that will log me in on a website whenever I connect to the internet. Specifically, this macro has to input a username and password, and then press the login button. Is there any way to do this?

View 1 Replies View Related

Software :: Macro For Keyboard And Mouse?

Feb 23, 2010

I'm currently using a version of scientific linux with X windows. Is there a program I can use to set the mouse and keyboard to go through a series of commands and loop? there's a program I'm using for my research and to go into the inner workings of it to set up a script to run it will be very difficult.Instead, just having the keyboard and mouse loop through some commands would be much easier.

View 1 Replies View Related

Fedora :: How To Get Film And Slide Scanner Working

Oct 1, 2010

Just acquired a slide/negative scanner (Traveller TV6500) which is reputed only to work under Winderz. Anyone know of a way to get it to run under Fedora 12?

I'm running
Linux Fedora-Blue 2.6.32.21-168.fc12.i686 #1 SMP Wed Sep 15 16:25:04 UTC 2010 i686 athlon i386 GNU/Linux
lsusb shows
Bus 001 Device 019: ID 05a9:1550 OmniVision Technologies, Inc. VEHO Filmscanner

I've tried running it in a VirtualBox Windows XP, but it doesn't appear to work - goes off & churns but doesn't appear to get a picture back.

View 1 Replies View Related







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