Get the Storage location of Powerpoint add-ins Mac - vba

I have to add the powerpoint Add-in to Powerpoint Mac from my cocoa application.I already adding the .ppam file from my cocoa application through below code
NSString *pluginPath = [[NSBundle mainBundle] pathForResource:#"Kahani2016" ofType:#"ppam"];
[[NSWorkspace sharedWorkspace] openFile:pluginPath];
Its working with most of powerpoint.
We can view the added powerpoint add-in from powerpoint
But some systems Its showing below error message
I am trying to fix this issue. I tried to fix this issue by adding digital signature with .ppam file . but its not help to solve the issue.
I just confused because I tried to recreate this issue in another machine with same OSX and Powerpoint version but its working fine in another machine.
My configurations
Powerpoint 15.29.1 Mac
So if I get the location of the powerpoint-Addin , then I can try to copy my add-ins to the location and fix the issue.

Related

Unable to find my outlook addin on Android and IOS outlook app

Our manifest file for an Office 365 Outlook recently got approved and added to the office store.
When I try to look for our add-in under the Add-ins section on either Outlook for Android or Outlook for iOS, the add-in isn't visible.
Interestingly it shows up on these apps if added previously from Outlook for Web.
Notes:
During submission, we tick marked both Android and iOS and supplied Apple Dev Id.
The manifest file contains the MobileFormFactor tag.
The minimum requirement set in manifest file is 1.5 (supported for Outlook for iOS / Android)
Appreciate any advise on what I might have missed.

Xcode 9: How do I re-associate a project with a workspace?

I am working on a workspace that contains my project and my CocoaPods. I keep the whole thing on iCloud and work on it from my desktop and laptop. Everything has been working fine until recently when the workspace shows my project files on my desktop but not on my laptop. All of the pods appear on both devices.
Importantly, all of the project files are still there on my laptop and continue to sync perfectly with my desktop over iCloud:
I know this problem was caused by using iCloud for syncing. The question is how do I re-associate the project with the workspace on my laptop so I can continue to work on my app from both devices.
I figured it out. It seemed risky at first but it worked. I am posting the solution here in case someone else has the same dilemma. Back up everything before you attempt.
On the laptop, in the navigator pane, I clicked on '+' and selected
'add files to ...'. Then I selected my project file within the
project folder and added it. This added the project back to my
laptop, but I ended up with 2 copies of the project on my desktop
computer associated with one workspace.
On the desktop computer, I deleted one of the projects and sent it
to trash. Both copies of the project disappeared in the project
navigator.
On the desktop computer, I opened my trash and dragged the project
file back into the project folder. The project then showed up in
the navigation pane.
Everything is now working perfectly on both computers and I can continue to use iCloud to work on my app from either device.

how to fix 'MobileCoreServices/MobileCoreServices.h' file not found error in winobjc

I want to port my ios app to windows desktop app using winobjc.
I imported my xcode project using vsimporter.exe, and tried to build it.
But it displays error" 'MobileCoreServices/MobileCoreServices.h' file not found".
How to fix it?

VB.Net - Play file extension that does not match the file format?

I'm creating an app in VB.NET windows form Application..
On my App I have Media Player Library and I am playing .mp3 files, now I change the extension of my files into .albs to be little realistic with my app name..
But after i change the extension and when I try to play files I get this:
When i click Yes app continues to work perfectly and to play my files...
When I click "Don't ask me again for this extension (.albs)." app works well..
What I need ?
I need to hide this windows, so when I install my app to other PCs I don't want this window to be opened..
So is anyway to stop this before it opens..
for example any .reg file to register the extension..
or some code to register in app or something else.. ??
Any help will be appreciated...

Flash file as OSX screensaver using xcode

I'm trying to create a screensaver from an SWF file for mac.
Unfortunately I'm not sure how to get started. I've looked on the internet for hints on how to do this but with no success.
Does anyone know how I can get an SWF file as screensaver with xcode, or possibly another option?
Get started by:
1) Get a basic screen saver working from the sample code or tutorial like this:
http://cocoadevcentral.com/articles/000088.php
2) Get your SWF file going in a basic Mac app ( Maybe use a web view?).
3) Merge the two together.