I'm trying to create a <FormSettings> based outlook add-in which will NOT look like a button but a link which will open up as a form.
I'm facing some issues related to outlook mobile add-in. <FormSettings> isn't loading up on mobile add-in list.
I tried to add <MobileFormFactor> and <ExtensionPoint xsi:type="MobileMessageReadCommandSurface"> but because of this I had to add VersionOverridesV1_1 & VersionOverridesV1_0 not only this I had to add <DesktopFormFactor> in VersionOverridesV1_0.
Not my add-in isn't loading up on outlook mobile app but I can see it in the add-in list.
Any tips what i"m doing wrong or where I can find relevant help or a sample code which works around <FormSettings> .
Related
Developed an outlook web addin using VS 2022, used custom icon which is only visible through web but not on desktop outlook client. How to make it visible on the outlook client?
any idea or solutions are welcome, thanks
manifest Icon code:
<IconUrl DefaultValue="~remoteAppUrl/Images/icon64.png"/>
I have tried changing it, clearing cache, re publish & redeploy locally Everything works when I run it in chrome, The icon and ribbon changes in browser but it is not reflecting in desktop outlook client
You need to specify the absolute full URL in the manifest.
The IconUrl element allows specifying the full, absolute URL of the image that is used to represent your Office Add-in in the insertion UX, AppSource, and the vertical task pane tab bar.
I can confirm that it works on my side in outlook desktop. Try clearing the browser and application cache, see Clear the Office cache for more information.
I have created an O365 group which comes with a default calendar. I also created a sample Outlook add-in to be displayed on the Appointment Surface adding the following in my manifest.xml -
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
After enabling this add-in in my Outlook desktop application (Windows 10), it doesn't appear on the Appointment surface of my O365 group calendar. Although it appears on my primary calendar's appointment surface.
Am I missing anything here?
Currently the feature: addin in group calendar, you requested, is not a part of the product. We track Outlook add-in feature requests on ourĀ user-voice page. Please add your request there. Feature requests on user-voice are considered, when we go through our planning process.
https://officespdev.uservoice.com/forums/224641-general/category/131778-outlook-add-ins
i am working on MSCRM 2016. The problem is "how to display main form for tablet or mobile phone?" every time it's loading quick create form.
Are you using a browser or the Dynamics CRM app on mobile/table?
You can try disabling quick create in the entity customization or try inactivating the quick create form and see what shows up on mobile/table.
I am new in Windows Phone app development.
I have just created an app which deals with image processing.
I want to add my app to the list shown in the photo gallery and could not find a way to do it.
It would be great if anyone could help me.
You can edit the WMAppManfiest.xml file using XML Editor. Add Extensions after the Token element. And Insert extension of Photos_Extra_Hub into extensions.
<Extensions>
<Extension ExtensionName="Photos_Extra_Hub"
ConsumerID="{5B04B775-356B-4AA0-AAF8-6491FFEA5632}"
TaskID="_default" />
</Extensions>
So your app will appear on the Photo Hub Apps. If you want to edit your picture by your app in WP8. You can read Extending the photo edit picker for Windows Phone 8
I want to include the option to share some acutivies of my WP7 app on facebook. For this I have downloaded the Facebook C# SDK and I'm currently over the authentication phase.
I have followed the WP7 example but then I run the app the login button of the facebook page isn't working. Is this a bug in my code, in the facebook sdk or a facebook bug?
I have uploaded a test project to my SkyDrive account.
Thanks for the help.
Best regards,
Ralf
Change the WebBrowser definition (in XAML) to this:
<phone:WebBrowser Grid.Row="1"
Name="FacebookLoginBrowser"
Navigated="FacebookLoginBrowser_Navigated"
LoadCompleted="FacebookLoginBrowser_LoadCompleted"
IsScriptEnabled="True" />
The last item is the key. WP7's WebBrowser control defaults to having scripting off. Facebook login requires it.
(Please mark me as the answer if it solves your problem.. it worked for me)
You may have run into a Visual Studio bug (or your folders were not packaged up properly and I am the only one seeing this ;). Try this:
Launch notepad, and edit `FacebookTest\FacebookTest.csproj' (as a text file)
Halfway down in the file, the is an <ItemGroup> containing <Reference ...> tags
Add a reference <Reference Include="mscorlib" />
Save, (re)start Visual Studio
At this point, I was able to build your code, but deploying and running may require additional steps.
This is the exact behavior I saw when I trying to authenticate with the C# Facebook SDK in Windows Phone 7. When you load Facebook's auth page into a BrowserControl a page loads with a button, but tapping on the button does nothing - the page with the token in the never loads (in contrast with my nearly identical WPF project).