Welcome to my blog, hope you enjoy reading
RSS

Thursday 16 May 2013

how to submit datebox inside form-GWT

how to submit datebox inside form-GWT

The issue is DateBox doesn't have the "name" attribute:

You can set name attribute to DateBox, since it has TextBox:

                DateBox dateBox = new DateBox();
                dateBox.getTextBox().setName(name);


Share

Tuesday 7 May 2013

JDBC Versions


JDBC Versions

1). The JDBC 1.0 API.
2). The JDBC 1.2 API.
3). The JDBC 2.0 Optional Package API.
4). The JDBC 2.1 core API.
5) The JDBC 3.0 API.
6) The JDBC 4.0 API.

Share

Monday 6 May 2013

Java Versions,Features and History

Java Versions, Features and History

Java Released dates and name with Features.

JDK Version 1.0
          Code named Oak and released on January 23, 1996.

Share

SENDING FREE SMS USING JAVA

SENDING FREE SMS USING JAVA


PRE-REQUISTIES

To leverage one of these services, you need to create an account with them. For the purpose of this blog we will be using fullonsms. Create an account into the website. 
For demo purpose we will assume that mobile number /username of account is DEMO_USER and password is DEMO_PASSWORD.

Share