I’m developing an Android application where the user must be able to send a file stored on the SD Card to a specific e-mail address. By using Android’s Intent class this is very easy. The following code snippet will bring up an e-mail application choose dialog. String filename = "file://" + Environment.getExternalStorageDirectory() + "/file.txt"; String [...]
Posts under ‘Development’
Possible solution for NHibernate many-to-many criteria
How to query an NHibernate many-to-many relationship.
Using log4net to show NHibernate SQL in Visual Studio
Configure log4net in order to show NHibernate SQL queries in Visual Studio’s console.
CodeIgniter simple CRUD improved
Add sorting in a simple CRUD with CodeIgniter.
Using NUnit in Visual Studio 2010
How to use NUnit in Visual Studio 2010.
Unit testing in Watir
Write a simple unit test in Watir
Type conversion in C#
Type conversion in C#
Using Rhino Mocks to mock a void function
Using NUnit and Rhino Mocks to create an expectation for a void function.