Have you ever heard of WebBrowser in .NET Application? If yes, then you know how bad is the Default WebBrowser in .NET. In Internet we can find many alternative for the .NET's Default WebBrowser. There are many, such as CefSharp or GeckoFX,....
In this post I will introduce to you GeckoFX and I will show you how to build your first Gecko Browser program with the Blocking Feature.
GeckoFX is the open source component to embedding the Gecko rendering engine from Mozilla Firefox to .NET application.
To...
Home » Posts filed under programming
[How to] Block specific Websites with GeckoFX in C#
in
.NET,
browser,
c#,
GeckoFX,
how to,
programming,
tut,
Visual Studio
- on 9/28/2017
- No comments
Develop your program in CLOUD
in
Free,
Free web hosting,
Linux,
programming,
service,
VPS,
wordpress
- on 6/12/2015
- No comments
Are you a developer? If yes, then maybe you are used to dev program on your local computer, it take time to prepare an environment to dev. I found out some SAAS website that provide a coding environment online for FREE, that's means you don't need to install IDE, and you can code everywhere with device that can access the internet, also you can customize the environment to what you need (customize the cloud VM with full sudo access).
These service are:
- Koding : https://koding.com
- Cloud9 (C9)...
How to Open Visual Studio 2010 Project file on Visual Studio 2008
in
Convert,
programming,
project,
Tips,
Visual Studio
- on 10/01/2012
- No comments
First, you need to convert visual studio 2010 solution file (.sln) to visual studio 2008 solution file (.sln) simply follow these steps:
in .sln file replace:
"Format Version 11.00" to "Format Version 10.00"
"# Visual Studio 2010" to "# Visual Studio 2008"
in .csproj replace
"ToolsVersion=''4.0''" to "ToolsVersion=''3.5''"
"Microsoft\VisualStudio\v10.0" to "Microsoft\VisualStudio\v9.0"
After that, you can Open the Solution file and work normally.
Note: with the WEB Project,...
Java - connect to SQL Server using JDBC ODBC in win 64bit
in
database,
java,
programming,
project,
Tips,
tricks
- on 4/20/2012
- No comments
When I do my School Project (Create an Java App connect to an DB), I found it's can't be done in windows 64bit, so I search the Internet and I found my own way to finish it in Windows 64bit. Just follow these step below.
Step 1
Run the 32-bit odbc driver using
WinKey+R, then copy-paste the below command
C:\Windows\SysWOW64\odbcad32.exe
Step 2
Make a dsn named “SQLDB” or whatever name you want to.
Step 3
Create a new project in eclipse.
Step 4
Change the jre to the java installed inside
C:\Program...
How to read emails on mail server ?
in
algorithm,
email,
IMAP,
NET,
POP3,
programming,
Tips
- on 4/15/2012
- No comments
First of all there are multiple protocols to retreive mail:
POP3, IMAP, etc...
I suggest you start by familiarizing yourself with the various components that make up an e-mail system.
Mail Transfer Agent (Protocol: SMTP)
Mail Delivery Agent (Protocols: POP3, IMAP)
Mail User Agent (Outlook, Webmail, Thunderbird, your application)
Basically what you are trying to write is a Mail User Agent. A mail user agent has to "fetch" the mails from a Mail Delivery Agent using either POP or IMAP.
This means...
Access data in MS-Access database using Javascript
in
database,
javascript,
programming,
Tips,
tricks,
websites
- on 4/07/2012
- No comments
You know that javascript is a client-side programming language. But if you want to use the local database like MS-Access in your HTML page just using javascript? Here is some code that help you access the data of MS-Access DB in HTML page using JavaScript:
Adding a Record
function AddRecord() {
var adoConn = new ActiveXObject("ADODB.Connection");
var adoRS = new ActiveXObject("ADODB.Recordset");
adoConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source='/\dbName.mdb'");
adoRS.Open("Select *...
Sponsors