inter-presentation communication

B

barn2003

hi

If you've launched a hyperlinked presentation is there
any way to call a function or retrieve the value of a
variable from the presentation that launched it.
 
S

Shyam Pillai

You can do in the following manner:
1. Create a function in the parent presentation that returns the value of
the variable.
Function GetVarValue()
GetVarValue=<VariableName>
End Function

2. Invoke that function from the hyperlinked presentation and it will return
the value.
MsgBox Application.Run("C:\Path\presentation1.ppt!module1.GetVarValue")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top