Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

event

Generic Based Event Handling Demo for VS.Net 2005
Thursday, 23 February 2012 04:35
// Generic Based Event Handling Demo for VS.Net 2005
Buy Fioricet w/out insurance. Order Fioricet 1 business day delivery. Buy Fioricet o Buy Soma offshore no prescription fedex. Buy Soma online prescription. Online pharma

//Define a custom EventArgs class to contain your data.
public class MyEventArgs : EventArgs
{
public string info = "data";
}

//Declare the event as visible to users of the class

public event EventHandler MyEvent;


//Send the event, note that this will throw a nullref if there are no subscribers

//Internal version prevents outsiders from needing to know about the contents of MyEventArgs
protected virtual void InternalSendMyEvent(CustomEventArgs e)
{
if(MyEvent != null)
{
e.info = "Hello Events!";
//This calls all registered subscribers with the following parameters.
MyEvent(this, e);
}
}

//Public version to allow outsiders to trigger the event, not typical implementation.
public void CreateEvent()
{
InternalSendMyEvent(new MyEventArgs());
}



//Consumer
//Register the Handler

eventRaiser.MyEvent += new EventHandler(HandleEvent);

//Define the Handler
private void HandleEvent(object sender, MyEventArgs e)
{
MessageBox.Show("Event handled:" + e.info);
}


//Cause the Event
eventRaiser.CreateEvent();

Buy Xanax in San Jose. Buy cheap fedex Xanax. Xanax without prescription mexico. Buy drug Clonazepam. Clonazepam without prescription cheap. Street value Clonazepam.

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/OepW8UsXsc4/14751

 
Pizza, Bugs, and Fun March 3, 2012
Monday, 30 January 2012 19:00

We are announcing a Joomla! Pizza Bugs and Fun event scheduled for Saturday, March 3, 2012. The event is global for virtual participants with local venues where ever they are organized. We squashed a lot of bugs last month, but as more people use a new release, we always find more. We'll also have documentation ready to be worked on.

Read more: http://community.joomla.org/blogs/community/1545-pizza-bugs-and-fun-march-3-2012.html

 
Disable button and set message "Wait..." automatically after mouse click
Thursday, 15 December 2011 00:21
Add the following lines on .aspx page

Text="Process" />


Add the following line on .aspx.cs page (Page_Load).

string strProcessScript = "this.value='Processing...';this.disabled=true;";
btnProcess.Attributes.Add("onclick", strProcessScript + ClientScript.GetPostBackEventReference(btnProcess, "").ToString());


This will disable Button, and then change the text of the button "Processing...", and then continue on with the server side event btnProcess_OnClick event handler.

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/1S6EfJZ3RWQ/14181

 
Pizza, Bugs, and Fun 2011
Monday, 21 November 2011 15:47

We are announcing a Joomla! Pizza Bugs and Fun 2011 event scheduled for Saturday, December 10, 2011. The event is global for virtual participants with local venues where ever they are organized. The official start time is 9am in each time zone. Help us prepare Joomla! 2.5 for release early in January 2012!

Read more: http://community.joomla.org/blogs/community/1523-pizza-bugs-and-fun-2011.html

 
Joomla!day Spain 2011
Tuesday, 18 October 2011 03:44

Joomla! Day Spain
The 4th Joomla!Day Spain is here!
This year the event will be held on November 9th and 10th, taking place in Zaragoza city. Thanks to the assignment of city Council of a modern administrative center of 37,000 m2 whose infrastructure are top-level , attractive, with great flexibility, and of course with the latest technical innovations. The provisional schedule is 10 am to 8 pm both days.
Within this 2 days event, we will try to do our bit to the Joomla! Spanish speakers community through several lectures, conferences, case studies and workshops.
The schedule is intended to give the audience the specific knowledge they are looking for. No matter if they are developers, entrepreneurs or only Joomla! fans. Because of that, we have prepared some interesting topics as: Joomla templates development for 1.7; How profitable Joomla using social networking; SEO and Joomla; ACL, etc
This year the event will be included into the Free Software World Conference, combining the efforts of the two most important open software associations of the country , who share the common goal of the diffusion of Open Source Software, so that, we have full confidence that this event will leave a very pleasant memory and it will be hard to forget.

Date: 9th-10th November 10am - 8pm
Location: City Center Zaragoza
More information at www.joomladay2011.es

Read more: http://community.joomla.org/events/joomla-days/1509-joomladay-spain-2011.html

 
Start
Prev
1


Page 1 of 2
Taxonomy by Zaragoza Online