-
Encompass Best Practices for Development and Deployment
Read This Post: Encompass Best Practices for Development and Deployment -
Windows 10 and lein self-install fails on Powershell – Solved
Read This Post: Windows 10 and lein self-install fails on Powershell – SolvedI am starting to learn Clojure and wanted to set up Leiningen on my Windows 10 professional. Here is how I solved the Windows Security problem that was preventing me from downloading the github zip file needed. Here is hoping that someone finds this solution helpful. Using PowerShell running as Administrator, I was having trouble getting…
-
Outlook Redemption (Redemption.dll) and Background Threading do not mix.
Read This Post: Outlook Redemption (Redemption.dll) and Background Threading do not mix.Outlook Redemption is a very nice library which allows access to many Outlook functions many of those not exposed via the Outlook object model. We are currently using Redemption in our application to add outlook appointments with reminders, pop email messages with pre-populated information, etc. We wrapped the Redemption.dll into our own Singleton class and…
-
ClickOnce Deployment Architecture
Read This Post: ClickOnce Deployment ArchitectureWhile continuing my research and learning of ClickOnce deployment, I came across a very interesting page that explains Click Once Deployment Architecture. The article describes how a ClickOnce installation is physically installed on a client computer. Application Publication Each application publication has: A deployment manifest – A deployment manifest is an XML file that describes…
-
2011 Daytona 500 – NASCAR 14 Car Crash –
Read This Post: 2011 Daytona 500 – NASCAR 14 Car Crash –Trevor Bayne gave Wood Brothers Racing team their first Daytona 500 victory since 1976 and only the fourth overall victory in the last 20 years.
-
ClickOnce Deployment – Deploying multiple versions of the same application
Read This Post: ClickOnce Deployment – Deploying multiple versions of the same applicationAccording to Wikipedia, ClickOnce is a Microsoft technology that enables the user base to install and run a Windows Application by clicking a link in a web page. ClickOnce is a component of Microsoft .NET Framework 2.0 and later and it supports deploying applications made with Windows Forms or Windows Presentation Foundation. ClickOnce attempts to…
-
WPF coding mutually exclusive Check Boxes with Data Binding
Read This Post: WPF coding mutually exclusive Check Boxes with Data BindingLast week I was coding a View that required for me to show two ChekBox controls which were mutually exclusive in the same way that two or more RadioButton controls that belong to the same group would interact. My problem was that one Boolean property which came from a bit column in the database needed…
-
Creating a Singleton (Instance) Class in C#
Read This Post: Creating a Singleton (Instance) Class in C#In application development there are various situations in which it makes sense to code a class in a manner that it can be created (instantiated) once and used throughout the lifetime of the application. Generally this type of class is called a Singleton object. When creating and object, CPU cycles are used up during the:…
-
Include Application Name in Connection Strings
Read This Post: Include Application Name in Connection StringsIn addition to the SQL Server, Database, User ID and Password, you may want to include the Application Name in your connection string parameters. Application Name is an optional argument, but it can greatly help you to segregate the SQL that your application is executing from any other database calls that are being sent from…