" She who loves roses must be patient and not cry out when she is pierced by thorns "  —  Olga Brouman

Posts Tagged  ›  C#

 

Binary String Conversion to Decimal and Hex Using C#

more...

microsoftnet-logoIf you need to convert Binary String to Decimal (Integer) and Hexadecimal, .NET Framework has conversion methods in Convert class to make numeric conversion easier. This class is located in Microsoft.VisualBasic library.

more...

 

Tutorial: Minimize Windows Mobile Application Form Using C#

more...

winmobileIn Microsoft .NET Framework application development, we can use a simple Minimize() method to minimize the application form to the Windows taskbar. But how to do that in Microsoft Windows Mobile environment is not as simple as that.

more...

 

Tutorial: Create A “Hello World” Application on Windows Mobile 6 using Microsoft .NET Compact Framework/C#

more...

winmobileThis tutorial shows you how to create a Hello World application for Windows Mobile 6. This tutorial purpose is to introduce Windows Mobile programming using Microsoft .NET Compact Framework (C#) and Windows Mobile 6 SDK Refresh.

more...

 

Koneksi server database MySQL dengan Connector/NET

more...

Contoh sederhana untuk membuat koneksi database dengan menggunakan MySQL Connector/NET. Connector/NET ini merupakan driver ADO.NET untuk server database MySQL yang 100% dibuat dengan menggunakan bahasa pemrograman C# (fully-managed) untuk .net Framework 2.0 di Microsoft Visual Studio 2005. Informasi lebih lanjut mengenai MySQL Connector/NET untuk Microsoft Visual Studio dan untuk mengunduhnya ada di sini.

Tambahkan namespace:

using MySql.Data.MySqlClient;
using MySql.Data.Types;

more...