10 Tips for passing 77-603 Certification Exam

The MCAS (Microsoft Certified Application Specialist) certification consists of six specialized exams that test your knowledge on Microsoft Office programs. If you are preparing for 77-603 exam, you should have a thorough understanding of creating presentations, customizing slide master and its elements, arranging slides, inserting and formatting text boxes, manipulating text, adding and linking existing content to presentations, applying and customizing animation, creating and modifying SmartArt diagrams, customizing illustrations, inserting and modifying charts, inserting and modifying tables, etc.

To analyze the capabilities of the software, you can download a demo version and evaluate it free of cost. Click the link below:

Download link: https://www.ucertify.com/exams/Microsoft/77-603.html
Continue reading “10 Tips for passing 77-603 Certification Exam”

Nishith Pathak reviewed MS Office SharePoint Server

Nishith Pathak Nishith is a Microsoft Most Valuable Professional (MVP), reviewer, Published Author of Apress, Speaker for Microsoft India, a Microsoft Purist who believes Microsoft technology, is the ultimate solution to real world software problems. He is been working with Microsoft .NET Technologies since its initial beta version. Having an experience of more than 10 years in IT Industries and having more than 12 Microsoft certifications in his belt, he had gained technical expertise in both windows and web solutions though usage of Microsoft products. His expertise is in delivering enterprise solutions to Fortune 100 companies spanning the globe.

Nishith passion towards technology led him naturally to the developer communities. He has shared his knowledge with developer communities across the country where he helped them understand and use Microsoft technologies effectively. In fact, he has been awarded the title Microsoft Most Valuable Professional (MVP) for his contributions to .NET technologies by Microsoft. As an early adopter of Microsoft technology, he has kept pace in the certification challenges and succeeded in getting several of his certifications in beta stages. He is charted members of MCSD.NET and MCAD.NET certifications. He is also involved in various Technical authoring/Consultation and has written many articles, reviews, and columns for multiple electronic and print publications. Nishith speaks for user groups and also for Microsoft India on various upcoming technologies. He is a speaker for Microsoft India.
Continue reading “Nishith Pathak reviewed MS Office SharePoint Server”

Everything you want to know about 70-551 (CSHARP)

Q: What are the prerequisites for taking the exam 70-551 (CSHARP)?

A: This exam is meant for those candidates who have achieved MCAD certification. Microsoft recommends you to have a working knowledge of Visual Studio 2005 and new features of ASP.NET 2.0. You should also have at least two years of experience developing applications by using the Microsoft .NET Framework.

MCAD/MCSD to MCPD: Web Developer This certification requires that one pass the following examination (CSHARP/VB):

Continue reading “Everything you want to know about 70-551 (CSHARP)”

Performing drag & drop operation in a Windows Forms app

In a Windows Forms application, a drag-and-drop functionality refers to the transferring of data with the mouse. It enables a user to drag data such as a text, an image, or other object with the mouse’s left-button from one control and drop it to another control. This functionality is an event-driven process that occurs when the data is copied from the source control and when the data is dropped onto the target control. The source as well as target control events are involved in implementing the drag-and-drop operations are as follows:

  • Source Control Events: These events occur when a mouse pointer triggers some action on a source control. The following are the source control events:

    . To get a glimpse of these PrepKits, you can download its free demo version (which contains 15 free practice questions) from:

    Download link: https://www.ucertify.com/exams/Microsoft/70-526-VB.html

    1. MouseDown Event: It occurs when the mouse button is pressed and the mouse pointer is over the source control. A method that handles this event calls the DoDragDrop method of the source control.
    2. GiveFeedback Event: It occurs when a drag-and-drop operation is initiated. The appearance of the mouse pointer can be modified by the source of a drag event. In this event, a user can obtain the visual feedback during the operation. This event provides a custom mouse pointer to a user.
    3. QueryContinueDrag Event: It occurs during a drag-and-drop operation. It is raised when the keyboard or the mouse button state changes during the operation. It also enables the drag source in order to determine whether the drag-and-drop operation is cancelled.
  • Target Control Events: These events occur when a mouse pointer triggers some action on a target control. The following are the source control events:
    1. DragEnter Event: It occurs when an object is dragged into the bounds of the target control. It is raised when the mouse cursor is first dragged over the target control during a drag-and-drop operation.
    2. DragOver Event: It occurs when an object is dragged over the bounds of the target control. It is raised when the mouse cursor is within the bounds of the control.
    3. DragDrop Event: It occurs when the mouse button is released over the target control and a drag-and-drop operation is completed.
    4. DragLeave Event: It occurs when the an object is dragged out of the bounds of the target control. It occurs when the current drag-and-drop operation is cancelled.

Sequence of a Drag-and-Drop Operation

The following is the general sequence of events that take place in a drag-and-drop operation:

  1. The drag-and-drop operation is initiated by calling the DoDragDrop method within the MouseDown event handler on the source control. The method contains two parameters, namely the Object data that specifies the desired data to pass and the DragDropEffects data value that specifies a particular drag operation on a control. The method determines under which control the current mouse cursor is located. It then checks whether the valid drop target operation has been performed. In this sequence, a new DataObject object is automatically created.
  2. The GiveFeedback event is raised when a custom mouse pointer is displayed during the dragging operation. The QueryContinueDrag event is raised to determine whether the drag operation should be continued or aborted.
  3. The drop-and-drop operation is allowed when the AllowDrop property is set to true in the Properties window at design time. The property can be set to true programmatically in the Form_Load event of a Windows form.
  4. The DragEnter event for a target control is raised when the mouse cursor is first dragged over the control. The DragOver event takes place when a mouse pointer stays over the bounds of a control.
  5. Finally, the DragDrop event is raised when the mouse button is released over a valid target control. In the Windows form, the event handler extracts the appropriate data from the DataObject object. Data is then displayed in the target control.

DragDropEffects Enumeration Values

The DragDropEffects enumeration identifies the effects of a drag-and-drop operation in a Windows Forms application. It contains the FlagsAttribute attribute that enables a user to perform a bitwise combination of its member values. It is used by the DragEventArgs, GiveFeedbackEventArgs, and Control classes. The following are the member values that can exist in this enumeration:

Member Values Description
All During a drag-and-drop operation data is copied, dragged, and removed from the source control. The data is then scrolled and dropped onto the target control.
Copy During a drag operation, data is copied to the target control.
Link During the operation, data from the source control is linked to the target control.
Move During the operation, data is moved from the source control to the target control.
None During a drag-and-drop operation, the target control does not accept the data from the source control.
Scroll During a drag-and-drop operation, the scrolling operation is initiated or is currently being performed.

Implementing Drag-and-Drop Operations between Applications

Generally, a drag-and-drop operation is performed within a single Windows Forms application. This operation can also be implemented between two applications. The following conditions should be fulfilled in order to enable a drag-and-drop operation between applications:

  • A target control should allow one of the drag effects being specified when the DoDragDrop method is called.
  • A target control should accept data in the same format that was set when the DoDragDrop method is called.

Implementing Drag-and-Drop Operations by using a TreeView Control

The implementation of a drag-and-drop operation in a TreeView control is slightly different from other controls. When a drag operation is initiated on a TreeView node, the ItemDrag event is raised. The event passes an instance of ItemDragEventArgs to a method that handles this event. The ItemDragEventArgs object contains a reference that is copied to the DataObject object in the DoDragDrop method.

Download link: https://www.ucertify.com/exams/Microsoft/70-526-VB.html

uCertify Launches Preparatory Exam Simulators for CompTIA A+ 2009 exams

uCertify (August 28, 2009) uCertify, a leading solution provider for IT certification exams, proudly announces the launch of PrepKit for the CompTIA A+ 2009 exams on August 24, 2009. The preparatory exam simulators for CompTIA A+ 2009 exams can be downloaded from the following links:

https://www.ucertify.com/exams/CompTIA/220-701.html

https://www.ucertify.com/exams/CompTIA/220-702.html

Pass in your first attempt, or we will refund your money

The demo versions collectively include sixty questions, related study notes, articles, and study tips for FREE. The full version of these PrepKits, which is available at an unbelievably low price, contains a total of 980 questions collectively. The A+ 2009 PrepKits also contains over 400 study notes, technical articles, and flashcards. These PrepKits are guaranteed to comprehensively cover all the objectives for the CompTIA A+ 2009 exams. These PrepKits come with a full 100% money back guarantee. You are guaranteed to pass in your first attempt, or we will refund your money. No questions asked!

uCertify is the first practice exam and IT training provider to launch its exam simulators for A+ 2009 kits within two weeks of launching the new version of A+ certification exams. uCertify is a leader in the certification business. Since its inception in 1996, uCertify has specialized in exam preparation solutions for various certification exams of Microsoft, Oracle,SUN, CompTIA, EC-Council, ADOBE, IBM, LPI. We are available 24 x 7.

On the launch of A+ 2009 PrepKits, Mark Smith, Director of Product Management, uCertify, remarked, “We provide quality-training products to help candidates pass their certification exams effortlessly. The new versions of the A+ certification exams will provide many challenges to the aspiring technicians. uCertify PrepKits for exam 220-701 and 220-702 covers all the objectives defined by CompTIA for A+ 2009 exams. These PrepKits provide realistic practice tests containing challenging questions with detailed explanations to help candidates understand the key concepts. Apart from practice questions, uCertify’s PrepKits also contain short tutorials, study notes, articles, exam tips, and How-tos. Comprehensive reporting tools also identify the candidate’s strengths, weaknesses, and opportunities for any improvement.”

To learn more about uCertify, visit us at https://www.ucertify.com or send us an email at sales@ucertify.com. We would be happy to explain how we can help you achieve your certification goals.

Sincerely,
Roger Stuart,
uCertify: https://www.ucertify.com
uCertify India: https://www.ucertify.com
uCertify PrepEngine: http://www.prepengine.com
Download link: https://www.ucertify.com/download.html