Posted by Catur Nugroho | File under :
Simple Code to Using Html Agility Pack So i have a code of Htmlagilitypack in my mind and hopefully what I get can be useful for those. Lest try!  Do not forget to add this code in your reference : using HtmlAgilityPack; This is firs time, we will take the example of html and put it into the HTML Agility Pack HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument(); doc.LoadHtml(sampleHtml);    Get Text Box Value HtmlAgilityPack.HtmlNode node = new HtmlAgilityPack.HtmlNod(); node = doc.DocumentNode.SelectSingleNode("//input[@id='nameOfId']"); string...
Posted by Catur Nugroho | File under :
It works much like PrizeLive and other such web sites. You are paid for completing offers and clicking on links. Before the first of the year, daily they had at least a dollar's worth of links to click on per day which was fast and easy, but since it's gone down quite a bit. I guess it fluctuates, but I wish I hadn't been lazy since it would have been easy money. You also get 50 cents for each referral, but all money earned in my first...
Posted by Catur Nugroho | File under :
How to read text from xps document using C#. The purpose of this article is a personal note from the author. When the project is lost or forgotten so it is easier to find on this page. For over 2 years ago I use this code and really helped me. I'm sorry, My English is not very good and and a little difficult to make the article. The first step please add some this references of dot net class library : 1. PresentationCore. 2. PresentationFramework. 3. ReachFramework 4. System 5. System.Core. 6. System.Data 7. System.Data.DataSetExtensions 8....
Posted by Catur Nugroho | File under :
Simple PDF Automation Using Autoit in C# The topic for this article is how read the text of a PDF document, export into txt file, and return the results as text or string. This is code for adobe reader X Version 10.1.3, so if the next time you get some code that doesn't run as well might be due to different versions. This article will explain clearly how we can make simple PDF Automation. If you can't understanding  the code, I have set up...
Posted by Catur Nugroho | File under :
Simple Notepad Automation Using Autoit C# This is a simple example of how to work with Notepad for sending text, copy / paste, and save it as a file. I will try to explain as details so that you can easily understand. You can adding this code into your project. This is additional function that I have made, you can copy and paste. private void Type(string strKeys, int nMode, string strControl, bool blnSleepKeys, int nSleep, string strWindow)       ...