ms-office

OpenIdConnect Correlation Cookie not found when user click link from Office application

拜拜、爱过 提交于 2021-01-27 12:09:05
问题 I have an app that is authenticating with Azure Active Directory using OpenIdConnect. Everything is working fine except when I link to my site from a Office Application (excel/ word). From these applications I get a "Exception: Correlation failed.". From my research it seems to be that office is first doing the 302 redirect and then opening that page not the original link. See: https://github.com/aspnet/Security/issues/1252 After a recommendation for how to handle this scenario. I don't want

OpenIdConnect Correlation Cookie not found when user click link from Office application

落花浮王杯 提交于 2021-01-27 12:02:16
问题 I have an app that is authenticating with Azure Active Directory using OpenIdConnect. Everything is working fine except when I link to my site from a Office Application (excel/ word). From these applications I get a "Exception: Correlation failed.". From my research it seems to be that office is first doing the 302 redirect and then opening that page not the original link. See: https://github.com/aspnet/Security/issues/1252 After a recommendation for how to handle this scenario. I don't want

Are Access 2010 databases not accessible with Excel if password protected using default encryption (High Security)?

人盡茶涼 提交于 2021-01-27 07:28:00
问题 I am currently supporting an Excel 2010 spreadsheet and Access 2010 database that were written by business users. One of the requirements of the Access database is that it be encrypted. It was encrypted with the default encryption settings "Use default encryption(Higher security)" which can be set in Options -> Client Settings. Now that the database is password protected and encrypted, I am unable to connect to the database through Excel. My testing revolves around importing data into Excel,

Are Access 2010 databases not accessible with Excel if password protected using default encryption (High Security)?

人盡茶涼 提交于 2021-01-27 07:24:51
问题 I am currently supporting an Excel 2010 spreadsheet and Access 2010 database that were written by business users. One of the requirements of the Access database is that it be encrypted. It was encrypted with the default encryption settings "Use default encryption(Higher security)" which can be set in Options -> Client Settings. Now that the database is password protected and encrypted, I am unable to connect to the database through Excel. My testing revolves around importing data into Excel,

Are Access 2010 databases not accessible with Excel if password protected using default encryption (High Security)?

老子叫甜甜 提交于 2021-01-27 07:23:30
问题 I am currently supporting an Excel 2010 spreadsheet and Access 2010 database that were written by business users. One of the requirements of the Access database is that it be encrypted. It was encrypted with the default encryption settings "Use default encryption(Higher security)" which can be set in Options -> Client Settings. Now that the database is password protected and encrypted, I am unable to connect to the database through Excel. My testing revolves around importing data into Excel,

How to programmatically sign a binary MS office document with Java?

浪子不回头ぞ 提交于 2020-12-27 07:16:53
问题 How can we digitally sign a legacy binary MS-Office document (doc, xls, ppt) in Apache POI, or any other open source library? The Open XML formats are covered at How to programatically sign an MS office XML document with Java? 回答1: I was able to sign .doc file by creating detached xml signature, then adding it under root directory using POIFSFileSystem, example is below : public class OfficeDocumentSigner2 { public static void main(String[] args) { signClassicOfficeDocuments(); } private

How to programmatically sign a binary MS office document with Java?

我与影子孤独终老i 提交于 2020-12-27 07:16:24
问题 How can we digitally sign a legacy binary MS-Office document (doc, xls, ppt) in Apache POI, or any other open source library? The Open XML formats are covered at How to programatically sign an MS office XML document with Java? 回答1: I was able to sign .doc file by creating detached xml signature, then adding it under root directory using POIFSFileSystem, example is below : public class OfficeDocumentSigner2 { public static void main(String[] args) { signClassicOfficeDocuments(); } private

I want to highlight a word if it is not followed by another specific word using VB

无人久伴 提交于 2020-12-15 05:35:22
问题 So I'm a total newbie when it comes to using VB. I am trying to highlight a word when it is not followed by another specific word within the next two words. I tried the following code but it seems to just the first word. Many thanks in advance. Sub fek() ' ' ' ' Selection.Find.ClearFormatting With Selection.Find .Text = "n." .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = True .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms =

I want to highlight a word if it is not followed by another specific word using VB

橙三吉。 提交于 2020-12-15 05:35:12
问题 So I'm a total newbie when it comes to using VB. I am trying to highlight a word when it is not followed by another specific word within the next two words. I tried the following code but it seems to just the first word. Many thanks in advance. Sub fek() ' ' ' ' Selection.Find.ClearFormatting With Selection.Find .Text = "n." .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = True .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms =