Showing posts with label open. Show all posts
Showing posts with label open. Show all posts

Monday, March 2, 2015

Windows Phone 8 1 ActiveSync Error 86000106 with Open XChange groupware

My Windows Phone 8 OS-Version: 8.10.12397.895 startet to throw error 86000106 when syncing with my companys Open-XChange groupware server.

Found similar issues described in a forum, but that did not help for me:

http://answers.microsoft.com/de-de/winphone/forum/wp8-wpemail/fehler-bei-active-sync-fehler-86000106/a69fb145-29d2-4c12-8730-7ecbd389787e?rtAction=1404212848646

https://mailbox.org/windows-phone-8-1-fehlermeldung-beim-synchronisieren/

The fixes suggested to change sync interval from "based on usage" to "manual".

How-I-fixed-it:
I deleted the particular Exchange ActiveSync Account on my phone and added it again. The account syncs OK since this.



Read more »

Sunday, March 1, 2015

Cant open sqlproj with Visual Studio 2012 Install SQL Server Data Tools

I recently updated to Visual Studio 2012 Ultimate.
When i tried to open an existing SQL Server SQLCLR Project (*.sqlproj), it says that the sqlproj is incompatible with the version I am running.

How-i-fixed-it:
 
 
I installed the SQL Server Data Tools from http://msdn.microsoft.com/en-us/data/tools.aspx.

I found the solution here:

http://stackoverflow.com/questions/11906691/visual-studio-2012-csproj-and-sqlproj

and here:
http://www.comoke.com/index.php/2012/10/visual-studio-2012-database-project-sqlproj-project-type-not-supported/

and here:
http://blog.tentaclesoftware.com/archive/2013/02/11/visual-studio-2010-and-2012-sqlproj-interoperability.aspx
Read more »

How to create a hyperlink URL to open a specific page in a PDF file

I was wondering, how i can link to a specific page in a PDF file openend in the browser.

How-I-fixed it:

Heres the AdobeManual on PDF opening Parameters for command line and URL:
http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf

 
Specifying parameters in a URL
 
You can specify multiple parameters in a single URL. Separate each parameter with either an ampersand (&) or a pound (#) character. Actions are processed and executed from left to right as they appear in the URL.
 Because all specified actions are executed, it is possible that later actions will override the effects of previous actions, so it is important to use the correct order. For example, page actions should appear before zoom Actions.
Commands are not case sensitive except for the value of a named destination. There can be no spaces in the URL.

 

 
URL examples



http://example.org/doc.pdf#Chapter6

http://example.org/doc.pdf#page=3

http://example.org/doc.pdf#page=3&zoom=200,250,100

http://example.org/doc.pdf#zoom=50

http://example.org/doc.pdf#page=72&view=fitH,100

http://example.org/doc.pdf#pagemode=none

http://example.org/doc.pdf#pagemode=bookmarks&page=2

http://example.org/doc.pdf#page=3&pagemode=thumbs

http://example.org/doc.pdf#collab=DAVFDF@http://review_server/Collab/user1

http://example.org/doc.pdf#page=1&comment=452fde0e-fd22-457c-84aa-2cf5bed5a349

http://example.org/doc.pdf#fdf=http://example.org/doc.fdf
 
URL limitations
Only one digit following a decimal point is retained for float values.
Individual parameters, together with their values (separated by & or #), can be no greater then 32 characters in length.
You cannot use the reserved characters =, #, and &. There is no way to escape these special characters.

If you turn bookmarks off using a URL parameter when a document had previously been saved with bookmarks on, the bookmark scrollbars are displayed at first, and only disappear once Acrobat obtains enough streamed information to render the full page.
Read more »