public FormNewArticolo(string id):this()
{
//blabla
}
public FormNewArticolo()
{
[...]

Since it took me a while to find these 2 fonts (which are very useful for coding), i’ve uploaded them both to rapidshare mirror.
Link: http://rapidshare.com/files/24663204/DevFonts.rar

How To Group ListView Items

listView1.Groups.Add(new ListViewGroup(”List item text”,HorizontalAlignment.Left));
listView1.Groups.Add(new ListViewGroup(”Bla”, HorizontalAlignment.Left));
listView1.Groups[1].
[...]

Piccola funzioncina x conversione dei byte che mi sono dovuto fare per 1 progetto.
Funziona solo fino ai giga, per i terra aggiungete un paio di linee

public string convertByteInOther(string stBytes)
{
string ris=”";
[...]

public WebPageInterrogater(string url, string sFilters)
{
_url = url;
string[] filters = sFilters.Split(’;');
string pattern = string.Empty;
for (int i = 0; i < filters.Length; i++ )
{
pattern = "\\" + filters[i].Replace("*",string.Empty) + [...]

Conversione da System.byte[] in string
….
FbCommand cmd = new FbCommand(”select * from articoli order by nome asc”, db.GetConnection());
FbDataReader dr = cmd.ExecuteReader();
if (!dr.HasRows)
[...]