let me count the ways

Tài liệu Joomla!™ Programming ppt

Tài liệu Joomla!™ Programming ppt

Ngày tải lên : 24/02/2014, 21:20
... check to see whether there are any methods that need to be run for a given event An event is said to be fired when the program checks for Extending Joomla: Let Me Count the Ways methods tied to ... argument for that method is the language key from the ini file The JText::_() method looks up the key in the ini file for our language and returns the matching text If for some reason the key is not ... Extending Joomla: Let Me Count the Ways Templates The last type of extension in Joomla is a template The template controls the way all the information is shown on each page of the website A basic...
  • 594
  • 1000
  • 0
Interactive Writing in the EFL Class.doc

Interactive Writing in the EFL Class.doc

Ngày tải lên : 06/09/2013, 05:10
... work The idea behind this meta-communicative task is to encourage the students to monitor their own progress and their linguistic-strategic development over time Towards the end of the course, the ... (W Somerset Maugham) • The Gift of the Magi (O Henry) • Mrs Bixby and the Colonel's Coat (R Dahl) • • • The Escape (W Somerset Maugham) Here We Are (D Parker) Country Lovers (N Gordimer) These ... 10 The Writing Portfolio What happens when the students receive their written work back? Do they take some time to have a look at mistakes and slips? Do they make sure that they understand the...
  • 13
  • 492
  • 0
Real Audio to Augment Real Listening in the ESL Classroom

Real Audio to Augment Real Listening in the ESL Classroom

Ngày tải lên : 06/09/2013, 10:10
... downloaded some file, they can listen through the clip and write down any new words that they want the class to learn Then the teacher puts the words on a practice sheet for students to guess the meaning ... Tom: Ok sometime late in the evening, put on your tuxedo, stand near the car and call AAA Tell them you want them to tow the car to the Mercedes car dealer in Maryland (CarTalk, 1997) As the students ... and then sharing their findings with the rest of the class For example, Give the students the topic of Martin Luther King Jr and some questions to answer At AudioNet there is an audio book on the...
  • 7
  • 427
  • 0
Motivation in the ESL Classroom

Motivation in the ESL Classroom

Ngày tải lên : 06/09/2013, 10:10
... teach at the i+1 level, a little above what they already know But sometimes when they don't understand, I have to change gears and think of another way as to not lose the energy of the class ... positive energy could lead to the students becoming more motivated If the students see that the teacher is happy to be in the classroom and excited to teach them, then the students can learn by example ... if something is a bit challenging they don't have what it takes to it Unlike the first year boys who enjoy challenging materials and will try harder to understand some things on their own The...
  • 4
  • 528
  • 5
An Integrated Approach to Teaching Literature in the EFL Classroom

An Integrated Approach to Teaching Literature in the EFL Classroom

Ngày tải lên : 06/09/2013, 10:10
... literature These activities are disconnected from the literary goals of the specific text in that they can be applied to any text There is little engagement of the learner with the text other than ... discourse may not be the same person as the writer The result is that the reader’s “interpretative procedures” (Widdowson, 1975) may become confused and overloaded What this means is that the reader has ... interpret text and construct meaning on the basis of their own experience These three approaches to teaching literature differ in terms of their focus on the text: firstly, the text is seen as a cultural...
  • 5
  • 708
  • 1
Doing Things with Sentences in the ESL Classroom

Doing Things with Sentences in the ESL Classroom

Ngày tải lên : 06/09/2013, 10:10
... before they guess the whole sentence Begin in the Middle Write the middle word of the sentence on the board, and then give the class the two words that go one either side of it in the sentence The ... goes behind If they choose correctly, write the words in their places on either side, then give them the next pair, then another, and so on until the sentence is complete Thus, if the original ... that when you hold the top of the fan and let the bottom fall to the ground, the sentence can be read vertically, i.e from top to bottom Show the class the back of the fan (the blank side) and...
  • 4
  • 490
  • 0
The BitSet Class

The BitSet Class

Ngày tải lên : 05/10/2013, 12:20
... result of the method call • and(): If the size of the current set is smaller than the passed−in set, the extra bits are ignored If the size of the current set is larger than the passed−in set, the ... If the position specified in the set() method is beyond the size of the bit set, the set grows in increments of sixty−four Calling clear() with a position beyond the set size does nothing If the ... The BitSet class implements the Cloneable interface, providing you with a clone() method public Object clone() When you clone() a BitSet, you create another set with the same size and the same...
  • 6
  • 355
  • 0
The SqlCommand Class

The SqlCommand Class

Ngày tải lên : 17/10/2013, 19:15
... Cancels the execution of the command CreateParameter() SqlParameter Creates a new parameter for the command ExecuteNonQuery() int Used to execute SQL statements that don't return a result set These ... ResetCommandTimeout() void Resets the CommandTimeout property to its default value Note Although the SqlCommand class is specific to SQL Server, many of the properties and methods in this class are the same ... data Returns the result set in an XmlReader object Applies only to the SqlCommand class Prepare() void Creates a prepared version of the command Sometimes results in faster execution of the command...
  • 3
  • 401
  • 0
The SqlDataAdapter Class

The SqlDataAdapter Class

Ngày tải lên : 20/10/2013, 10:15
... Synchronizes the rows in the DataSet object to match those in the database The int returned by this method is the number of rows synchronized in the DataSet with the Table 10.2: SqlDataAdapter METHODS METHOD ... DESCRIPTION n enumeration with the members Add, AddWithKey, Error, and Ignore: • • • • SelectCommand TableMappings UpdateCommand Add means the column is added to the DataTable AddWithKey means the column ... Error means a SystemException is thrown Ignore means the table or column is ignored and not read Passthrough means the table or column is added to the DataSet with its original name The default is...
  • 6
  • 289
  • 0
The SqlDataReader Class

The SqlDataReader Class

Ngày tải lên : 20/10/2013, 10:15
... set bool Moves the data reader to the next row in the result set and reads the row The bool returned by this method indicates whether there are more rows in the result set Note The DataTable ... specified object array The int returned by this method is the number of elements in the array string Returns the value of the specified column as a string object Returns the value of the specified column ... Copies the value of all the columns in the current row into a specified object array The int returned by this method is the number of elements in the array bool Returns a bool that indicates whether...
  • 4
  • 309
  • 0
Understanding the SqlConnection Class

Understanding the SqlConnection Class

Ngày tải lên : 28/10/2013, 16:15
... Fires when the state of the connection is changed InfoMessage SqlInfoMessageEventHandler Fires when the database returns a warning or information message You'll learn how to use some of these properties, ... Table 7.2 shows some of the SqlConnection methods Table 7.2: SqlConnection METHODS METHOD RETURN DESCRIPTION TYPE BeginTransaction() SqlTransaction ... application, an event occurs, or is fired Table 7.3 shows some of the SqlConnection events You'll learn how to use these events later in the "Using Connection Events" section Table 7.3: SqlConnection...
  • 2
  • 330
  • 0
The transformation of the American class structure, 1960-1990

The transformation of the American class structure, 1960-1990

Ngày tải lên : 01/11/2013, 07:20
... industrial investment in the Third World and an accompanying expansion of the industrial working class in Third World countries The Marxist theory of proletarianization is a theory about the trajectory ... wage-earners rather than on employers and the petty bourgeoisie The problem of the historical trajectory of self-employment in the United States will be examined in the next chapter 3.3 Results The basic ... intensi®ed The evidence in these results indicates that, if anything, there was an acceleration in the trend of deproletarianization in the 1970s and 1980s While these results hardly indicate that the...
  • 11
  • 540
  • 1
Tài liệu Using the XML Class doc

Tài liệu Using the XML Class doc

Ngày tải lên : 24/12/2013, 07:17
... to let you know whether the user provided the correct information This URL should include the full path to the UserLogin.asp file that you uploaded With the same frame still selected, add the ... to load the response Finally, the last action sends the timeline to a frame named Waiting This frame informs the user that the information was sent but no response has been returned The movie ... this document and extract the information When the user clicks the Submit button, the contents of the three text fields are used to format an XML document That XML document is then sent to the AddUser.asp...
  • 17
  • 297
  • 0
Using 5   minute activities to warm up the language classroom

Using 5 minute activities to warm up the language classroom

Ngày tải lên : 27/12/2013, 20:26
... survey and other materials to make them logical and suitable for the thesis the design of the subject The thesis consists of main parts: Part I is the introduction of the thesis Part II is the investigation ... day Another group of teachers said that if they had time they still had no interesting and short games to warm up their classroom They become bored with warming up their pupils by the same activities, ... for liking them, write one or two more on the board The students should now write down some of their favorite words and then give their reasons for choosing them to their neighbor Some students...
  • 66
  • 693
  • 4
Tài liệu The DataColumn Class pdf

Tài liệu The DataColumn Class pdf

Ngày tải lên : 21/01/2014, 07:20
... PROPERTIES TYPE DESCRIPTION int Gets the numeric position of the DataColumn object (0 is the first object) bool Gets or sets a bool value that indicates whether the DataColumn object can be changed ... been added to a DataRow The default is false DataTable Gets the DataTable to which the DataColumn object belongs bool Gets or sets a bool value that indicates whether the DataColumn values in ... whether the DataColumn values in each DataRow object must be unique The default is false You'll see the use of some of these properties, methods, and events later in this chapter ...
  • 2
  • 343
  • 0
Tài liệu Using the Color Class ppt

Tài liệu Using the Color Class ppt

Ngày tải lên : 21/01/2014, 13:20
... identical to the script used to assign the onRelease callback to the red button, except for the color value used in the setRGB() method, the value of which is the hex value for the yellow in the middle ... myColor.setRGB(0xFF3300); The script creates a new Color object named myColor and then uses the setRGB() method to change the color of the shirt_mc movie clip instance to red This method accepts a parameter (0x) ... = 129 The next line of the script says to convert the value of R to a base 16 value, then convert it to a string, and then the same thing with G and B Using the plus (+) operator to put the converted...
  • 7
  • 302
  • 0
Tài liệu Using the Key Class to Add Interactivity docx

Tài liệu Using the Key Class to Add Interactivity docx

Ngày tải lên : 21/01/2014, 13:20
... to the ActionScript we added in the preceding step However, here the if statement reacts to the Up and Down Arrow keys rather than the Right and Left Arrow keys The first part of this statement ... onEnterFrame event handler method to evaluate a conditional statement Key.RIGHT references the Right Arrow key, and Key.LEFT references the Left Arrow key Each time this statement is evaluated, the ... (moving the instance down) Choose Control > Test Movie Use the Left, Right, Up, and Down Arrow keys to control the movement of the hot air balloon The conditional statements you wrote are performed...
  • 5
  • 347
  • 0
Tài liệu Using The LoadVars Class ppt

Tài liệu Using The LoadVars Class ppt

Ngày tải lên : 21/01/2014, 13:20
... object and have that same object receive the data that the server sends back, simply use the load() method described in the following exercise Using the toString() method of the LoadVars class, ... called; therefore, when the data has finished loading, the timeline will move to the frame labeled Display, as set up in Step In a moment, we'll add a script at the Display label that will use the ... is added to the end of the string to send this to the server using the GET method of transferring variable data If the user clicked the third radio button, this argument would look something like...
  • 16
  • 346
  • 0

Xem thêm