<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5660712682364060992</id><updated>2011-07-07T17:17:58.898-07:00</updated><category term='String'/><category term='Chat'/><category term='VB.NET'/><category term='Computer Shop'/><category term='SQL SERVER'/><category term='Tutorial'/><category term='Java'/><category term='Application'/><category term='USB'/><category term='Shop'/><category term='ADO.NET'/><title type='text'>Gallery Toba Application</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>53</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1893378201867014195</id><published>2009-05-18T04:04:00.000-07:00</published><updated>2009-05-19T01:08:07.106-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET tables OLEDB</title><content type='html'>The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data inside Table is in the form of Rows and Columns . The OleDbDataAdapter object allows us to populate DataTables in a DataSet.&lt;br /&gt;&lt;br /&gt;In some situations we have to find how many tables inside the Dataset Object contains . The following VB.NET source code shows how to find the tables inside the Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim sql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(sql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds, "OLEDB Temp Table")&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            For i = 0 To ds.Tables.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(i).TableName)&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1893378201867014195?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1893378201867014195/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1893378201867014195' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1893378201867014195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1893378201867014195'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-tables-oledb.html' title='ADONET DATASET tables OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-177951818136967473</id><published>2009-05-18T04:03:00.001-07:00</published><updated>2009-05-19T01:09:34.892-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVER'/><title type='text'>ADONET DATASET SQLSERVER</title><content type='html'>The DataSet contains the copy of the data we requested through the SQL statement. We can use Dataset in combination with SqlDataAdapter class . The SqlDataAdapter object allows us to populate Data Tables in a DataSet. We can use Fill method in the SqlDataAdapter for populating data in a Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim i As Integer&lt;br /&gt;        Dim sql As String&lt;br /&gt;&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(sql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds)&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-177951818136967473?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/177951818136967473/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=177951818136967473' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/177951818136967473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/177951818136967473'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-sqlserver.html' title='ADONET DATASET SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3242792545505677533</id><published>2009-05-18T04:02:00.001-07:00</published><updated>2009-05-19T01:12:51.534-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET relations</title><content type='html'>The DataSet contains DataTableCollection and their DataRelationCollection. The DataSet.Relations property is an instance of the DataRelationsCollection Object. We can create parent child data relations between DataTable using Datarelation Object. We can relate one or more column from different tables using DataRelation Object . The columns involved in the DataRelation should be identical data types. That is the parent and child column should be similar Data Types&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;firstSql = "Your First SQL Statement Here"&lt;br /&gt;secondSql = "Your Second SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim firstSql As String&lt;br /&gt;        Dim secondSql As String&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  firstSql = "Your First SQL Statement Here"&lt;br /&gt;  secondSql = "Your Second SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(firstSql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "Table1")&lt;br /&gt;&lt;br /&gt;            adapter.SelectCommand.CommandText = secondSql&lt;br /&gt;            adapter.Fill(ds, "Table2")&lt;br /&gt;&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;            'creating data relations&lt;br /&gt;            Dim relation As DataRelation&lt;br /&gt;            Dim table1Column As DataColumn&lt;br /&gt;            Dim table2Column As DataColumn&lt;br /&gt;            'retrieve column&lt;br /&gt;            table1Column = ds.Tables("Table1").Columns(0)&lt;br /&gt;            table2Column = ds.Tables("table2").Columns(0)&lt;br /&gt;            'relating tables&lt;br /&gt;            relation = New DataRelation("relation", table1Column, table2Column)&lt;br /&gt;            'assign relation to dataset&lt;br /&gt;            ds.Relations.Add(relation)&lt;br /&gt;&lt;br /&gt;            MsgBox("Data relation completed")&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3242792545505677533?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3242792545505677533/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3242792545505677533' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3242792545505677533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3242792545505677533'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-relations.html' title='ADONET DATASET relations'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-4022359243995667642</id><published>2009-05-18T04:00:00.000-07:00</published><updated>2009-05-19T01:10:27.695-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET OLEDB</title><content type='html'>The DataSet contains the copy of the data we requested through the SQL statement. We can use Dataset in combination with OleDbDataAdapter class . The OleDbDataAdapter object allows us to populate Data Tables in a DataSet. We can use Fill method in the OleDbDataAdapter for populating data in a Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim sql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(sql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds)&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-4022359243995667642?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/4022359243995667642/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=4022359243995667642' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/4022359243995667642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/4022359243995667642'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-oledb.html' title='ADONET DATASET OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5614976266846781692</id><published>2009-05-18T03:59:00.000-07:00</published><updated>2009-05-19T01:10:39.215-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVER'/><title type='text'>ADONET DATASET multiple tables SQLSERVER</title><content type='html'>The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The SqlDataAdapter object allows us to populate DataTables in a DataSet. We can use Fill method in the SqlDataAdapter for populating data in a Dataset.&lt;br /&gt;&lt;br /&gt;We can populate Dataset with more than one table at a time using SqlDataAdapter Object . The following VB.NET source code shows how to a single SqlDataAdapter fill Dataset with multiple tables.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim i As Integer&lt;br /&gt;        Dim firstSql As String&lt;br /&gt;        Dim secondSql As String&lt;br /&gt;&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  firstSql = "Your First SQL Statement Here"&lt;br /&gt;  secondSql = "Your Second SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;&lt;br /&gt;            command = New SqlCommand(firstSql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "First Table")&lt;br /&gt;&lt;br /&gt;            adapter.SelectCommand.CommandText = secondSql&lt;br /&gt;            adapter.Fill(ds, "Second Table")&lt;br /&gt;&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            'retrieve first table data&lt;br /&gt;            For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;            'retrieve second table data&lt;br /&gt;            For i = 0 To ds.Tables(1).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(1).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(1).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5614976266846781692?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5614976266846781692/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5614976266846781692' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5614976266846781692'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5614976266846781692'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-multiple-tables.html' title='ADONET DATASET multiple tables SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3141505763116617368</id><published>2009-05-18T03:58:00.000-07:00</published><updated>2009-05-19T01:54:13.847-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET multiple tables OLEDB</title><content type='html'>The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The OleDbDataAdapter object allows us to populate DataTables in a DataSet. We can use Fill method in the OleDbDataAdapter for populating data in a Dataset. We can populate Dataset with more than one table at a time using OleDbDataAdapter Object . The following VB.NET source code shows how to a single OleDbDataAdapter fill Dataset with multiple tables.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;firstSql = "Your First SQL Statement Here"&lt;br /&gt;secondSql = "Your Second SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim firstSql As String&lt;br /&gt;        Dim secondSql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        firstSql = "Your First SQL Statement Here"&lt;br /&gt;        secondSql = "Your Second SQL Statement Here"&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(firstSql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds, "First Table")&lt;br /&gt;            oledbAdapter.SelectCommand.CommandText = secondSql&lt;br /&gt;            oledbAdapter.Fill(ds, "Second Table")&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;            'retrieve first table data&lt;br /&gt;            For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;            'retrieve second table data&lt;br /&gt;            For i = 0 To ds.Tables(1).Rows.Count - 1&lt;br /&gt;                MsgBox(ds.Tables(1).Rows(i).Item(0) &amp; "  --  " &amp; ds.Tables(1).Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3141505763116617368?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3141505763116617368/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3141505763116617368' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3141505763116617368'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3141505763116617368'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-multiple-tables-oledb.html' title='ADONET DATASET multiple tables OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3575015422884978210</id><published>2009-05-18T03:57:00.000-07:00</published><updated>2009-05-19T01:53:21.642-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET merge tables SQLSERVER</title><content type='html'>The DataSet contains copy of the data we requested through the SQL statement. The SqlDataAdapter object allows us to populate DataTable in a DataSet. We can use Fill method in the SqlDataAdapter for populating data in a Dataset. We can populate Dataset with more than one table at a time using SqlDataAdapter Object. The DataTableCollection contains zero or more DataTable objects.&lt;br /&gt;&lt;br /&gt;In some situation we want to combine the result of multiple SQL query as a single result set. In that case we can use the Dataset's Merge method for doing this. The tables involved in the merge should be identical, that is the columns are similar data types .&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;firstSql = "Your First SQL Statement Here"&lt;br /&gt;secondSql = "Your Second SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim firstSql As String&lt;br /&gt;        Dim secondSql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  firstSql = "Your First SQL Statement Here"&lt;br /&gt;  secondSql = "Your Second SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(firstSql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "Table(0)")&lt;br /&gt;            adapter.SelectCommand.CommandText = secondSql&lt;br /&gt;            adapter.Fill(ds, "Table(1)")&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            ds.Tables(0).Merge(ds.Tables(1))&lt;br /&gt;            dt = ds.Tables(0)&lt;br /&gt;&lt;br /&gt;            For i = 0 To dt.Rows.Count - 1&lt;br /&gt;                MsgBox(dt.Rows(i).Item(0) &amp; "  --  " &amp; dt.Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3575015422884978210?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3575015422884978210/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3575015422884978210' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3575015422884978210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3575015422884978210'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-merge-tables-sqlserver.html' title='ADONET DATASET merge tables SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5553463633887619236</id><published>2009-05-18T03:56:00.000-07:00</published><updated>2009-05-19T01:49:57.871-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET merge tables OLEDB</title><content type='html'>The DataSet contains copy of the data we requested through the SQL statement. The OleDbDataAdapter object allows us to populate DataTable in a DataSet. We can use Fill method in the OleDbDataAdapter for populating data in a Dataset. We can populate Dataset with more than one table at a time using OleDbDataAdapter Object. The DataTableCollection contains zero or more DataTable objects. In some situation we want to combine the result of multiple SQL query results as a single result set. In that case we can use the Dataset's Merge method for doing this. The tables involved in the merge should be identical. The following VB.NET source code shows how to merge the tables from two different dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;firstSql = "Your First SQL Statement Here"&lt;br /&gt;secondSql = "Your Second SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds1 As New DataSet&lt;br /&gt;        Dim ds2 As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim firstSql As String&lt;br /&gt;        Dim secondSql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        firstSql = "Your First SQL Statement Here"&lt;br /&gt;        secondSql = "Your Second SQL Statement Here"&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(firstSql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds1, "First Table")&lt;br /&gt;            oledbAdapter.SelectCommand.CommandText = secondSql&lt;br /&gt;            oledbAdapter.Fill(ds2, "Second Table")&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            ds1.Tables(0).Merge(ds2.Tables(0))&lt;br /&gt;            dt = ds1.Tables(0)&lt;br /&gt;&lt;br /&gt;            For i = 0 To dt.Rows.Count - 1&lt;br /&gt;                MsgBox(dt.Rows(i).Item(0) &amp; "  --  " &amp; dt.Rows(i).Item(1))&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5553463633887619236?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5553463633887619236/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5553463633887619236' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5553463633887619236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5553463633887619236'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-merge-tables-oledb.html' title='ADONET DATASET merge tables OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-770523903271610881</id><published>2009-05-18T03:55:00.001-07:00</published><updated>2009-05-19T01:50:02.671-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET create without database</title><content type='html'>Dataset represents a collection of data retrieved from the Data Source. The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data set may comprise data for one or more members, corresponding to the number of rows. We can fill the data in Dataset without calling SQL statements. For that we manually create a DataTable and add data in it.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim dr As DataRow&lt;br /&gt;        Dim idCoulumn As DataColumn&lt;br /&gt;        Dim nameCoulumn As DataColumn&lt;br /&gt;        Dim i As Integer&lt;br /&gt;&lt;br /&gt;        dt = New DataTable()&lt;br /&gt;        idCoulumn = New DataColumn("ID", Type.GetType("System.Int32"))&lt;br /&gt;        nameCoulumn = New DataColumn("Name", Type.GetType("System.String"))&lt;br /&gt;&lt;br /&gt;        dt.Columns.Add(idCoulumn)&lt;br /&gt;        dt.Columns.Add(nameCoulumn)&lt;br /&gt;&lt;br /&gt;        dr = dt.NewRow()&lt;br /&gt;        dr("ID") = 1&lt;br /&gt;        dr("Name") = "Name1"&lt;br /&gt;        dt.Rows.Add(dr)&lt;br /&gt;&lt;br /&gt;        dr = dt.NewRow()&lt;br /&gt;        dr("ID") = 2&lt;br /&gt;        dr("Name") = "Name2"&lt;br /&gt;        dt.Rows.Add(dr)&lt;br /&gt;&lt;br /&gt;        ds.Tables.Add(dt)&lt;br /&gt;&lt;br /&gt;        For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;            MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "   --   " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;        Next i&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-770523903271610881?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/770523903271610881/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=770523903271610881' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/770523903271610881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/770523903271610881'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-create-without-database_18.html' title='ADONET DATASET create without database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7348342177430754569</id><published>2009-05-18T03:55:00.000-07:00</published><updated>2009-05-19T01:50:12.270-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET create without database</title><content type='html'>Dataset represents a collection of data retrieved from the Data Source. The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data set may comprise data for one or more members, corresponding to the number of rows. We can fill the data in Dataset without calling SQL statements. For that we manually create a DataTable and add data in it.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim dr As DataRow&lt;br /&gt;        Dim idCoulumn As DataColumn&lt;br /&gt;        Dim nameCoulumn As DataColumn&lt;br /&gt;        Dim i As Integer&lt;br /&gt;&lt;br /&gt;        dt = New DataTable()&lt;br /&gt;        idCoulumn = New DataColumn("ID", Type.GetType("System.Int32"))&lt;br /&gt;        nameCoulumn = New DataColumn("Name", Type.GetType("System.String"))&lt;br /&gt;&lt;br /&gt;        dt.Columns.Add(idCoulumn)&lt;br /&gt;        dt.Columns.Add(nameCoulumn)&lt;br /&gt;&lt;br /&gt;        dr = dt.NewRow()&lt;br /&gt;        dr("ID") = 1&lt;br /&gt;        dr("Name") = "Name1"&lt;br /&gt;        dt.Rows.Add(dr)&lt;br /&gt;&lt;br /&gt;        dr = dt.NewRow()&lt;br /&gt;        dr("ID") = 2&lt;br /&gt;        dr("Name") = "Name2"&lt;br /&gt;        dt.Rows.Add(dr)&lt;br /&gt;&lt;br /&gt;        ds.Tables.Add(dt)&lt;br /&gt;&lt;br /&gt;        For i = 0 To ds.Tables(0).Rows.Count - 1&lt;br /&gt;            MsgBox(ds.Tables(0).Rows(i).Item(0) &amp; "   --   " &amp; ds.Tables(0).Rows(i).Item(1))&lt;br /&gt;        Next i&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7348342177430754569?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7348342177430754569/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7348342177430754569' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7348342177430754569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7348342177430754569'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-create-without-database.html' title='ADONET DATASET create without database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6692500716844195170</id><published>2009-05-18T03:53:00.001-07:00</published><updated>2009-05-19T01:50:21.321-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET count rows SQLSERVER</title><content type='html'>The DataSet contains copy of the data we requested through the SQL statement. The DataSet consists of DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data set may comprise data for one or more members, corresponding to the number of rows. The following VB.NET source code shows how to find the number of rows in a table that resides in the Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim sql As String&lt;br /&gt;&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  sql = "Your SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(sql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "SQL Temp Table")&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            MsgBox("Number of row(s)  -  " &amp; ds.Tables(0).Rows.Count)&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6692500716844195170?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6692500716844195170/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6692500716844195170' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6692500716844195170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6692500716844195170'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-count-rows-sqlserver_18.html' title='ADONET DATASET count rows SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1811722461564249345</id><published>2009-05-18T03:53:00.000-07:00</published><updated>2009-05-19T01:48:54.165-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVER'/><title type='text'>ADONET DATASET count rows SQLSERVER</title><content type='html'>The DataSet contains copy of the data we requested through the SQL statement. The DataSet consists of DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data set may comprise data for one or more members, corresponding to the number of rows. The following VB.NET source code shows how to find the number of rows in a table that resides in the Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim sql As String&lt;br /&gt;&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  sql = "Your SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(sql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "SQL Temp Table")&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            MsgBox("Number of row(s)  -  " &amp; ds.Tables(0).Rows.Count)&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1811722461564249345?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1811722461564249345/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1811722461564249345' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1811722461564249345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1811722461564249345'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-count-rows-sqlserver.html' title='ADONET DATASET count rows SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1206391984939491679</id><published>2009-05-18T03:52:00.000-07:00</published><updated>2009-05-19T01:48:44.646-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET count rows OLEDB</title><content type='html'>The DataSet contains copy of the data we requested through the SQL statement. The DataSet consists of DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The data inside Table is in the form of Rows and Columns . The following VB.NET source code shows how to find the number of rows in a table that resides in the Dataset from OLEDB Data Source.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim sql As String&lt;br /&gt;&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(sql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds, "OLEDB Temp Table")&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            MsgBox("number of Row(s)   -   " &amp; ds.Tables(0).Rows.Count)&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1206391984939491679?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1206391984939491679/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1206391984939491679' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1206391984939491679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1206391984939491679'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-count-rows-oledb.html' title='ADONET DATASET count rows OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6257723545235886007</id><published>2009-05-18T03:51:00.000-07:00</published><updated>2009-05-19T01:48:36.491-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVER'/><title type='text'>ADONET DATASET column definition SQLSERVER</title><content type='html'>Dataset represents a collection of data retrieved from the Data Source. The Dataset can work with the data it contains, without knowing the source of the data coming from. The SqlDataAdapter object allows us to populate DataTable in a DataSet. We can use Fill method in the SqlDataAdapter for populating data in a Dataset. The Dataset can contains more than one Table at a time. The data inside Table is in the form of Rows and Columns .&lt;br /&gt;&lt;br /&gt;In some situations we have to find the column headers in a DataTable. There is a ColumnsCollection object in the Datatable hold the column Definitions.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As SqlConnection&lt;br /&gt;        Dim command As SqlCommand&lt;br /&gt;        Dim adapter As New SqlDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim column As DataColumn&lt;br /&gt;        Dim sql As String&lt;br /&gt;&lt;br /&gt;  connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;  sql = "Your SQL Statement Here"&lt;br /&gt;        connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            command = New SqlCommand(sql, connection)&lt;br /&gt;            adapter.SelectCommand = command&lt;br /&gt;            adapter.Fill(ds, "SQL Temp Table")&lt;br /&gt;            adapter.Dispose()&lt;br /&gt;            command.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            dt = ds.Tables(0)&lt;br /&gt;            For Each column In dt.Columns&lt;br /&gt;                MsgBox(column.ColumnName)&lt;br /&gt;            Next&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6257723545235886007?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6257723545235886007/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6257723545235886007' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6257723545235886007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6257723545235886007'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-column-definition.html' title='ADONET DATASET column definition SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2554366824401281503</id><published>2009-05-18T03:50:00.000-07:00</published><updated>2009-05-19T01:52:11.206-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET DATASET column definition OLEDB</title><content type='html'>Dataset represents a collection of data retrieved from the Data Source.. The OleDbDataAdapter object allows us to populate DataTable in a DataSet. We can use Fill method in the OleDbDataAdapter for populating data in a Dataset. The Dataset can contain more than one Table at a time. The data set may comprise data for one or more members, corresponding to the number of rows.&lt;br /&gt;&lt;br /&gt;In some situations we have to find the column headers in a DataTable. There is a ColumnsCollection object in the Datatable hold the column Definitions.&lt;br /&gt;&lt;br /&gt;connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables. &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.OleDb&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim connetionString As String&lt;br /&gt;        Dim connection As OleDbConnection&lt;br /&gt;        Dim oledbAdapter As OleDbDataAdapter&lt;br /&gt;        Dim ds As New DataSet&lt;br /&gt;        Dim dt As DataTable&lt;br /&gt;        Dim sql As String&lt;br /&gt;        Dim i As Integer&lt;br /&gt;&lt;br /&gt;        connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Your mdb filename;"&lt;br /&gt;        sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;        connection = New OleDbConnection(connetionString)&lt;br /&gt;        Try&lt;br /&gt;            connection.Open()&lt;br /&gt;            oledbAdapter = New OleDbDataAdapter(sql, connection)&lt;br /&gt;            oledbAdapter.Fill(ds, "OLEDB Temp Table")&lt;br /&gt;            oledbAdapter.Dispose()&lt;br /&gt;            connection.Close()&lt;br /&gt;&lt;br /&gt;            dt = ds.Tables(0)&lt;br /&gt;            For i = 0 To dt.Columns.Count - 1&lt;br /&gt;                MsgBox(dt.Columns(i).ColumnName)&lt;br /&gt;            Next&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            MsgBox("Can not open connection ! ")&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;  &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2554366824401281503?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2554366824401281503/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2554366824401281503' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2554366824401281503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2554366824401281503'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset-column-definition-oledb.html' title='ADONET DATASET column definition OLEDB'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7622153032901811896</id><published>2009-05-18T03:49:00.000-07:00</published><updated>2009-05-21T00:10:14.554-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADONET connectionstring</title><content type='html'>Connection String is a normal String representation which contains Database connection information to establish the connection between Datbase and the Application. The Connection String includes parameters such as the name of the driver, Server name and Database name , as well as security information such as user name and password. Data providers use a connection string containing a collection of parameters to establish the connection with the database.&lt;br /&gt;&lt;br /&gt;The .NET Framework provides mainly three data providers: Microsoft SQL Server, OLEDB and ODBC. Here you can see how to make connection string to these ADO.NET Data Providers.&lt;br /&gt;&lt;br /&gt;Microsoft SQL Server Connection String&lt;br /&gt;&lt;br /&gt;connetionString ="Data Source = ServerName; Initial Catalog = Databasename; User ID = UserName; Password=Password"&lt;br /&gt;&lt;br /&gt;OLEDB Data Provider Connection String&lt;br /&gt;&lt;br /&gt;connetionString = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source = yourdatabasename.mdb;"&lt;br /&gt;&lt;br /&gt;ODBC Connection String&lt;br /&gt;&lt;br /&gt;connetionString = "Driver = {Microsoft Access Driver (*.mdb)}; DBQ = yourdatabasename.mdb;"&lt;br /&gt;&lt;br /&gt;Note : You have to provide the necessary informations to the Connection String attributes.&lt;br /&gt;&lt;br /&gt;In the following section you can see how to these ADO.NET Data Providers establish connection to the Databse in detail.&lt;br /&gt;&lt;br /&gt;SQL Server Connection&lt;br /&gt;&lt;br /&gt;OLEDB Connection&lt;br /&gt;&lt;br /&gt;ODBC Connection&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7622153032901811896?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7622153032901811896/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7622153032901811896' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7622153032901811896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7622153032901811896'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-connectionstring.html' title='ADONET connectionstring'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2455530178092600800</id><published>2009-05-18T03:47:00.000-07:00</published><updated>2009-05-21T00:05:58.291-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ADO.NET'/><title type='text'>ADO.NET DATASET</title><content type='html'>The ADO.NET DataSet contains DataTableCollection and their DataRelationCollection . It represents a collection of data retrieved from the Data Source. We can use Dataset in combination with DataAdapter class. The DataSet object offers a disconnected data source architecture. The Dataset can work with the data it contain, without knowing the source of the data coming from. That is , the Dataset can work with a disconnected mode from its Data Source . It gives a better advantage over DataReader , because the DataReader is working only with the connection oriented Data Sources.&lt;br /&gt;&lt;br /&gt;The Dataset contains the copy of the data we requested. The Dataset contains more than one Table at a time. We can set up Data Relations between these tables within the DataSet. The data set may comprise data for one or more members, corresponding to the number of rows.&lt;br /&gt;&lt;br /&gt;The DataAdapter object allows us to populate DataTables in a DataSet. We can use Fill method of the DataAdapter for populating data in a Dataset. The DataSet can be filled either from a data source or dynamically. A DataSet can be saved to an XML file and then loaded back into memory very easily. The following links shows more information of Dataset in details.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2455530178092600800?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2455530178092600800/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2455530178092600800' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2455530178092600800'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2455530178092600800'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/adonet-dataset.html' title='ADO.NET DATASET'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-338904416385432687</id><published>2009-05-18T03:42:00.000-07:00</published><updated>2009-05-21T00:06:10.108-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL SERVER'/><title type='text'>DATASET TABLES SQLSERVER</title><content type='html'>The DataSet contains DataTableCollection and their DataRelationCollection. The DataTableCollection contains zero or more DataTable objects. The Dataset may comprise data for one or more members, corresponding to the number of rows. The SqlDataAdapter object allows us to populate DataTables in a DataSet.&lt;br /&gt;&lt;br /&gt;In some situations we have to find how many tables inside the Dataset Object contains . The following VB.NET source code shows how to find the tables inside the Dataset.&lt;br /&gt;&lt;br /&gt;connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt;&lt;br /&gt;sql = "Your SQL Statement Here"&lt;br /&gt;&lt;br /&gt;You have to replace the string with your real time variables.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Imports System.Data.SqlClient&lt;br /&gt;Public Class Form1&lt;br /&gt;   Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;       Dim connetionString As String&lt;br /&gt;       Dim connection As SqlConnection&lt;br /&gt;       Dim command As SqlCommand&lt;br /&gt;       Dim adapter As New SqlDataAdapter&lt;br /&gt;       Dim ds As New DataSet&lt;br /&gt;       Dim tables As DataTable&lt;br /&gt;       Dim i As Integer&lt;br /&gt;       Dim sql As String&lt;br /&gt;&lt;br /&gt; connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"&lt;br /&gt; sql = "Your SQL Statement Here"&lt;br /&gt;       connection = New SqlConnection(connetionString)&lt;br /&gt;&lt;br /&gt;       Try&lt;br /&gt;           connection.Open()&lt;br /&gt;           command = New SqlCommand(sql, connection)&lt;br /&gt;           adapter.SelectCommand = command&lt;br /&gt;           adapter.Fill(ds, "SQL Temp Table")&lt;br /&gt;           adapter.Dispose()&lt;br /&gt;           command.Dispose()&lt;br /&gt;           connection.Close()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;           For Each tables In ds.Tables&lt;br /&gt;               MsgBox(tables.TableName)&lt;br /&gt;           Next&lt;br /&gt;&lt;br /&gt;       Catch ex As Exception&lt;br /&gt;           MsgBox("Can not open connection ! ")&lt;br /&gt;       End Try&lt;br /&gt;   End Sub&lt;br /&gt;End Class&lt;br /&gt; &lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-338904416385432687?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/338904416385432687/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=338904416385432687' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/338904416385432687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/338904416385432687'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/dataset-tables-sqlserver.html' title='DATASET TABLES SQLSERVER'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5919385537855661748</id><published>2009-05-18T03:15:00.000-07:00</published><updated>2009-05-18T03:22:39.702-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String EndsWith</title><content type='html'>EndsWith in VB.NET String Class check if the Parameter String  EndsWith the Specified String&lt;br /&gt;&lt;br /&gt;System.String.EndsWith(String suffix) as Boolean&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;suffix - The passing String for it EndsWith&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Boolean - Yes/No&lt;br /&gt;&lt;br /&gt;If the String EndsWith the Parameter String it returns True&lt;br /&gt;&lt;br /&gt;If the String doesnt EndsWith the Parameter String it return False&lt;br /&gt;&lt;br /&gt;For ex : "This is a Test".EndsWith("Test") returns True&lt;br /&gt;&lt;br /&gt;"This is a Test".EndsWith("is") returns False&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : If the argument is null&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, &lt;br /&gt;  ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;&lt;br /&gt;        Dim str As String&lt;br /&gt;        str = "VB.NET TOP 10 BOOKS"&lt;br /&gt;        If str.EndsWith("BOOKS") = True Then&lt;br /&gt;            MsgBox("The String EndsWith 'BOOKS' ")&lt;br /&gt;        Else&lt;br /&gt;            MsgBox("The String does not EndsWith 'BOOKS'")&lt;br /&gt;        End If&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5919385537855661748?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5919385537855661748/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5919385537855661748' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5919385537855661748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5919385537855661748'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-endswith.html' title='String EndsWith'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-186453639112216870</id><published>2009-05-18T03:14:00.000-07:00</published><updated>2009-05-18T03:23:14.301-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Split</title><content type='html'>Vb.Net String Split function returns an array of String containing the substrings delimited by the given System.Char array.&lt;br /&gt;&lt;br /&gt;Public Function Split(ByVal ParamArray separator() As Char) As String()&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;separator - the given delimiter&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;An array of Strings delimited by one or more characters in separator&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;&lt;br /&gt;        Dim str As String&lt;br /&gt;        Dim strArr() As String&lt;br /&gt;        Dim count As Integer&lt;br /&gt;        str = "vb.net split test"&lt;br /&gt;        strArr = str.Split(" ")&lt;br /&gt;        For count = 0 To strArr.Length - 1&lt;br /&gt;            MsgBox(strArr(count))&lt;br /&gt;        Next&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-186453639112216870?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/186453639112216870/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=186453639112216870' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/186453639112216870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/186453639112216870'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-split.html' title='String Split'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1059365806889391938</id><published>2009-05-18T03:13:00.002-07:00</published><updated>2009-05-18T03:27:53.716-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Substring</title><content type='html'>Substring in  Vb.Net String Class returns a new string that is a substring of this string. The substring begins at the specified given index and extended up to the given length.&lt;br /&gt;&lt;br /&gt;Public Function Substring(ByVal startIndex As Integer, ByVal length As Integer) As String&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;startIndex: The index of the start of the substring.&lt;br /&gt;&lt;br /&gt;length: The number of characters in the substring.&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;The specified substring.&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentOutOfRangeException : the beginIndex or length less than zero, or the begin index + length not within the specified string&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;&lt;br /&gt;        Dim str As String&lt;br /&gt;        Dim retString As String&lt;br /&gt;        str = "This is substring test"&lt;br /&gt;        retString = str.Substring(8, 9)&lt;br /&gt;        MsgBox(retString)&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1059365806889391938?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1059365806889391938/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1059365806889391938' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1059365806889391938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1059365806889391938'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-substring.html' title='String Substring'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3358234228520943078</id><published>2009-05-18T03:13:00.001-07:00</published><updated>2009-05-18T03:23:21.714-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Chars</title><content type='html'>The  VB.NET String Chars method return the character at the specified index of an instance&lt;br /&gt;&lt;br /&gt;System.String.Chars(ByVal index As Integer) As Char&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;Integer index - The character position in the returned Character.&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Char - The return Character.&lt;br /&gt;&lt;br /&gt;For ex :&lt;br /&gt;&lt;br /&gt;"Return test".Chars(3) return a single character 'u'&lt;br /&gt;&lt;br /&gt;If u pass a number more than String length will return an exception&lt;br /&gt;&lt;br /&gt;"Return test".Chars(25) will throw a System.IndexOutOfRangeException&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.IndexOutOfRangeException : The index is less than zero or greater than the length of String Object&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String = "Returned Character Chars()"&lt;br /&gt;        Dim singleChar As Char&lt;br /&gt;        singleChar = str.Chars(3)&lt;br /&gt;        MsgBox(singleChar)&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3358234228520943078?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3358234228520943078/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3358234228520943078' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3358234228520943078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3358234228520943078'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-chars.html' title='String Chars'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7767972446483927144</id><published>2009-05-18T03:12:00.000-07:00</published><updated>2009-05-18T03:21:54.620-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Clone</title><content type='html'>The  VB.NET String Clone() method returns a reference to this instance of String.&lt;br /&gt;&lt;br /&gt;Public Function Clone() As Object&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Object : Return the instance of the String&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String = "Clone() Test"&lt;br /&gt;        Dim clonedString As String&lt;br /&gt;        clonedString = str.Clone()&lt;br /&gt;        MsgBox(clonedString)&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7767972446483927144?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7767972446483927144/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7767972446483927144' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7767972446483927144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7767972446483927144'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-clone.html' title='String Clone'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7837079457189471342</id><published>2009-05-18T03:11:00.002-07:00</published><updated>2009-05-18T03:25:37.041-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Compare</title><content type='html'>The  VB.NET String Compare function is use to compare two String Objects.&lt;br /&gt;&lt;br /&gt;System.String.Compare(String str1,String str2, Boolean ) As Integer&lt;br /&gt;&lt;br /&gt;It returns an Integer indication lexical relationship between the two comprehends&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String str1 : Parameter String&lt;br /&gt;&lt;br /&gt;String str2 : Parameter String&lt;br /&gt;&lt;br /&gt;Boolean True/False Indication to check the String with case sensitive or without case sensitive&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Integer : returns less than zero, zero or greater than zero.&lt;br /&gt;&lt;br /&gt;Less than zero : str1 is less than str2&lt;br /&gt;&lt;br /&gt;zero : str1 is equal to str2&lt;br /&gt;&lt;br /&gt;Greater than zero : str1 is grater than str2&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str1 As String&lt;br /&gt;        Dim str2 As String&lt;br /&gt;&lt;br /&gt;        str1 = "vb.net"&lt;br /&gt;        str2 = "VB.NET"&lt;br /&gt;&lt;br /&gt;        Dim result As Integer&lt;br /&gt;&lt;br /&gt;        result = String.Compare(str1, str2)&lt;br /&gt;        MsgBox(result)&lt;br /&gt;&lt;br /&gt;        result = String.Compare(str1, str2, True)&lt;br /&gt;        MsgBox(result)&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7837079457189471342?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7837079457189471342/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7837079457189471342' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7837079457189471342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7837079457189471342'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-compare.html' title='String Compare'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6720274339927011452</id><published>2009-05-18T03:11:00.001-07:00</published><updated>2009-05-18T03:25:25.546-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Contains</title><content type='html'>The  Contains method in the  VB.NET String Class check the specified parameter String exist in the String&lt;br /&gt;&lt;br /&gt;System.String.Contains(String str) As Boolean&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String str - input String for search&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Boolean - Yes/No&lt;br /&gt;&lt;br /&gt;If the str Contains in the String then it returns true&lt;br /&gt;&lt;br /&gt;If the str does not Contains in the String it returns False&lt;br /&gt;&lt;br /&gt;For ex: "This is a Test".Contains("is") return True&lt;br /&gt;&lt;br /&gt;"This is a Test".Contains("yes") return False&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : If the argument is null&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String&lt;br /&gt;        str = "VB.NET TOP 10 BOOKS"&lt;br /&gt;        If str.Contains("TOP") = True Then&lt;br /&gt;            MsgBox("The string Contains() 'TOP' ")&lt;br /&gt;        Else&lt;br /&gt;            MsgBox("The String does not Contains() 'TOP'")&lt;br /&gt;        End If&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6720274339927011452?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6720274339927011452/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6720274339927011452' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6720274339927011452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6720274339927011452'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-contains.html' title='String Contains'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2982590164842822804</id><published>2009-05-18T03:10:00.000-07:00</published><updated>2009-05-18T03:23:29.214-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Copy</title><content type='html'>VB.NET String Copy method is create a new String object with the same content&lt;br /&gt;&lt;br /&gt;System.String.Copy(ByVal str As String) As String&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String str : The argument String for Copy method&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;String : Returns a new String as the same content of argument String&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : If the argument is null.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str1 As String&lt;br /&gt;        Dim str2 As String&lt;br /&gt;&lt;br /&gt;        str1 = "VB.NET Copy() test"&lt;br /&gt;        str2 = String.Copy(str1)&lt;br /&gt;&lt;br /&gt;        MsgBox(str2)&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2982590164842822804?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2982590164842822804/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2982590164842822804' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2982590164842822804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2982590164842822804'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-copy.html' title='String Copy'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6695410451598133614</id><published>2009-05-18T03:08:00.000-07:00</published><updated>2009-05-18T03:23:35.654-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String CopyTo</title><content type='html'>VB.NET String CopyTo method Copies a specified number of characters from a specified position in this instance to a specified position in an array of characters.&lt;br /&gt;&lt;br /&gt;System.String.CopyTo(ByVal sourceIndex As Integer, ByVal destination() As Char, ByVal destinationIndex As Integer, ByVal count As Integer)&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;Integer sourceIndex : The starting position of the source String&lt;br /&gt;&lt;br /&gt;Char destination() : The character Array&lt;br /&gt;&lt;br /&gt;Integer destinationIndex : Array element in the destination&lt;br /&gt;&lt;br /&gt;Integer count : The number of characters to destination&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : If the destination is null&lt;br /&gt;&lt;br /&gt;System.ArgumentOutOfRangeException :&lt;br /&gt;&lt;br /&gt;Source Index, DestinationIndes or Count is a -ve value&lt;br /&gt;&lt;br /&gt;Count is greater than the length of the substring from startIndex to the end of this instance&lt;br /&gt;&lt;br /&gt;count is greater than the length of the subarray from destinationIndex to the end of destination&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str1 As String = "CopyTo() sample"&lt;br /&gt;        Dim chrs(5) As Char&lt;br /&gt;        str1.CopyTo(0, chrs, 0, 6)&lt;br /&gt;        MsgBox(chrs(0) + chrs(1) + chrs(2) + chrs(3) + chrs(4) + chrs(5))&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6695410451598133614?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6695410451598133614/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6695410451598133614' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6695410451598133614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6695410451598133614'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-copyto.html' title='String CopyTo'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7326639214536224941</id><published>2009-05-18T03:07:00.000-07:00</published><updated>2009-05-18T03:25:08.395-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Equals</title><content type='html'>VB.NET  String Equals function is to check the specified two String Object values are same or not&lt;br /&gt;&lt;br /&gt;System.String.Equals(String str1, String str2) As Boolean&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String str1 : The String argument&lt;br /&gt;&lt;br /&gt;String str2 : The String argument&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Boolean : Yes/No&lt;br /&gt;&lt;br /&gt;It return the values of the two String Objects are same&lt;br /&gt;&lt;br /&gt;For ex :&lt;br /&gt;&lt;br /&gt;Str1 = "Equals()"&lt;br /&gt;&lt;br /&gt;Str2 = "Equals()"&lt;br /&gt;&lt;br /&gt;String.Equals(Str1,Str2) returns True&lt;br /&gt;&lt;br /&gt;String.Equals(Str1.ToLower,Str2) returns False&lt;br /&gt;&lt;br /&gt;Because the String Objects values are different&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str1 As String = "Equals"&lt;br /&gt;        Dim str2 As String = "Equals"&lt;br /&gt;&lt;br /&gt;        If String.Equals(str1, str2) Then&lt;br /&gt;            MsgBox("Strings are Equal() ")&lt;br /&gt;        Else&lt;br /&gt;            MsgBox("Strings are not Equal() ")&lt;br /&gt;        End If&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7326639214536224941?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7326639214536224941/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7326639214536224941' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7326639214536224941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7326639214536224941'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-equals.html' title='String Equals'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1768362191178261891</id><published>2009-05-18T03:06:00.000-07:00</published><updated>2009-05-18T03:24:40.241-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Format</title><content type='html'>String Format method replace the argument Object into a text equivalent System.Striing.&lt;br /&gt;&lt;br /&gt;System.Format(ByVal format As String, ByVal arg0 As Object) As String&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String format : The format String&lt;br /&gt;&lt;br /&gt;The format String Syntax is like {indexNumber:formatCharacter}&lt;br /&gt;&lt;br /&gt;Object arg0 : The object to be formatted.&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;String : The formatted String&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : The format String is null.&lt;br /&gt;&lt;br /&gt;System.FormatException : The format item in format is invalid.&lt;br /&gt;&lt;br /&gt;The number indicating an argument to format is less than zero, or greater than or equal to the number of specified objects to format.&lt;br /&gt;&lt;br /&gt;For ex :&lt;br /&gt;&lt;br /&gt;Currency :&lt;br /&gt;&lt;br /&gt;String.Format("{0:c}", 10) will return $10.00&lt;br /&gt;&lt;br /&gt;The currency symbol ($) displayed depends on the global locale settings.&lt;br /&gt;&lt;br /&gt;Date :&lt;br /&gt;&lt;br /&gt;String.Format("Today's date is {0:D}", DateTime.Now)&lt;br /&gt;&lt;br /&gt;You will get Today's date like : 01 January 2005&lt;br /&gt;&lt;br /&gt;Time :&lt;br /&gt;&lt;br /&gt;String.Format("The current time is {0:T}", DateTime.Now)&lt;br /&gt;&lt;br /&gt;You will get Current Time Like : 10:10:12&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim dNum As Double&lt;br /&gt;        dNum = 32.123456789&lt;br /&gt;        MsgBox("Formated String " &amp; String.Format("{0:n4}", dNum))&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1768362191178261891?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1768362191178261891/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1768362191178261891' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1768362191178261891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1768362191178261891'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-format.html' title='String Format'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2194901590563618906</id><published>2009-05-18T03:05:00.000-07:00</published><updated>2009-05-18T03:24:49.267-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String IndexOf</title><content type='html'>The  IndexOf method in  String Class returns the index of the first occurrence of the specified substring.&lt;br /&gt;&lt;br /&gt;System.String.IndexOf(String str) As Integer&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;str - The parameter string to check its occurrences&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Integer - If the parameter String occurred as a substring in the specified String&lt;br /&gt;&lt;br /&gt;it returns position of the first character of the substring .&lt;br /&gt;&lt;br /&gt;If it does not occur as a substring, -1 is returned.&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException: If the Argument is null.&lt;br /&gt;&lt;br /&gt;For ex:&lt;br /&gt;&lt;br /&gt;"This is a test".IndexOf("Test") returns 10&lt;br /&gt;&lt;br /&gt;"This is a test".IndexOf("vb") returns -1&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String&lt;br /&gt;        str = "VB.NET TOP 10 BOOKS"&lt;br /&gt;        MsgBox(str.IndexOf("BOOKS"))&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2194901590563618906?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2194901590563618906/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2194901590563618906' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2194901590563618906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2194901590563618906'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-indexof.html' title='String IndexOf'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-821422893034781297</id><published>2009-05-18T03:04:00.000-07:00</published><updated>2009-05-18T03:24:56.596-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Insert</title><content type='html'>The  Insert() function in  String Class will insert a String in a specified index in the String instance.&lt;br /&gt;&lt;br /&gt;System.String.Insert(Integer ind, String str) as String&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;ind - The index of the specified string to be inserted.&lt;br /&gt;&lt;br /&gt;str - The string to be inserted.&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;String - The result string.&lt;br /&gt;&lt;br /&gt;Exceptions:&lt;br /&gt;&lt;br /&gt;System.ArgumentOutOfRangeException: startIndex is negative or greater than the length of this instance&lt;br /&gt;&lt;br /&gt;System.ArgumentNullException : If the argument is null.&lt;br /&gt;&lt;br /&gt;For ex:&lt;br /&gt;&lt;br /&gt;"This is Test".Insert(8,"Insert ") returns "This is Insert Test"&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String = "This is VB.NET Test"&lt;br /&gt;        Dim insStr As String = "Insert "&lt;br /&gt;        Dim strRes As String = str.Insert(15, insStr)&lt;br /&gt;        MsgBox(strRes)&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-821422893034781297?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/821422893034781297/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=821422893034781297' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/821422893034781297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/821422893034781297'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-insert.html' title='String Insert'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-7545285492296239285</id><published>2009-05-18T03:02:00.000-07:00</published><updated>2009-05-18T03:25:03.740-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Length</title><content type='html'>The  Length() function in  String Class returned the number of characters occurred in a String.&lt;br /&gt;&lt;br /&gt;System.String.Length() As Integer&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;Integer : The number of characters in the specified String&lt;br /&gt;&lt;br /&gt;For ex:&lt;br /&gt;&lt;br /&gt;"This is a Test".Length() returns 14.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt;    ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;        Dim str As String&lt;br /&gt;        str = "This is a Test"&lt;br /&gt;        MsgBox(str.Length())&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-7545285492296239285?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/7545285492296239285/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=7545285492296239285' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7545285492296239285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/7545285492296239285'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-length.html' title='String Length'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5377276335657255505</id><published>2009-05-18T02:55:00.000-07:00</published><updated>2009-05-18T03:25:14.058-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='String'/><title type='text'>String Concat</title><content type='html'>Concat in VB.NET String Class using for concat two specified String Object&lt;br /&gt;&lt;br /&gt;System.String.Concat(ByVal str1 As String, ByVal str2 As String) As String&lt;br /&gt;&lt;br /&gt;String Concat method returns a new String&lt;br /&gt;&lt;br /&gt;Parameters:&lt;br /&gt;&lt;br /&gt;String str1 : Parameter String&lt;br /&gt;&lt;br /&gt;String str2 : Parameter String&lt;br /&gt;&lt;br /&gt;Returns:&lt;br /&gt;&lt;br /&gt;String : A new String retrun with str1 Concat with str2&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;Public Class Form1&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, _&lt;br /&gt; ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;&lt;br /&gt;        Dim str1 As String&lt;br /&gt;        Dim str2 As String&lt;br /&gt;&lt;br /&gt;        str1 = "Concat() "&lt;br /&gt;        str2 = "Test"&lt;br /&gt;        MsgBox(String.Concat(str1, str2))&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;End Class &lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5377276335657255505?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5377276335657255505/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5377276335657255505' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5377276335657255505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5377276335657255505'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/05/string-concat.html' title='String Concat'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1989869744673254156</id><published>2009-03-07T02:25:00.000-08:00</published><updated>2009-05-18T03:26:54.958-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer Shop'/><title type='text'>Computer Shop Application</title><content type='html'>&lt;center&gt;&lt;h2&gt;This software is use for Computer Shop...&lt;/h2&gt; &lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJOrOfBPXI/AAAAAAAAAHA/IbMLhn13e3E/s1600-h/s10.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 237px;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJOrOfBPXI/AAAAAAAAAHA/IbMLhn13e3E/s320/s10.jpg" alt="" id="BLOGGER_PHOTO_ID_5310393415152778610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;About of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJOqyQELgI/AAAAAAAAAG4/J97NbimubQk/s1600-h/s9.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 219px;" src="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJOqyQELgI/AAAAAAAAAG4/J97NbimubQk/s320/s9.jpg" alt="" id="BLOGGER_PHOTO_ID_5310393407573863938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;Report of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJOqjSB0LI/AAAAAAAAAGw/-3MWcVpkEK8/s1600-h/s8.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 238px;" src="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJOqjSB0LI/AAAAAAAAAGw/-3MWcVpkEK8/s320/s8.jpg" alt="" id="BLOGGER_PHOTO_ID_5310393403555565746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Form for Selling Computer of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJObut7RsI/AAAAAAAAAGo/9sR_UVmw9LI/s1600-h/s7.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 184px;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJObut7RsI/AAAAAAAAAGo/9sR_UVmw9LI/s320/s7.jpg" alt="" id="BLOGGER_PHOTO_ID_5310393148927329986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;You can export your Stock to Excel Format on this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJObhftc4I/AAAAAAAAAGg/nO0EvtNJziU/s1600-h/s6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 246px;" src="http://4.bp.blogspot.com/_NxSOCTqqvJM/SbJObhftc4I/AAAAAAAAAGg/nO0EvtNJziU/s320/s6.jpg" alt="" id="BLOGGER_PHOTO_ID_5310393145378042754" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Form for Export Stock of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SbJMTBs-4zI/AAAAAAAAAGY/HRHqe3bedl8/s1600-h/s5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SbJMTBs-4zI/AAAAAAAAAGY/HRHqe3bedl8/s320/s5.jpg" alt="" id="BLOGGER_PHOTO_ID_5310390800381567794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Form for Insert Stock Computer of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJMS4TqoRI/AAAAAAAAAGQ/2loB9lsCI8g/s1600-h/s4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 245px;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJMS4TqoRI/AAAAAAAAAGQ/2loB9lsCI8g/s320/s4.jpg" alt="" id="BLOGGER_PHOTO_ID_5310390797859463442" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;List Computer of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/SbJMSqNiRXI/AAAAAAAAAGI/afT_zs2bEPM/s1600-h/s3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 244px;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/SbJMSqNiRXI/AAAAAAAAAGI/afT_zs2bEPM/s320/s3.jpg" alt="" id="BLOGGER_PHOTO_ID_5310390794075653490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Input Data Member of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJMSuPr7VI/AAAAAAAAAGA/AEPv_sGtVX0/s1600-h/s2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 239px;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJMSuPr7VI/AAAAAAAAAGA/AEPv_sGtVX0/s320/s2.jpg" alt="" id="BLOGGER_PHOTO_ID_5310390795158416722" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Menu of this software...&lt;br&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SbJMSSMh6TI/AAAAAAAAAF4/pAOcEdruhgM/s1600-h/s1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SbJMSSMh6TI/AAAAAAAAAF4/pAOcEdruhgM/s320/s1.jpg" alt="" id="BLOGGER_PHOTO_ID_5310390787628984626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br&gt;Menu of this software...&lt;br&gt;&lt;br /&gt;&lt;/center&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1989869744673254156?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1989869744673254156/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1989869744673254156' title='2 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1989869744673254156'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1989869744673254156'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/03/computer-shop-application.html' title='Computer Shop Application'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_NxSOCTqqvJM/SbJOrOfBPXI/AAAAAAAAAHA/IbMLhn13e3E/s72-c/s10.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5986040287673994303</id><published>2009-03-07T01:32:00.000-08:00</published><updated>2009-05-18T03:30:32.470-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Chat'/><title type='text'>Aplikasi Chatting</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUxXdHsciI/AAAAAAAAABk/ifO9tmm1wH0/s1600-h/LoginChat.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUxXdHsciI/AAAAAAAAABk/ifO9tmm1wH0/s320/LoginChat.jpg" alt="" id="BLOGGER_PHOTO_ID_5203119223520129570" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_NxSOCTqqvJM/SDUxzNHscjI/AAAAAAAAABs/MsQvf5zl_6E/s1600-h/Client.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_NxSOCTqqvJM/SDUxzNHscjI/AAAAAAAAABs/MsQvf5zl_6E/s320/Client.jpg" alt="" id="BLOGGER_PHOTO_ID_5203119700261499442" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Aplikasi Chatting sangat berguna bagi pengguna internet, disamping kecepatan berinteraksi, juga 'kemudahan' serta 'kemurahan' nya sangat menguntungkan. Aplikasi ini dapat digunakan dalam ruang lingkup yang besar (Internet), dapat dapat juga digunakan dalam ruang lingkup yang kecil (LAN).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5986040287673994303?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5986040287673994303/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5986040287673994303' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5986040287673994303'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5986040287673994303'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/aplikasi-chatting.html' title='Aplikasi Chatting'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUxXdHsciI/AAAAAAAAABk/ifO9tmm1wH0/s72-c/LoginChat.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6005447940855781426</id><published>2009-03-07T01:26:00.000-08:00</published><updated>2009-05-18T03:30:47.047-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><title type='text'>Aplikasi Buku Kas Giro dengan Database</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUvY9HschI/AAAAAAAAABc/NBnJtzMOFnU/s1600-h/BukuKasGiro.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUvY9HschI/AAAAAAAAABc/NBnJtzMOFnU/s320/BukuKasGiro.jpg" alt="" id="BLOGGER_PHOTO_ID_5203117050266677778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Aplikasi Buku Kas Giro digunakan untuk menyimpan data seluruh Giro. Aplikasi ini mempermudah Admin dalam mengaudit data Giro, baik yang sudah lunas maupun yang belum lunas, berdasarkan tanggal jatuh tempo Giro tersebut.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6005447940855781426?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6005447940855781426/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6005447940855781426' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6005447940855781426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6005447940855781426'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/aplikasi-buku-kas-giro-dengan-database.html' title='Aplikasi Buku Kas Giro dengan Database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUvY9HschI/AAAAAAAAABc/NBnJtzMOFnU/s72-c/BukuKasGiro.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5769087799276087241</id><published>2009-03-07T01:16:00.000-08:00</published><updated>2009-05-18T03:30:59.031-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer Shop'/><title type='text'>Penjualan Komputer (Paket) dengan Database</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUt39HscgI/AAAAAAAAABU/GX-5NiMknic/s1600-h/InsertDataPenjualanPaket.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUt39HscgI/AAAAAAAAABU/GX-5NiMknic/s320/InsertDataPenjualanPaket.jpg" alt="" id="BLOGGER_PHOTO_ID_5203115383819366914" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Aplikasi ini sangat baik digunakan dalam Penjualan Komputer secara Paket. Fiture tambahan yang ada:&lt;br /&gt;1. Dapat mengaudit penjualan komputer paket.&lt;br /&gt;2. Dapat menyimpan data pembeli serta spesifikasi komputer yang di beli.&lt;br /&gt;3. Data dapat di print out dengan ukuran faktur.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5769087799276087241?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5769087799276087241/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5769087799276087241' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5769087799276087241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5769087799276087241'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/penjualan-komputer-paket-dengan.html' title='Penjualan Komputer (Paket) dengan Database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_NxSOCTqqvJM/SDUt39HscgI/AAAAAAAAABU/GX-5NiMknic/s72-c/InsertDataPenjualanPaket.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6412560183593500636</id><published>2009-03-07T01:01:00.000-08:00</published><updated>2009-05-18T03:31:13.288-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Computer Shop'/><title type='text'>Aplikasi Customer Service dengan Database</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUritHscfI/AAAAAAAAABM/NZhmJvuo1R4/s1600-h/InsertDataCustomerService.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUritHscfI/AAAAAAAAABM/NZhmJvuo1R4/s320/InsertDataCustomerService.jpg" alt="" id="BLOGGER_PHOTO_ID_5203112819723891186" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Aplikasi Customer Service ini sangat baik digunakan dalam perusahaan ataupun toko Komputer yang memiliki pelayanan di bidang service ataupun klaim Supplier.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6412560183593500636?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6412560183593500636/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6412560183593500636' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6412560183593500636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6412560183593500636'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/aplikasi-customer-service-dengan.html' title='Aplikasi Customer Service dengan Database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUritHscfI/AAAAAAAAABM/NZhmJvuo1R4/s72-c/InsertDataCustomerService.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3103583371314475991</id><published>2009-03-07T00:50:00.000-08:00</published><updated>2009-05-18T03:31:22.569-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><title type='text'>Aplikasi Absensi dengan Database</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUn4dHsceI/AAAAAAAAABE/RNNqMRwEqQs/s1600-h/AbsensiUtama.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUn4dHsceI/AAAAAAAAABE/RNNqMRwEqQs/s320/AbsensiUtama.jpg" alt="" id="BLOGGER_PHOTO_ID_5203108795339534818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Aplikasi ini dapat digunakan untuk mendata absensi pegawai dalam satu perusahaan skala menengah. Absensi pegawai sangat penting dalam perusahaan, karena berpengaruh terhadap perkembangan perusahaan, dan perhitungan gaji pegawai.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3103583371314475991?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3103583371314475991/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3103583371314475991' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3103583371314475991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3103583371314475991'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/aplikasi-absensi-dengan-database.html' title='Aplikasi Absensi dengan Database'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/SDUn4dHsceI/AAAAAAAAABE/RNNqMRwEqQs/s72-c/AbsensiUtama.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5813158750578158385</id><published>2009-03-07T00:20:00.000-08:00</published><updated>2009-05-18T03:33:35.608-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Shop'/><title type='text'>Program Aplikasi Transaksi Penjualan</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUgktHscdI/AAAAAAAAAA0/zPpFGmfJNBo/s1600-h/Transaksi.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUgktHscdI/AAAAAAAAAA0/zPpFGmfJNBo/s320/Transaksi.jpg" alt="" id="BLOGGER_PHOTO_ID_5203100759455723986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Program ini sangat berguna bagi perusahaan skala menengah, terutama untuk Toko yang bergerak di bidang Penjualan Komputer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5813158750578158385?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5813158750578158385/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5813158750578158385' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5813158750578158385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5813158750578158385'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/program-aplikasi-transaksi-penjualan.html' title='Program Aplikasi Transaksi Penjualan'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_NxSOCTqqvJM/SDUgktHscdI/AAAAAAAAAA0/zPpFGmfJNBo/s72-c/Transaksi.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2147038568836479987</id><published>2009-03-04T02:45:00.001-08:00</published><updated>2009-05-18T03:31:59.351-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='USB'/><title type='text'>USB Detector</title><content type='html'>This Software is use for Detect your Flash Drive &lt;br&gt; if you put in your flash drive, picture will change like this...&lt;br&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sa5b7AnsdRI/AAAAAAAAAFw/el3RsaU4tkE/s1600-h/screenshoot2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 259px;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sa5b7AnsdRI/AAAAAAAAAFw/el3RsaU4tkE/s320/screenshoot2.jpg" alt="" id="BLOGGER_PHOTO_ID_5309282080053294354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;but, if your flash pull off, picture will change like this... &lt;br&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sa5b6w9Jm6I/AAAAAAAAAFo/N_lVO4DAibI/s1600-h/screenshoot1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 251px;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sa5b6w9Jm6I/AAAAAAAAAFo/N_lVO4DAibI/s320/screenshoot1.jpg" alt="" id="BLOGGER_PHOTO_ID_5309282075848317858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Download &lt;a href=http://uploading.com/files/7TF9Z1CE/USBDetector.rar.html&gt;here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2147038568836479987?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2147038568836479987/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2147038568836479987' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2147038568836479987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2147038568836479987'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/03/usb-detector.html' title='USB Detector'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/Sa5b7AnsdRI/AAAAAAAAAFw/el3RsaU4tkE/s72-c/screenshoot2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2576824571048802475</id><published>2009-03-03T00:33:00.000-08:00</published><updated>2009-05-18T03:32:22.173-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Shop'/><title type='text'>Cellular Shop Application</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sazv5S7dobI/AAAAAAAAAFg/xQlW_2nWUpI/s1600-h/b.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 200px;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/Sazv5S7dobI/AAAAAAAAAFg/xQlW_2nWUpI/s320/b.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5308881828375798194" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_NxSOCTqqvJM/Sazv5IonTwI/AAAAAAAAAFY/2iAYAmByZjg/s1600-h/a.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 200px;" src="http://2.bp.blogspot.com/_NxSOCTqqvJM/Sazv5IonTwI/AAAAAAAAAFY/2iAYAmByZjg/s320/a.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5308881825612386050" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SazuJH8cQRI/AAAAAAAAAFQ/tMfbTJMP9gs/s1600-h/c.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 200px;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SazuJH8cQRI/AAAAAAAAAFQ/tMfbTJMP9gs/s320/c.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5308879901281763602" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2576824571048802475?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2576824571048802475/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2576824571048802475' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2576824571048802475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2576824571048802475'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2009/03/aplikasi-counter-handphone.html' title='Cellular Shop Application'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/Sazv5S7dobI/AAAAAAAAAFg/xQlW_2nWUpI/s72-c/b.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1168596029635916850</id><published>2008-06-05T06:02:00.000-07:00</published><updated>2009-05-18T03:34:59.958-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Crack Your Application (Java)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/SEfln9HsctI/AAAAAAAAAD4/KcgCC0tzJ3k/s1600-h/crack.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_NxSOCTqqvJM/SEfln9HsctI/AAAAAAAAAD4/KcgCC0tzJ3k/s200/crack.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5208383968661762770" /&gt;&lt;/a&gt;&lt;br /&gt;How To Crack Your Application&lt;br /&gt;&lt;br /&gt;this function is use for create crack your application&lt;br /&gt;&lt;br /&gt;add this code....&lt;br /&gt;&lt;br /&gt;........&lt;br /&gt;String pass,a;&lt;br /&gt;public void checkText()&lt;br /&gt;{&lt;br /&gt;    File file = new File("crack.inf");&lt;br /&gt;    try&lt;br /&gt;    {&lt;br /&gt;        FileInputStream fin = new FileInputStream(file);&lt;br /&gt;        byte fileContent[] = new byte[(int)file.length()];&lt;br /&gt;        fin.read(fileContent);&lt;br /&gt;        pass = new String(fileContent);&lt;br /&gt;               }&lt;br /&gt;    catch(FileNotFoundException e)&lt;br /&gt;    {}&lt;br /&gt;    catch(IOException ioe)&lt;br /&gt;    {}&lt;br /&gt;           a="freddy";&lt;br /&gt;    System.out.println(a+" "+pass);&lt;br /&gt;    if(a.equals(pass))&lt;br /&gt;    {javax.swing.JOptionPane.showMessageDialog(this,"Thank You For Buy Client Fredchat Special...!","Thank You!",javax.swing.JOptionPane.INFORMATION_MESSAGE);}&lt;br /&gt;    else&lt;br /&gt;    {javax.swing.JOptionPane.showMessageDialog(this,"Cannot Run, Please Buy Real Client Special...!","Warning",javax.swing.JOptionPane.WARNING_MESSAGE);System.exit(0);}&lt;br /&gt;}&lt;br /&gt;........&lt;br /&gt;&lt;br /&gt;don't forget to add&lt;br /&gt;import java.io.*;&lt;br /&gt;&lt;br /&gt;create 'crack.inf' in current folder&lt;br /&gt;in 'crack.inf' file, u must write =&gt;&lt;br /&gt;&lt;br /&gt;&lt;without space=""&gt;(without space)freddy&lt;without space=""&gt;(without space)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Inspire....&lt;/without&gt;&lt;without space=""&gt;Inspire....&lt;/without&gt;&lt;without space=""&gt;Inspire....&lt;br /&gt;:-&gt;&lt;br /&gt;&lt;/without&gt;&lt;without space=""&gt;&lt;br /&gt;&lt;/without&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1168596029635916850?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1168596029635916850/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1168596029635916850' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1168596029635916850'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1168596029635916850'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/crack-your-application-java.html' title='Crack Your Application (Java)'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/SEfln9HsctI/AAAAAAAAAD4/KcgCC0tzJ3k/s72-c/crack.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5655228092599904052</id><published>2008-06-05T05:49:00.000-07:00</published><updated>2009-05-18T03:37:16.235-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Confirm Exit With JOptionPane</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SEfiXdHscsI/AAAAAAAAADw/tOTcP-1A9HY/s1600-h/exit.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SEfiXdHscsI/AAAAAAAAADw/tOTcP-1A9HY/s200/exit.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5208380386659037890" /&gt;&lt;/a&gt;&lt;br /&gt;How to confirm Exit with JOptionPane....&lt;br /&gt;&lt;br /&gt;this is the answer....&lt;br /&gt;&lt;br /&gt;.......&lt;br /&gt;public void questionExit(String msg, String title)&lt;br /&gt; {&lt;br /&gt;            int ok = JOptionPane.showConfirmDialog(this, msg,title,JOptionPane.YES_NO_OPTION);&lt;br /&gt;     if(ok == 0)&lt;br /&gt;     {&lt;br /&gt;             System.exit(0);&lt;br /&gt;     }&lt;br /&gt; }&lt;br /&gt;........&lt;br /&gt;&lt;br /&gt;call this function with&lt;br /&gt;.......&lt;br /&gt;questionExit("Do You Want to Exit???", "Exit");&lt;br /&gt;.......&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;i hope it will inspire u....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5655228092599904052?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5655228092599904052/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5655228092599904052' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5655228092599904052'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5655228092599904052'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/confirm-exit-with-joptionpane.html' title='Confirm Exit With JOptionPane'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_NxSOCTqqvJM/SEfiXdHscsI/AAAAAAAAADw/tOTcP-1A9HY/s72-c/exit.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-5380639584944520557</id><published>2008-06-05T05:38:00.000-07:00</published><updated>2009-05-18T03:35:26.757-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Play Sound in Java</title><content type='html'>this  Class is use for playing Sound(.wav format)&lt;br /&gt;&lt;br /&gt;......&lt;br /&gt;public class SoundEffect {&lt;br /&gt; String name;&lt;br /&gt; /** Creates a new instance of SoundEffect */&lt;br /&gt; public SoundEffect(String code) {&lt;br /&gt;     this.name=code;&lt;br /&gt;     try&lt;br /&gt;     {&lt;br /&gt;         InputStream iStream = new FileInputStream("images/"+name+".wav");&lt;br /&gt;         AudioStream aStream = new AudioStream(iStream );&lt;br /&gt;         AudioPlayer.player.start(aStream );&lt;br /&gt;     }&lt;br /&gt;     catch(Exception e)&lt;br /&gt;     {&lt;br /&gt;         System.out.println(e);&lt;br /&gt;     }&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt;.........&lt;br /&gt;&lt;br /&gt;don't forget to add&lt;br /&gt;import sun.audio.*;&lt;br /&gt;import java.io.*;&lt;br /&gt;&lt;br /&gt;name = name of your .wav file&lt;br /&gt;&lt;br /&gt;tada#^$*&amp;amp;%^....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-5380639584944520557?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/5380639584944520557/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=5380639584944520557' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5380639584944520557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/5380639584944520557'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/play-sound-in-java.html' title='Play Sound in Java'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1610734650011408007</id><published>2008-06-05T05:32:00.000-07:00</published><updated>2009-05-18T03:35:34.333-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Save Words on TextArea in Java</title><content type='html'>put this code as function.&lt;br /&gt;&lt;br /&gt;.......&lt;br /&gt;public void saveArea()&lt;br /&gt;  {&lt;br /&gt;      String jam=tJam.getText().toString();&lt;br /&gt;      try {&lt;br /&gt;          JFileChooser jfc=new JFileChooser();&lt;br /&gt;          jfc.showSaveDialog(this);&lt;br /&gt;          File file= jfc.getSelectedFile();&lt;br /&gt;          String fileName= file.getPath();&lt;br /&gt;          String textfile= aMessage.getText();&lt;br /&gt;          RandomAccessFile logFile =new RandomAccessFile(fileName + ".txt","rw");&lt;br /&gt;          logFile.seek(logFile.length());&lt;br /&gt;          logFile.writeBytes(textfile);&lt;br /&gt;          aMessage.append("data saved! ( "+jam+" )"+ "\n");&lt;br /&gt;      } catch(Exception e) {&lt;br /&gt;           aMessage.append("data not saved. ( "+jam+" )"+ "\n");&lt;br /&gt;      }&lt;br /&gt;  }&lt;br /&gt;......&lt;br /&gt;&lt;br /&gt;tJam = Text of Timer.&lt;br /&gt;aMessage = Text Area name&lt;br /&gt;&lt;br /&gt;don't forget to add&lt;br /&gt;import java.io.*; &lt;br /&gt;&lt;br /&gt;Thanx....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1610734650011408007?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1610734650011408007/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1610734650011408007' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1610734650011408007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1610734650011408007'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/save-words-on-textarea-in-java.html' title='Save Words on TextArea in Java'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-6448218564542203564</id><published>2008-06-05T05:15:00.000-07:00</published><updated>2009-05-18T03:35:40.735-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Set Icon Title Image in Java</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_NxSOCTqqvJM/SEffKtHscrI/AAAAAAAAADo/EBCS235ihlw/s1600-h/title.jpg"&gt;&lt;img src="http://4.bp.blogspot.com/_NxSOCTqqvJM/SEffKtHscrI/AAAAAAAAADo/EBCS235ihlw/s200/title.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5208376869080822450" /&gt;&lt;/a&gt;&lt;br /&gt;How To Set Your Image to Title Application of Java&lt;br /&gt;&lt;br /&gt;You  must add this code on the Constructor&lt;br /&gt;&lt;br /&gt;.....&lt;br /&gt;Image bd=Toolkit.getDefaultToolkit().getImage("logo2.png");&lt;br /&gt;    setIconImage(bd);&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;NB: put image to current folder of the Application&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-6448218564542203564?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/6448218564542203564/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=6448218564542203564' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6448218564542203564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/6448218564542203564'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/set-icon-image-in-java.html' title='Set Icon Title Image in Java'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_NxSOCTqqvJM/SEffKtHscrI/AAAAAAAAADo/EBCS235ihlw/s72-c/title.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-1430583346976536779</id><published>2008-06-05T04:58:00.000-07:00</published><updated>2009-05-18T03:35:47.710-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Enter Press Action (Java)</title><content type='html'>You can do an action with key enter pressed&lt;br /&gt;for this action u can add this code...&lt;br /&gt;&lt;br /&gt;this is a function in Class&lt;br /&gt;&lt;br /&gt;......&lt;br /&gt;private void tTextFieldKeyPressed(java.awt.event.KeyEvent evt)&lt;br /&gt;{//GEN-FIRST:event_tTextFieldKeyPressed&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;    int menter=evt.VK_ENTER;&lt;br /&gt;    int mkode=evt.getKeyCode();&lt;br /&gt;    System.out.println(mkode+" "+menter);&lt;br /&gt;    if(mkode==menter) {&lt;br /&gt;        login();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;......&lt;br /&gt;&lt;br /&gt;then add this code on the Constructor&lt;br /&gt;......&lt;br /&gt;tTexField.addKeyListener(new java.awt.event.KeyAdapter() {&lt;br /&gt;          public void keyPressed(java.awt.event.KeyEvent evt) {&lt;br /&gt;              tTextFieldKeyPressed(evt);&lt;br /&gt;          }&lt;br /&gt;      });&lt;br /&gt;......&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;tTextField is the name of text field that give the (keyPress) action&lt;br /&gt;&lt;br /&gt;login(); this function will be called in this action (Enter Press Action)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-1430583346976536779?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/1430583346976536779/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=1430583346976536779' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1430583346976536779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/1430583346976536779'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/enter-press-action-java.html' title='Enter Press Action (Java)'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-9134284665868741886</id><published>2008-06-05T04:42:00.000-07:00</published><updated>2009-05-18T03:35:54.694-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Tutorial Running Text</title><content type='html'>&lt;strong&gt;Running Text in Java (on the Title Bar)&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;use this code...&lt;br /&gt;&lt;br /&gt;public class FrameSample extends JFrame&lt;br /&gt;{&lt;br /&gt; String name = "Sample Frame Title";&lt;br /&gt;public void FrameSample()&lt;br /&gt;{&lt;br /&gt;RunningText rt = new RunningText(name);&lt;br /&gt;rt.start();&lt;br /&gt;}&lt;br /&gt;public static void main(String[]args)&lt;br /&gt;{&lt;br /&gt;FrameSample fs = new  FrameSample();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class RunningText extends Thread&lt;br /&gt;{&lt;br /&gt;String title;&lt;br /&gt;public RunningText(String name)&lt;br /&gt;{&lt;br /&gt;this.title=name;&lt;br /&gt;}&lt;br /&gt;public void run()&lt;br /&gt;{&lt;br /&gt;while(true)&lt;br /&gt;{&lt;br /&gt;display();&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;sleep(100);&lt;br /&gt;}&lt;br /&gt;catch(InterruptedException e)&lt;br /&gt;{&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;public void display()&lt;br /&gt;{&lt;br /&gt;String name2=title.substring(1)+title.charAt(0);&lt;br /&gt;title=name2;&lt;br /&gt;setTitle(name2);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-9134284665868741886?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/9134284665868741886/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=9134284665868741886' title='1 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/9134284665868741886'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/9134284665868741886'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/tutorial-running-text.html' title='Tutorial Running Text'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3503759334523523254</id><published>2008-06-02T01:15:00.001-07:00</published><updated>2009-05-18T03:36:23.388-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Application'/><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Login Server</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_NxSOCTqqvJM/SEOsadHscpI/AAAAAAAAADY/85eRwiq9nss/s1600-h/Login+Server.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_NxSOCTqqvJM/SEOsadHscpI/AAAAAAAAADY/85eRwiq9nss/s200/Login+Server.jpg" alt="" id="BLOGGER_PHOTO_ID_5207195164663902866" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3503759334523523254?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3503759334523523254/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3503759334523523254' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3503759334523523254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3503759334523523254'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/login-server.html' title='Login Server'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_NxSOCTqqvJM/SEOsadHscpI/AAAAAAAAADY/85eRwiq9nss/s72-c/Login+Server.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-9073824691708876574</id><published>2008-06-02T01:12:00.000-07:00</published><updated>2008-12-12T21:03:34.137-08:00</updated><title type='text'>Client Chat with Theme</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_NxSOCTqqvJM/SEOr89HscoI/AAAAAAAAADQ/vNaVQVhN6gs/s1600-h/Client_Theme.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_NxSOCTqqvJM/SEOr89HscoI/AAAAAAAAADQ/vNaVQVhN6gs/s200/Client_Theme.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5207194657857761922" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-9073824691708876574?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/9073824691708876574/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=9073824691708876574' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/9073824691708876574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/9073824691708876574'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/06/client-chat-with-theme.html' title='Client Chat with Theme'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_NxSOCTqqvJM/SEOr89HscoI/AAAAAAAAADQ/vNaVQVhN6gs/s72-c/Client_Theme.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-3908852538551871235</id><published>2008-04-22T06:05:00.000-07:00</published><updated>2008-05-22T23:39:26.283-07:00</updated><title type='text'>Contact Us</title><content type='html'>need information:&lt;br /&gt;&lt;br /&gt;freddyniit@gmail.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-3908852538551871235?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/3908852538551871235/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=3908852538551871235' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3908852538551871235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/3908852538551871235'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/04/contact-us.html' title='Contact Us'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5660712682364060992.post-2477728376124351282</id><published>2008-04-22T05:48:00.000-07:00</published><updated>2009-05-18T03:37:32.009-07:00</updated><title type='text'>About Gallery Java Application</title><content type='html'>Whether you are on a personal mission, with internet business agenda in mind or a corporate trying to leverage your position in the cyber world, or a software developer house trying to outsource projects to Asian programmers, we are here for you.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We have a solid team of development ready to make an impact that your ideas suppose to bring you. we have line of expert in web development, desktop application and graphic design.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Web Development&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We work on various platform, From pure hand coded PHP-MySQL, ASP.Net, JSP, to integrated Content Management System (CMS) that can bring a solutions to your business requirements. We have coders that can provide dynamic website with web 2.0 style and feature-rich with Ajax experience.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CMS Expertise: Joomla, WordPress&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Graphic Design&lt;br /&gt;&lt;br /&gt;Need partner to produce quality design for your frequent promotions? leave it to us!&lt;br /&gt;&lt;br /&gt;From Logo creation, banner, flyer, brochure, poster, flash advertisement and any corporate identity, we will give you satisfaction that meets your business requirements.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Desktop Application&lt;br /&gt;&lt;br /&gt;We have years of experience working on various platform, from the widely used Java platform, C# to VB.Net, all at your service in building solutions for your organizations.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5660712682364060992-2477728376124351282?l=tobaaplikasi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tobaaplikasi.blogspot.com/feeds/2477728376124351282/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5660712682364060992&amp;postID=2477728376124351282' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2477728376124351282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5660712682364060992/posts/default/2477728376124351282'/><link rel='alternate' type='text/html' href='http://tobaaplikasi.blogspot.com/2008/05/about-gallery-java-application.html' title='About Gallery Java Application'/><author><name>Freddy Marbun</name><uri>http://www.blogger.com/profile/17243830293799593111</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
