Mr.Bool - Recent posts! http://www.mrbool.com www.mrbool.com Copyright: (C) DevMedia Group DevMedia Logo http://www.devmedia.com.br/Images/logo_devmedia.gif http://www.mrbool.com E-learning-SharePoint 2007 & VS.Net 2005 Extension for WSS 3.0–List–Lesson 03(MJ Ferdous)http://www.mrbool.com/articles/viewcomp.asp?comp=11091In this lesson you will learn how to customize a list to add columns, create views as well as saving as template.(Author: MJ Ferdous)MJ FerdousWed, 19 Nov 2008 16:17:00 -0300E-learning-Windows Communication Foundation-Lesson 5(DANIEL OLIVEIRA (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=11089In this lesson we are going to learn some advanced concepts about Windows Communication Foundation. (Author: DANIEL OLIVEIRA (ENGLISH))DANIEL OLIVEIRA (ENGLISH)Wed, 19 Nov 2008 08:53:00 -0300Visual Studio C# - Delegates - Parte II(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=11044This video is part 2 of the delegate discussion. After creating the employee class and the delegate, we will create a manager class that process assignments.(Author: Ayad Boudiab)Ayad BoudiabSun, 16 Nov 2008 08:55:00 -0300Visual Studio C# - Delegates - Parte I(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=11043A delegate is a type-safe object that points to another method (or multiple methods) in the application, which can be invoked at a later time.(Author: Ayad Boudiab)Ayad BoudiabSun, 16 Nov 2008 08:51:00 -0300Visual Studio C# - Interfaces - Parte II(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=11033This video is a continuation of our introduction to interfaces. We continue our program by adding a class that implements more than one interface (IPrintable and IClonable). Then, we explore the use of the keyword 'is' to discover at runtime which classes implement an interface and which ones don't.(Author: Ayad Boudiab)Ayad BoudiabSat, 15 Nov 2008 10:25:00 -0300Visual Studio C# - Interfaces - Parte I(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=11032An interface is a named collection of abstract (not implemented) members. It is declared with the keyword 'interface'. This video will cover the first part of how interfaces are declared and how they can be implemented.(Author: Ayad Boudiab)Ayad BoudiabSat, 15 Nov 2008 10:20:00 -0300E-learning-XML ON SQL SERVER 2005–Lesson 04(RUY BENTES PIMENTEL NETO (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=11005In this lesson will learn how to retrieve and modify XML data and describes how to convert between XML and relational data.(Author: RUY BENTES PIMENTEL NETO (ENGLISH))RUY BENTES PIMENTEL NETO (ENGLISH)Thu, 13 Nov 2008 13:34:00 -0300E-learning-SharePoint 2007 & VS.Net 2005 Extension for WSS 3.0–Event Receiver–Lesson 02(MJ Ferdous)http://www.mrbool.com/articles/viewcomp.asp?comp=11004In this lesson you will learn how to create a list Event receiver class to handle both synchronous and as asynchronous events. (Author: MJ Ferdous)MJ FerdousThu, 13 Nov 2008 13:10:00 -0300Implementing Load Balance in MySQL(MAURO PICHILIANI (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10962This video class shows how to implement a load balance system to divide the connection load between two MySQL Server on Linux.(Author: MAURO PICHILIANI (ENGLISH))MAURO PICHILIANI (ENGLISH)Fri, 7 Nov 2008 11:27:00 -0300E-learning-SharePoint 2007 & VS.Net 2005 Extension for WSS 3.0–Event Receiver–Lesson 01(MJ Ferdous)http://www.mrbool.com/articles/viewcomp.asp?comp=10956In this lesson you will learn how to create a list Event receiver class to handle both synchronous and as asynchronous events. (Author: MJ Ferdous)MJ FerdousThu, 6 Nov 2008 14:07:00 -0300Visual Studio C# - XML Serialization(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10952XML serialization is another process of persisting objects to a storage medium. Other forms will be SOAP and Binary serialization. In this video, I will demonstrate serializing a document object using XML serialization.(Author: Ayad Boudiab)Ayad BoudiabThu, 6 Nov 2008 09:02:00 -0300Visual Studio C# - Binary Serialization(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10951Serialization is the process of persisting an object into a storage medium. In this video, I am going to demonstrate how to serialize a Document object to a file using the BinaryFormatter.(Author: Ayad Boudiab)Ayad BoudiabThu, 6 Nov 2008 08:58:00 -0300Visual Studio C# - Reflection(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10875Reflection is a runtime type discovery. It is one of the most important concepts in the .NET Framework. In this video, I am going to demonstrate how to use reflection to discover detailed information about a class Point.(Author: Ayad Boudiab)Ayad BoudiabFri, 31 Oct 2008 16:36:00 -0300Visual Studio C# - Exceptions(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10874Exceptions are anomalies that are difficult to account for when writing programs. In this video, I will introduce how exceptions happen, and how to handle them.(Author: Ayad Boudiab)Ayad BoudiabFri, 31 Oct 2008 16:30:00 -0300Visual Studio C# - Extension Methods.(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10845Extension method is an important feature that has been added to C# 3.0. This feature will allow developers to add additional functionality to an existing class without the use of inheritance, and even without the need to recompile the class. (Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:56:00 -0300Visual Studio C# - Sorting Objects P2..(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10844This video is a continuation of a previous video on sorting objects. In the first video, I demonstrated how to implement the IComparable interface. In this video, I will show how to implement the IComparer interface.(Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:53:00 -0300Visual Studio C# - Sorting Objects P1..(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10843Sorting is a functionality that is used by developers almost daily. We sort numbers, dates, student records... C# supports sorting objects that are part of the .NET Framework.(Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:50:00 -0300Visual Studio C# - Passing Parameters..(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10842This video discusses passing parameters to C# methods. Some methods can do their work without needing assitional information. Other methods, however, need additional data to do their work.(Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:46:00 -0300Visual Studio C# - Inheritance..(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10841Inheritance is one of the pillars of object-oriented programming. It has to do with creating classes from other existing classes. This feature is very powerful since it helps us create a hierarchy of classes that depict the business model.(Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:42:00 -0300Visual Studio C# - Creating classes and objects.(Ayad Boudiab)http://www.mrbool.com/articles/viewcomp.asp?comp=10838Object-Oriented languages like C# and Java are based on classes and objects. A class is a prototype (like an Employee), and an object is a specific instance of the class (like John). In Object-Oriented languages everything is an object.(Author: Ayad Boudiab)Ayad BoudiabWed, 29 Oct 2008 07:29:00 -0300E-learning-XML ON SQL SERVER 2005–Lesson 03(RUY BENTES PIMENTEL NETO (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10806In this lesson you will learn how to type and validate data unsing XML Schemas.(Author: RUY BENTES PIMENTEL NETO (ENGLISH))RUY BENTES PIMENTEL NETO (ENGLISH)Tue, 28 Oct 2008 09:10:00 -0300E-learning-XML ON SQL SERVER 2005–Lesson 02(RUY BENTES PIMENTEL NETO (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10805In this lesson you will learn how to store data using XML data type.(Author: RUY BENTES PIMENTEL NETO (ENGLISH))RUY BENTES PIMENTEL NETO (ENGLISH)Tue, 28 Oct 2008 09:03:00 -0300E-learning-XML ON SQL SERVER 2005–Lesson 01(RUY BENTES PIMENTEL NETO (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10777In this lesson you will learn about the XML structures, the storage options and the use of text columns to store XML.(Author: RUY BENTES PIMENTEL NETO (ENGLISH))RUY BENTES PIMENTEL NETO (ENGLISH)Tue, 28 Oct 2008 09:00:00 -0300E-learning-Windows Communication Foundation-Lesson 4(DANIEL OLIVEIRA (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10672In this lesson we are going to take a closer look at Bindings. (Author: DANIEL OLIVEIRA (ENGLISH))DANIEL OLIVEIRA (ENGLISH)Mon, 20 Oct 2008 08:56:00 -0300Introduction to Graphical User Interfaces Tools for SQLite(MAURO PICHILIANI (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10654In this video we will see a tool called SQLite Manager, which is a free add-on for the Firefox Web Browser. (Author: MAURO PICHILIANI (ENGLISH))MAURO PICHILIANI (ENGLISH)Fri, 17 Oct 2008 09:55:00 -0300A brief introduction to SQLIte(MAURO PICHILIANI (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10623We will know the SQLite database that is the tiniest database used on Linux, applications and portable devices.(Author: MAURO PICHILIANI (ENGLISH))MAURO PICHILIANI (ENGLISH)Wed, 15 Oct 2008 01:37:00 -0300E-learning-Windows Communication Foundation-Lesson 3(DANIEL OLIVEIRA (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10602In this lesson we will create a class that uses Data contracts. (Author: DANIEL OLIVEIRA (ENGLISH))DANIEL OLIVEIRA (ENGLISH)Mon, 13 Oct 2008 01:15:00 -0300Lazarus Beginner - P2(Ruslan Nuryadin)http://www.mrbool.com/articles/viewcomp.asp?comp=10594This video will talk about basic Free Pascal program skeleton, including basic data types, constant variable, one and multi dimension array, and looping with for, while and repeat...until statement. (Author: Ruslan Nuryadin)Ruslan NuryadinThu, 9 Oct 2008 20:18:00 -0300E-learning-Windows Communication Foundation-Lesson 2(DANIEL OLIVEIRA (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10532In this lesson we are going to start to learn about Endpoints.(Author: DANIEL OLIVEIRA (ENGLISH))DANIEL OLIVEIRA (ENGLISH)Mon, 6 Oct 2008 15:22:00 -0300E-learning-Transact-Sql-Lesson 07 (End)(RUY BENTES PIMENTEL NETO (ENGLISH))http://www.mrbool.com/articles/viewcomp.asp?comp=10505In this lesson you will learn about how to handle errors using TRY and Catch Blocks. (Author: RUY BENTES PIMENTEL NETO (ENGLISH))RUY BENTES PIMENTEL NETO (ENGLISH)Sat, 4 Oct 2008 09:55:00 -0300