Tag Archive

How to Connect to Exchange with the EWS Managed API

Published on 13 October , 2011 By bill

Introduction The Exchange EWS managed API is very easy to use but there are some hurdles that may make it a little hard to get started.

How to Make Outlook Web App Login Automatically with C#

Published on 10 October , 2011 By bill

Introduction It is easy to place a web browser component into an application and use the features of OWA (Outlook Web Application) as a built in organiser, contacts manager and email client.

How to Format a Number in a C# WPF Binding

Published on 27 September , 2011 By bill

A number can be formatted in a XAML binding.

How to Remove the Header From a C# WPF ListView

Published on 27 September , 2011 By bill

To remove a header from a WPF ListView, a style needs to be created targeting the GridViewColumnHeader.

Linux C# and GUI Tool Kits

Published on 22 September , 2011 By bill

Introduction With the introduction of Mono a while back, A large number of Windows only applications are being ported to Linux. The problem with C# at the moment in regards to GUI tool kits are the number of GUI tool kit bindings available and the cross platform ability.

How To Test an Apache Mono Server

Published on 28 August , 2011 By bill

Introduction After the Apache web server has been set up with mono, the next thing to do is check if it works. I have a simple project that I put on the web server to check if it is working. This article will show how to create a similar ASP web application in a few [...]

How To Create Callbacks in C#

Published on 27 August , 2011 By bill

Introduction Information can be sent from a class to a parent class. This can be done by setting up delegates. The delegate will describe the function and a parameter will let the parent class connect to it.

Converting a .net Object to a Byte Array and Back

Published on 23 August , 2011 By bill

To convert an object into a byte array and back to an object is quite simple. There are a few ways to do this, one way is to use a MemoryStream and BinaryFormatter to serialize the object into a byte array. The process in converting the byte array back into an object is quite similar, the [...]

C# Email Client With Embedded Images

Published on 27 June , 2011 By bill

  Introduction Sending and receiving emails in C# is quite easy for plain text emails but handling embedded images can be a little tricky. In this post I will not go into the basics of sending and receiving emails but deal with displaying and sending embedded images.