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.
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.
A number can be formatted in a XAML binding.
To remove a header from a WPF ListView, a style needs to be created targeting the GridViewColumnHeader.
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.
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 [...]
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.
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 [...]
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.