Saturday, September 12, 2009

Hi :- kasa, kita, kuruma, kemuri, koe

かさ (kasa) --- umbrella


きた (kita) --- north


くるま (kuruma) --- car


けむり (kemuri) --- smoke



こえ (koe) --- voice

Merge Cells

Merge Columns




Merge Rows

Wednesday, September 9, 2009

Visual Basic 2008 Tutorial

http://www.vbtutor.net/vb2008/vb2008_lesson1.html

-similar to Visual Basic 2005 but it has added many new features
-full fledged Object-Oriented Programming(OOP) Language, caught up with other OOP languages such as C++, Java,C#
-Visual Basic 2008 Express Edition is available free for download from the Microsoft site.


---------------------


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim num1, num2, sum As Single
num1 = 100num2 = 200
sum = num1 + num2
MsgBox(" The Sum of " & num1 & " and " & num2 & " is " & sum)

End Sub
---------------------

Hi :- asa, inu, umi, eki, okane

あさ (asa) --- morning


いぬ (inu) --- dog



うみ (umi) --- sea



えき (eki) --- station



おかね (okane) --- money

Learn Japanese Link

Below are free Japanese learning's link that quite useful. Thanks for the authors for sharing.










SQL Tutorial Link

http://www.1keydata.com/sql/sqldrop.html

Drop / Delete Table

Delete Whole Table
DROP TABLE "table_name"
Example : DROP TABLE customer


Delete all data in Table, table still maintain
DELETE FROM "table_name"
Example : DELETE FROM customer