Posts tagged "sample DragLeave in c#"

First Guide to MEF and Silverlight (Part–II)


In my previous article “First Guide to MEF & Silverlight (Part–I)” I discussed about MEF with a small simple console application. Hope that was useful to you to understand the basic knowledge of MEF. In this article, I will guide you to create a simple Silverlight application using the MEF. If you are new to MEF, I strongly recommend you to read my previous article to gain knowledge on the basic things of MEF like Importing, Exporting, Catalog, Container etc. Read the complete article and at the end if you have any queries, please let me know. I will try to answer them as soon as possible. Always Appreciate your valuable feedbacks. To start working with the Silverlight & MEF application, you need to setup your development environment. In your development PC, you need the following things already installed: Visual Studio 2010 with .Net Framework 4.0 Silverlight 4.0 Tools for Visual Studio 2010 Once your environment is ready with the above tools, we can start with our next step. First of all, we need to create a Silverlight application project and then we have to add some assembly reference in order to work with the MEF. Hence, follow the following steps to setup your project: Open your Visual Studio 2010 IDE Now go to File –> New –> Project or just press Ctrl + Shift + N to open the “New Project” dialog window. From the left panel expand “Visual C#” and then select “Silverlight”. This will populate the right pane with the Silverlight templates.

Image [http://www.kunal-chowdhury.com] 

In the right pane, select “.Net Framework 4” from the DropDown present at the top of the screen. This is require because, we want to do application programming for the target version i.e. Framework 4. Chose “Silverlight Application” from the right pane and click “OK”. I assumed that, you selected proper location and named your application project properly (in our case, I named it as “MEFWithSilverlightDemo”). Once you click “OK”, it will ask you to create a new Web site. This step is require to host the Silverlight application.

Image [http://www.kunal-chowdhury.com]

Be sure that, in the above dialog “Silverlight 4” has been selected as the Silverlight version. Once you click “OK” the Visual Studio IDE will start creating your Silverlight project. It will create two project (one is your Silverlight application project and the other is your Silverlight application hosting website).

Image [http://www.kunal-chowdhury.com]

Once the project created by the IDE, you need to add a reference of the Assembly named “System.ComponentModel.Composition” and a reference of the Assembly named “System.ComponentModel.Composition.Initialization” to your project. To do this, right click on your Silverlight Application project and click “Add Reference”. From the “Add Reference” dialog find the assembly named “System.ComponentModel.Composition” and “System.ComponentModel.Composition.Initialization” to add them to your project.

Image [http://www.kunal-chowdhury.com] 

Once done with all the above steps, your project is ready for the MEF development. Let us first decide what we want to do in our example. We will create a Silverlight application where we will include some UserControls as a Widget. This is for learning purpose and hence don’t go with the UI. So, in our sample application we will create a UserControl and mark it as Exportable. Then we will import the UserControl in our application to add it in the UI. Next we will create another UserControl and mark it as Exportable, so that without any other change in the code, it should add in the main UI. This is just an example to showcase the MEF functionality in Silverlight applications. Let’s jump into the code. First of all, we will create an Interface called IWidget and we will use this interface to build our UserControl. We will just inherit this to the UserControl and while exporting or importing we will use the same interface type. Reason behind this is to make sure only the specified type of control will be marked for MEF. If we have two different types for two different kind of controls, it will be easier for us to manage in the main screen. So, just create a blank interface named IWidget which will look like below: Now, in the MainPage.xaml add an ItemsControl & name it as “widgets”. Wrap the ItemsControl with a StackPanel to hold the items. The XAML file will look as below:

Now it’s time to create a UserControl. Right click on the Silverlight project and add one UserControl & name it as “EmployeeWidget”. We will not design more inside it as it is not require to understand the MEF. To make it properly visible just add one TextBlock with some strings. In our example, I am setting “Employee Widget” as the text string for the TextBlock and also setting a color “Red” to the Grid background. Resize the UserControl to 150 x 150, so that, it will set properly in the screen. Let’s see the below code for detailed layout:


As mentioned above, I resized the control to 150 x 150 and then changed the background color to Red. Added a TextBlock having “Employee Widget” as the value to the TextProperty of the TextBlock with a foreground color of White, so that, it will be visible on top of the Red color. No need to describe more on it. Just check the above xaml and you will get the idea behind it.

Press F7 in the EmployeeWidget.xaml page to open up the code behind file. Inherit the EmployeeWidget class from IWidget. Once done, add the attribute “Export” having the type of IWidget to the class. This will ensure that the class will export for the MEF to Satisfy. Look into the code here:


As our UserControl has been exported for the MEF to satisfy, it’s the time to import it in our MainPage. To do this, open the MainPage.xaml.cs and create a property “Widgets” of IWidget type array. We are using array type to ensure that, we can import many widgets there. So, mark the property with the atrribute “ImportMany” of type IWidget. Once that is done, our code is ready to import the exported class. Now inside your MainPage constructor, iterate through the array and add all the Widgets as the item to the “widgets” items control which we already added in the XAML. Now if you run your application, you will notice that the Widgets array is null. Why? Just think. Oh yea!!! We forgot to satisfy the MEF Initializer to satisfy the property. What to do for that? To satisfy the imports, you need to call “CompositionInitializer.SatisfyImports(this);” just before iterating through the array list. Have a look into the code:


Now, run your application once again and this time you will see the EmployeeWidget added to the UI screen with a text “Employee Widget” having a Red background. Here is the screenshot of the same:

image


Woho!!! Nice. We didn’t create the object of the UserControl and add it to the ItemsControl. The MEF framework did it for us. Once satisfied, it created the object and imported it to the MainPage.


That’s it. Now we will do one more thing. We will create another UserControl named “CustomerWidget” and follow the same steps mentioned above for exporting the control. This time we will set the text to “Customer Widget” and will set the background color to Green. This will make it easy for us to distinguish between the items. Here is the XAML code of the CustomerWidget usercontrol:


Now open the code behind file of CustomerWidget by pressing F7 in the xaml page and follow the same step as we did for the EmployeeWidget i.e. implement the CustomerWidget from the interface named IWidget and mark the class exportable by setting the Export attribute of the IWidget. Here is the code for your reference:


That’s it. This time we didn’t add/modify anymore code in our MainPage. Just run the application and you will see the CustomerWidget added in the panel along with the control named EmployeeWidget. See the screenshot of the same here:

image

So, what did we learn here? We learnt that without changing the original code, we can easily import any control with the help of MEF. It is very easy to plug something into our original application without doing any change in the main application. In such case, instead of updating the original application we can easily attach our feature like a plug-in. Hope, this article helped you to understand the basic functionality of MEF with the help of Silverlight. In my next article, I will show you more on MEF with the help of a Console Application. Till then keep learning about MEF & do your small small POCs to learn in depth. Please don’t forget to post your feedbacks and/or suggestions to improve this article. Appreciate your time for reading through this article

View the original article here



Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - September 3, 2010 at 7:54 pm

Categories: C#   Tags: First, guide, PartII, sample DragLeave in c#, silverlight, silverlight shared whiteboard

Checking if User is connected to Internet or Not using Win32 API and C# | Win32 API and C#

In application like Messenger or Application that provides automatic update need to check that user is connected to internet or not before proceeding further.


so we need to check whether  he is connected to internet or not we can check that with use of WIN32 API.


we can use Win32 API Wininet.dll ’sInternetGetConnectedState() method to check Internet Status 


for working with Pinvoke we need to add name space 


using System.Runtime.InteropServices;


now we need to write prototyping of the function  like below

[DllImport("wininet.dll")]

private extern static bool InternetGetConnectedState(outint connectionDescription, int reservedValue);

Now simply we can use this function to check internet connectivity 

take one button and label on form In buttons’s click even write following code 

private void btnCheckConnection_Click(objectsender, EventArgs e)

        {

            int Description=0;

            bool isConnected = InternetGetConnectedState(out Description, 0);

            if (isConnected == true)

            {

                label1.Text = ”User is Connected to Internet “;

            }

            else

            {

                label1.Text = ”Disconnected”;

            }

        }

Here is how complete code look like 

———————————————–

public partial class Form1 : Form

    {

        [DllImport("wininet.dll")]

        private extern static bool InternetGetConnectedState(out int connectionDescription,int reservedValue);

        public Form1()

        {

            InitializeComponent();

        }

        private void btnCheckConnection_Click(object sender, EventArgs e)

        {

            int Description=0;

            bool isConnected = InternetGetConnectedState(out Description, 0);

            if (isConnected == true)

            {

                label1.Text = ”User is Connected to Internet “;

            }

            else

            {

                label1.Text = ”Disconnected”;

            }

        }

    }

Thank you.


View the original article here

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - August 23, 2010 at 8:20 pm

Categories: C#   Tags: Checking, connected, download different Types Of Compilers in C#, Internet, sample DragLeave in c#, silverlight shared whiteboard, Using, Win32

Mark Doherty Speaks on AIR 2.5 for Android at Adobe Flash Platform Summit 2010

Bangalore, July 21, 2010: Ever wanted to extend Flash Player 10.1? Do you need multi-touch in your mobile application? Mark will be in Bangalore this August to walk you through the new features of AIR 2.5 Beta on Android covering all the major features, including Geolocation, Gestures, StageWebView, Camera and Microphone APIs. At Adobe Flash Platform Summit 2010, to be held 15-16 August, Mark will also build a complex application using both Flash Professional and Flash Builder.

Mark Doherty is the Platform Evangelist for Mobile and Devices at Adobe, working to create a vibrant ecosystem around Flash and AIR for devices. He has spent ten years in the mobile industry, including six at Adobe, holding engineering, consulting and marketing roles. Prior to this, Mark has worked with leading OEMs at Mobile Innovation, Nokia, Samsung and Panasonic.

Attend AFPS 2010 for the sheer value of the content! No other conference in India offers such a comprehensive mix of technical and creative content, delivered by the industry’s leading speakers and platform experts. Across two days, you have access to over forty presentations including inspiring keynotes from legendary Adobe speakers. You also have the opportunity to hang out at the expo area and connect with Adobe partners, industry leaders and peer developers and designers. With over 2000 attendees sharing the same passion as you, imagine the opportunities to network and further your goals.

Need more reasons? As the single, largest Flash Platform conference in India, at AFPS you get to hear about stuff in the roadmap and future directions before anyone else. Some of the specific highlights include: deep dive sessions around the latest product releases in the Adobe Flash Platform including exciting recent developments like Flash on devices, and targeted sessions for newcomers to the platform as well. For more information, visit: www.adobesummit.com

AFPS 2010 is homespun by Saltmarch Media, producers of Great Indian Developer Summit and Developer March – India’s biggest and independent polyglot conference and portal for software developers.

About Saltmarch Media
Saltmarch is an established new-media company that brings together professionals and executives from diverse sectors with an objective of informing, networking and serving them with information, opportunities, evaluation and guidance to excel in their jobs. Whether it is delivered in print, online, or in person, everything Saltmarch produces is an astute reflection of the company’s unshakable belief in the power of information to spur empowerment, and thereby change. For more information, please visit: http://www.saltmarch.com.

AFPS 2010 is homespun by Saltmarch Media’s Intelligence business unit that provides unmatched quantitative and qualitative intelligence through an experienced editorial team, in-depth market research, focused and audited online and in-person surveys, incisive interviews and phone consultations.

A Saltmarch Media Press Release
E: info@saltmarch.com
Ph: +91 80 4005 1000

-
About the Author:

Article Source

1 comment - What do you think?
Posted by Anand Narayanaswamy - July 21, 2010 at 9:39 pm

Categories: Programming   Tags: .tif silverlight visual basic, csharp whiteboard, google scada imaging, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Microsoft PowerPoint 2010 Step by Step

Microsoft Press has recently released Microsoft PowerPoint 2010 Step by Step book in various formats. Experience learning made easy-and quickly teach yourself how to create dynamic presentations with PowerPoint 2010. With Step by Step, you set the pace-building and practicing the skills you need, just when you need them.

Topics include creating great-looking slides using templates or your own designs; creating sophisticated charts and diagrams; using animation, sound, and other special effects; creating presentations simultaneously with others over the Web; delivering presentations; and other core topics.

Table of Contents

  1. Basic Presentations

    1. Chapter 1 Explore PowerPoint 2010
      1. Working in the User Interface
      2. Creating and Saving Presentations
      3. Opening, Moving Around in, and Closing Presentations
      4. Viewing Presentations in Different Ways
      5. Key Points
    2. Chapter 2 Work with Slides
      1. Adding and Deleting Slides
      2. Adding Slides with Ready-Made Content
      3. Dividing Presentations into Sections
      4. Rearranging Slides and Sections
      5. Key Points
    3. Chapter 3 Work with Slide Text
      1. Entering Text in Placeholders
      2. Adding Text Boxes
      3. Editing Text
      4. Correcting and Sizing Text While Typing
      5. Checking Spelling and Choosing the Best Words
      6. Finding and Replacing Text and Fonts
      7. Key Points
    4. Chapter 4 Format Slides
      1. Applying Themes
      2. Using Different Color and Font Schemes
      3. Changing the Slide Background
      4. Changing the Look of Placeholders
      5. Changing the Alignment, Spacing, Size, and Look of Text
      6. Key Points
    5. Chapter 5 Add Simple Visual Enhancements
      1. Inserting Pictures and Clip Art Images
      2. Inserting Diagrams
      3. Inserting Charts
      4. Drawing Shapes
      5. Adding Transitions
      6. Key Points
    6. Chapter 6 Review and Deliver Presentations
      1. Setting Up Presentations for Delivery
      2. Previewing and Printing Presentations
      3. Preparing Speaker Notes and Handouts
      4. Finalizing Presentations
      5. Delivering Presentations
      6. Key Points
  2. Presentation Enhancements

    1. Chapter 7 Add Tables
      1. Inserting Tables
      2. Formatting Tables
      3. Inserting and Updating Excel Worksheets
      4. Key Points
    2. Chapter 8 Fine-Tune Visual Elements
      1. Editing Pictures
      2. Customizing Diagrams
      3. Formatting Charts
      4. Arranging Graphics
      5. Key Points
    3. Chapter 9 Add Other Enhancements
      1. Adding WordArt Text
      2. Inserting Symbols and Equations
      3. Inserting Screen Clippings
      4. Creating Hyperlinks
      5. Attaching Actions to Text or Objects
      6. Key Points
    4. Chapter 10 Add Animation
      1. Using Ready-Made Animations
      2. Customizing Animation Effects
      3. Key Points
    5. Chapter 11 Add Sound and Movies
      1. Inserting and Playing Sounds
      2. Inserting and Playing Videos
      3. Key Points
  3. Additional Techniques

    1. Chapter 12 Share and Review Presentations
      1. Collaborating with Other People
      2. Saving Presentations in Other Formats
      3. Sending Presentations Directly from PowerPoint
      4. Password-Protecting Presentations
      5. Adding and Reviewing Comments
      6. Merging Presentation Versions
      7. Key Points
    2. Chapter 13 Create Custom Presentation Elements
      1. Creating Theme Colors and Fonts
      2. Viewing and Changing Slide Masters
      3. Creating Slide Layouts
      4. Saving Custom Design Templates
      5. Key Points
    3. Chapter 14 Prepare for Delivery
      1. Adapting Presentations for Different Audiences
      2. Rehearsing Presentations
      3. Preparing Presentations for Travel
      4. Saving Presentations as Videos
      5. Key Points
    4. Chapter 15 Customize PowerPoint
      1. Changing Default Program Options
      2. Customizing the Ribbon
      3. Customizing the Quick Access Toolbar
      4. Key Points
  1. Glossary
  2. Appendix Keyboard Shortcuts
    1. Keyboard Shortcut Lists from PowerPoint Help
  3. Appendix About the Authors
    1. Joyce Cox
    2. Joan Preppernau
    3. The Team
    4. Online Training Solutions, Inc. (OTSI)

Title: Microsoft PowerPoint 2010 Step by Step
Authors: Joyce Cox, Joan Lambert
Publisher: Microsoft Press
Formats: Print, Ebook, Safari Books Online
Print Release:July 2010
Ebook Release:June 2010
Pages:448

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 29, 2010 at 7:14 am

Categories: Press Releases   Tags: "visual studio 2010" "pictures toolbar", .tif silverlight visual basic, asp.net3.5 silverlight ppt, briefly about c# and c# tools, c# compilers, C# keywords classified, csharp whiteboard, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, istqb training presentation chapter 5, Microsoft PowerPoint 2010, multiform application in C#.Net, PowerPoint 2010, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Remove Vista Security 2010 – How to Remove Vista Security 2010 Completely

What is Vista Security 2010?
Vista Security 2010 is a rogue anti-spyware application that pretends to detect numerous viruses but in reality only fakes them. Typically, Vista Security 2010 gets into potential host system through Trojans viruses that come with updates of video codecs foolishly required to watch something online. However, nothing but Trojans, that additionally download WinAntispywareCenter, are let inside the system. Once noticed, remember that you must remove Win Antispyware from your PC.

When having been installed by Trojans, Vista Security 2010 similarly to XP Antimalware, XP Internet Security 2010 is known to configure the system and start once the PC is rebooted. Misleading commercial activity is then based on issuing various system scanners and alerts additionally that report multiple infections detected.

How to remove Vista Security 2010?
To remove this virus, you first need to make sure that you are able to remove the various elements of this infection by using a ‘spyware removal program’. These tools are designed specifically to remove infections such as Vista Security 2010, and in order to ensure that all the parts of the virus are removed, you need to make sure you have a reliable and effective remover for it. The best removal tools for this particular infection are “Spyware Doctor” (paid) and “Malware Bytes” (free). You should download either of these tools (Spyware Doctor is a little more effective), and let them scan your PC. They will look through your system and remove any of the infected files, settings and folders that it needs to run, which should stop it.

If you’re able to perform a very deep scan with one of these removal tools, you should notice the Vista Security 2010 infection disappear from your PC. This is where the “surface-level” infection will be removed, leaving just the settings & options that exist out of sight. In order to get your PC running smoothly again, you then need to be able to take a ‘registry cleaner’ to remove any of the infections that are left on your system. A registry cleaner will scan through a large database that Windows has called the “registry”. This database stores vital information & settings for all parts of your system, and is what allows your computer to “remember” so many different settings on your PC.

Unfortunately, the registry is often forgotten, which can cause a huge number of problems. The issue is that Vista Security 2010 stores a series of settings inside the registry, that if you leave, will cause more infections to come back and infect your PC. This means that if you want to get rid of Anti-spyware Soft for good, it’s essential you first get a reliable spyware removal tool to remove the initial series of infections, and then use a ‘registry cleaner’ to fix the remaining parts of the Vista Security 2010 virus.

A highly recommended tool to remove Vista Security 2010 is RegistryQuick which is available for free at http://www.fixpctrouble.info Before you try other programs, give RegistryQuick a try! You will be surprised!
You can easily get rid of Vista Security 2010 by clicking http://www.fixpctrouble.info

-
About the Author:

Article Source

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 20, 2010 at 2:21 pm

Categories: Programming   Tags: .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Ecommerce: All about Shopping and Availing Services Online in Real Time

Ecommerce is the means of letting consumers enjoy the experience of real time shopping using the web. The entire concept of ecommerce has flourished into a highly action-oriented engagement where online sellers showcase you different products or services, give you the freedom to browse through them and then purchase them all using the internet. Truly, the advent of the internet has been a boon for mankind, there is not a second thought about that! Ecommerce stands for electronic commerce and it’s all about availing your necessary thing or service right from the comfort zone of your home. An ecommerce website is very rich in design and presentation arena. Therefore, it’s always a breezy affair browsing through any ecommerce website. Ecommerce website development agencies always keep an eye on the design, SEO and marketing factors of the sites. So, it’s always wise enough to work with these professional agencies to make your ecommerce base strong enough. Ecommerce web development is another key area where much of focus is now being directed. An ecommerce website always looks for the use of the most impressive range of software programs so that processes, both online as well as backend can be accomplished without any errors. Ecommerce websites are always accessed in huge numbers globally in a given time frame. So, an ecommerce web development solutions provider, whether web based or software-centric, needs to make sure that there remains no process inaccuracy behind such activities. The best software as well as ecommerce website developers need to be hired so that projects are most successfully handled. There are a few common software programs those are used in almost all ecommerce websites. These programs include ecommerce shopping cart solution, secure payment gateway integration, customer and inventory management and so on. Also there are arrangements for customizable software application development for different ecommerce websites those perform in different specialty areas. In the last few years, the ecommerce segment has been able to win such a huge momentum in the cyberspace. Thanks to ecommerce web and software development agencies as well as customers who have extended their sound support to the entire concept.

-
About the Author:
SynapseIndia provides e-commerce web site development services from India along with ecommerce web site design. We are leaders in ecommerce web development solutions
.
Article Source

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 19, 2010 at 10:42 pm

Categories: Programming   Tags: "visual c# express 2010" "service project", .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Microsoft Office 2010 Step by Step Books from Microsoft Press

If you are looking for books to get you started on Microsoft Office 2010, you are in luck. Microsoft Press has released three Microsoft Office 2010 Step by Step books namely Microsoft Word 2010 Step by Step, Microsoft Excel 2010 Step by Step, and Microsoft Project 2010 Step by Step.

Microsoft Word 2010 Step by Step by Joyce Cox and Joan Lambert

Experience learning made easy-and quickly teach yourself how to create impressive documents with Word 2010. With Microsoft Word 2010 Step by Step from Microsoft Press, you set the pace-building and practicing the skills you need, just when you need them! Topics include using styles and themes; sharing, printing, and publishing documents; editing images from within Word; using SmartArt diagrams and charts; creating references, footnotes, indexes, and tables of contents; collaborating with multiple people at the same time on the same document; and turning your ideas into blogs, Web pages, and more.

Microsoft Excel 2010 Step by Step by Curtis D. Frye

Experience learning made easy-and quickly teach yourself how to organize, analyze, and present data with Excel 2010. With Microsoft Excel 2010 Step by Step from Microsoft Press, you set the pace-building and practicing the skills you need, just when you need them! Topics include creating formulas, calculating values, and analyzing data; presenting information visually with graphics, charts, and diagrams; building PivotTable dynamic views; using the new Excel® Web App; reusing information from databases and other documents; creating macros to automate repetitive tasks and simplify your work; and other core topics.

Microsoft Project 2010 Step by Step by Carl Chatfield and Timothy Johnson

Experience learning made easy-and quickly teach yourself how to manage your projects with Project 2010. With Microsoft Project 2010 Step By Step from Microsoft Press, you set the pace-building and practicing the skills you need, just when you need them! Topics include building a project plan and fine-tuning the details; scheduling tasks, assigning resources, and managing dependencies; monitoring progress and costs; keeping projects on track; communicating project data through Gantt charts and other views; and exploring enterprise project management systems.

If you want to master Microsoft Office 2010, then you should buy the above Microsoft Office 2010 Step by Step books available from O’Reilly.

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 17, 2010 at 12:17 am

Categories: Channels, Office 2010   Tags: "visual studio 2010" "pictures toolbar", .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, Microsoft Excel 2010 Step by Step, Microsoft Office 2010 Step by Step, Microsoft Press, Microsoft Project 2010 Step by Step, Microsoft Word 2010 Step by Step, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

How to remove XP Internet Security 2010?

What is XP Internet Security 2010?
Like many rogue anti-spyware programs, XP Internet Security 2010 come in with malware and detects fake threats all throughout your computer. The program is setup to both create and detect harmless files on your computer, claiming that they are threats to the system. It gives you an option to remove the rogue files, but only if you purchase a full copy of XP Internet Security 2010. Do not do this as you will get nothing more than a loss of money and a fake program that will sit on your computer.

During the fake scan that XP Internet Security 2010 runs, it will display a variety of threats. These may include something like this:

Spyware Alert! Your computer is infected with spyware. It could damage your critical files or expose your private data on the Internet. Click here to register your copy of XP Internet Security 2010 and remove spyware threats from your PC.

How to remove XP Internet Security 2010?

1 The first thing you need to do to remove this program from your PC is to get a trustworthy anti-spyware / anti-malware and then let it scan your system. Many people make the mistake of just trying to delete the files or settings this software installs onto your system, but the fact is that it has a number of different elements which will just it to come back. You need to use the likes of MalwareBytes (free) or SpywareDoctor (paid) to get the roots of this problem.

2 You should also clean out the ‘registry’ to make sure that there are no settings or files that this virus has left in there. Not many people know about this part of your system, but the fact is that this infection will leave 100′s of infected registry settings on your system, ready for any other viruses to come along. The registry is a large database inside Windows which keeps all the settings and files that your computer requires each day to run – it’s like a big library of vital information for your system. To clean out all the damaged parts of this database, you need to be able to use a ‘registry cleaner’ to scan through it and fix the errors that are inside.

A highly recommended tool to remove XP Internet Security 2010 is Topckit.com which is available for free at http://www.topckit.com Before you try other programs, give Topckit.com a try! You will be surprised!
You can easily get rid of XP Internet Security 2010 by clicking http://www.topckit.com

-
About the Author:

Article Source

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 15, 2010 at 2:27 pm

Categories: Programming   Tags: .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Remove AKM Antivirus 2010 – How to Remove AKM Antivirus 2010 Completely

What is AKM Antivirus 2010?
AKM Antivirus 2010 is a malicious application from the huge group of rogue anti-spywares that all should be removed from the system immediately after detection. AKM Antivirus 2010 tends to employ backdoor techniques to infiltrate the potential host computer, so you may be unaware how this badware was caught when it starts popping up on your desktop someday. Make sure that you have already removed AKM Antivirus 2010 if it has appeared on your machine’s desktop, use our guide given below for that.

The common symptoms of AKM Antivirus 2010 residing on your computer are its fake alerts, nag screens and fabricated security scanners that always return results claiming the PC is dangerously infected and needs to be fixed ASAP. The tool for solving all these detected but in fact totally imaginary malware problems will be nothing else but Vaccine Center commercial version. Typically, users will have to purchase it before being let to handle the problems.

However, taking the suggestion to purchase AKM Antivirus 2010 licensed software means that it was created successfully and dirty brainwashing tactics is efficient for hacking developers. Do NOT let AKM Antivirus 2010 fool you around and refrain from purchasing and installing it. However, if you keep ignoring it, malware will continue its annoying activity and will gradually lead your system to malfunctioning. Therefore, it’s highly recommended to remove Vaccine Center rogue anti-spyware before it damages your computer and makes it completely useless.

How to remove AKM Antivirus 2010?

1. Restart your computer. As your computer restarts but before Windows launches, tap “F8″ key constantly. Use the arrow keys to highlight the “Safe Mode with Networking” option as shown in the image below, and then press ENTER.
2. Open Internet Explorer. Click on the Tools menu and then select Internet Options.
3. In the the Internet Options window click on the Connections tab. Then click on the LAN settings button.
4. Now you will see Local Area Network (LAN) settings window. Uncheck the checkbox labeled Use a proxy server for your LAN under the Proxy Server section and press OK.
5. Download an automatic removal tool and run a full system scan.

A highly recommended tool to remove AKM Antivirus 2010 is RegistryQuick which is available for free at http://www.registryquick.net Before you try other programs, give RegistryQuick a try! You will be surprised!
You can easily get rid of AKM Antivirus 2010 by clicking http://www.registryquick.net

-
About the Author:

Article Source

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - June 6, 2010 at 3:17 pm

Categories: Programming   Tags: .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Remove XP Antivirus 2010 – How to Remove XP Antivirus 2010 Completely

How to Remove XP Antivirus 2010 Completely
1) Firstly you need to go to Start, and then to your Control Panel.
2) Once there, find, select and click the Add/ remove Programs button.
3) Once you’ve did that you’ll now see a huge list with all kind of programs that are installed on your computer. Scroll down the list until you’ve stumbled on XP Antivirus 2010 Messenger and select it.
4) Once selected you only have to hit the remove button and the removal process begins.

What is XP Antivirus 2010?
XP Antivirus 2010 is a poor imitation of anti-spyware software. Do not buy or download it unless you want to waste your time and money for a computer parasite.
XP Antivirus 2010 it designed to look like a regular security application. However, the looks don’t make it functional. XP Antivirus 2010 is able to fabricate infection alerts and system scan reports. It constantly loads the fake messages that make it difficult to use the compromised computer normally. The pop-ups are meant to scare victims into purchasing the rogue program. XP Antivirus 2010 may redirect web browser to websites that promote the tool. It may also block or limit internet access. XP Antivirus 2010 malware as soon as possible.

Why you get XP Antivirus 2010?
Many users do not know how their computers are invaded by XP Antivirus 2010 until their PCs are in bad performance. Actually, in many cases, it is the users themselves who bring malicious into their PC, not anyone else! Why do I state this point? You know that many people know little about how to maintain computer security and the possibility of getting infected while surfing the net. They just browse any website they like or download everything they want online but never think about the safety! If you also do like this, you need to take the following actions.

How to remove Antivirus Soft?

1. Restart your computer. As your computer restarts but before Windows launches, tap “F8″ key constantly. Use the arrow keys to highlight the “Safe Mode with Networking” option as shown in the image below, and then press ENTER.
2. Open Internet Explorer. Click on the Tools menu and then select Internet Options.
3. In the the Internet Options window click on the Connections tab. Then click on the LAN settings button.
4. Now you will see Local Area Network (LAN) settings window. Uncheck the checkbox labeled Use a proxy server for your LAN under the Proxy Server section and press OK.
5. Download an automatic removal tool and run a full system scan.

A highly recommended tool to remove XP Antivirus 2010 is RegistryQuick which is available for free at http://www.registryquick.net Before you try other programs, give RegistryQuick a try! You will be surprised!
You can easily get rid of XP Antivirus 2010 by clicking http://www.registryquick.net

-
About the Author:

Article Source

Be the first to comment - What do you think?
Posted by Anand Narayanaswamy - May 27, 2010 at 9:19 pm

Categories: Programming   Tags: .tif silverlight visual basic, briefly about c# and c# tools, c sharp compiler download, c# compilers, C# keywords classified, csharp whiteboard, develop in c# in windows98, download C# compiler for windows xp, download different Types Of Compilers in C#, explain briefly about c# and c# tools, google scada imaging, multiform application in C#.Net, sample DragLeave in c#, silverlight shared whiteboard, toolbar of crystal report on vs 2010

Next Page »