ddkonline.blogspot.com
David Klein's Corner: August 2012
http://ddkonline.blogspot.com/2012_08_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Friday, 10 August 2012. Using Reflection to Force Evaluation of Parameterized Static Methods on Controls without requiring an Instance to be Loaded. At my current Telecommunications client, we have been using EpiServer CMS and associated frameworks (essentially ASP.NET webforms) to develop their website. We have the concept of "Accordion". A code snippet of the meat of the method is as below:. Public static bool GetIsAccordi...
ddkonline.blogspot.com
David Klein's Corner: January 2015
http://ddkonline.blogspot.com/2015_01_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Friday, 23 January 2015. How can I easily have different app.config files for different build configurations in MSBUILD? 1) Unload your Project file (csproj) file in Visual Studio and Right click and select "Edit {My Project Name}.csproj" on that same file to edit it. None Condition=" '$(Configuration)' = 'Debug' " Include="Debug App.config" / None Condition=" '$(Configuration)' = 'Release' " Include="Release App.con...When ...
ddkonline.blogspot.com
David Klein's Corner: November 2014
http://ddkonline.blogspot.com/2014_11_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Monday, 17 November 2014. SQL Server Database Projects and Visual Studio 2012, 2013 - Why Doesn't My DACPAC Post-Deployment Script Run? SQL Server Database Projects are a new feature from Visual Studio 2012 onwards. I noticed today that every time I built my project, it would include the wrong post-deployment SQL script file inside my DACPAC - so my reference tables were not populated with data correctly. Links to this post.
ddkonline.blogspot.com
David Klein's Corner: April 2015
http://ddkonline.blogspot.com/2015_04_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Monday, 20 April 2015. Microsoft Team Foundation Server 2013 Update - Error When Installing - "SQL Server Reporting Services is configured to require a secure connection.". You may get the following exception when upgrading to Team Foundation Server 2013 (TFS 2013) or update packages - when you are using self-signed certificates or your SQL Report server runs unsecured (not using SSL):. File This is typically in:. Harvard Bu...
ddkonline.blogspot.com
David Klein's Corner: Microsoft Team Foundation Server 2013 Update - Error When Installing - "SQL Server Reporting Services is configured to require a secure connection."
http://ddkonline.blogspot.com/2015/04/microsoft-team-foundation-server-2013.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Monday, 20 April 2015. Microsoft Team Foundation Server 2013 Update - Error When Installing - "SQL Server Reporting Services is configured to require a secure connection.". You may get the following exception when upgrading to Team Foundation Server 2013 (TFS 2013) or update packages - when you are using self-signed certificates or your SQL Report server runs unsecured (not using SSL):. File This is typically in:. Http:/ www...
ddkonline.blogspot.com
David Klein's Corner: May 2014
http://ddkonline.blogspot.com/2014_05_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Wednesday, 14 May 2014. China, Hong Kong and Macau Trip 2014. Arrived home this week after a lengthy trip around Hong Kong, Macau and China. Went with the family including dad this time. We saw some truly jaw-dropping scenery this time round. See below. 1) China - The clouds curling around Huangshan (Yellow) Mountain and the Extremely Steep Steps. Fairy Bridge (ahem. I'm not the fairy.). Lisa and I had been to the Badaling s...
ddkonline.blogspot.com
David Klein's Corner: How can I easily have different app.config files for different build configurations in MSBUILD?
http://ddkonline.blogspot.com/2015/01/how-can-i-have-different-appconfig.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Friday, 23 January 2015. How can I easily have different app.config files for different build configurations in MSBUILD? 1) Unload your Project file (csproj) file in Visual Studio and Right click and select "Edit {My Project Name}.csproj" on that same file to edit it. None Condition=" '$(Configuration)' = 'Debug' " Include="Debug App.config" / None Condition=" '$(Configuration)' = 'Release' " Include="Release App.con...When ...
ddkonline.blogspot.com
David Klein's Corner: SQL Server Database Projects and Visual Studio 2012, 2013 - Why Doesn't My DACPAC Post-Deployment Script Run?
http://ddkonline.blogspot.com/2014/11/sql-server-database-projects-and-visual.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Monday, 17 November 2014. SQL Server Database Projects and Visual Studio 2012, 2013 - Why Doesn't My DACPAC Post-Deployment Script Run? SQL Server Database Projects are a new feature from Visual Studio 2012 onwards. I noticed today that every time I built my project, it would include the wrong post-deployment SQL script file inside my DACPAC - so my reference tables were not populated with data correctly. We have developed a...
ddkonline.blogspot.com
David Klein's Corner: March 2014
http://ddkonline.blogspot.com/2014_03_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Monday, 10 March 2014. FIX - Millions of Files Keep Clogging Up My System in Windows System32 config systemprofile AppData Local Microsoft Windows Temporary Internet Files Content.IE5. It turned out that the problem was that I had left the .NET Fusion Log Viewer Setting to "All Binds" - and all the HTML files being created in that temporary directory were actually just log bind text files. Et Voila. No more problem. I also c...
ddkonline.blogspot.com
David Klein's Corner: May 2013
http://ddkonline.blogspot.com/2013_05_01_archive.html
The Musings and Findings of Software Consultant David Klein (Sydney, Australia). Friday, 3 May 2013. SharePoint 2013 - Delegate Controls - Beware of throwbacks to the SharePoint 2010 14 Hive. A delegate control is registered through an Elements.xml with a ControlSrc property pointing to your custom delegate control. Xml version="1.0" encoding="utf-8"? Problem is, the above code will work in SharePoint 2010 but NOT in SharePoint 2013. You will get an exception like the following:. Rather than the 15 Hive ...