Using Eclipse to create a model view presenter project in Java

Some instructions on how to create a very simple Model View Presenter example in Java in the Eclipse development environment. A reference I found useful, from which I re-use all the code in this post: http://www.dreamincode.net/forums/topic/353210-swing-passive-model-view-presenter-in-5-minutes/ Step 1: Create a new Eclipse project In Eclipse select File > New > Java Project. Give your project …

Continue reading ‘Using Eclipse to create a model view presenter project in Java’ »

Creating a Windows application in Java using Eclipse

Step 1: Create a new Java Application In Eclipse select File > New > Java Project: Step 2: Create a new Frame In Eclipse, right click the ‘src’ folder and select New > Other. In the wizard dialog that appears select WindowBuilder > Swing Designer > JFrame: Click Next. Give your JFrame a name: Click …

Continue reading ‘Creating a Windows application in Java using Eclipse’ »

Using the HTML Agility Package to modify web pages

Step 1: Create a new Visual Studio project Create a new Console application: Step 2: Use the Package Manager console to install the HTML Agility package. Select Tools > NuGet Package Manager > Package Manager Consol Enter: Install-Package HtmlAgilityPack Step 3: Add the reference to the HtmlAgilityPack.dll Right click you References folder, and browse to …

Continue reading ‘Using the HTML Agility Package to modify web pages’ »