Archive for Settembre 12th, 2007

Class Inheritance with PHP

Settembre 12th, 2007

There are many benefits of inheritance with PHP, the most common is simplifying and reducing instances of redundant code. In this article you’ll work with PHP 5 and Object Oriented Programming (OOP) to create a scalable application. By Kris Hadlock. 0912

Wybór wiersza w tabeli

Settembre 12th, 2007

Description: Akcja wywolywana podczas zaznaczenia nowej pozycji w wierszy Tabeli Hydra

Link: http://www.codekeep.net/snippets/42ccd9dc-c6ff-4452-83bc-c9a39e3fa4e1.aspx

m_Lista.OnAfterNewSelection += new TakeEventDelegate(m_Lista_OnBeforeItemSelection)

GetControl

Settembre 12th, 2007

Description: Pobiera namiary na kontrolke w Hydrze

Link: http://www.codekeep.net/snippets/b0ee4468-e4a6-4199-8725-8e99333c61ff.aspx

ClaWindow m_Kontrolka=GetControl(Rodzic.AllChildren["?TabOgolne"].Id);

Add newline in Textbox

Settembre 12th, 2007

Description: Uses Environment.Newline

Link: http://www.codekeep.net/snippets/a8425475-4d9c-44b6-82c0-4ca5521221e7.aspx

textBox1.Text="First Line" + Environment.NewLine + "Second Line";