
Thursday, October 15, 2009
Monday, October 12, 2009
Saturday, October 10, 2009
Basic Accounting篇
Tuesday, October 6, 2009
自学日语篇目录
日期 | 类别 | 目录 |
| 200909 | Alphbets | Hi :- Part 1 : a, i, u, e, o |
| 200909 | Words | Hi :- asa, inu, umi, eki, okane |
| 200909 | Hi :- kasa, kita, kuruma, kemuri, koe |
Katakana Introduction |
Romaji |
| 200910 | Japanese Daily Use Words |
| 200910 | Conversation | Japanese Short Conversation |
Others |
| 200909 | Others | Learn Japanese Link |
Wednesday, September 16, 2009
Crystal Report Useful Link

video:-
http://www.teachucomp.com/tutorsamples.htm
pdf:-
http://www.teachucomp.com/samples/PDFSamples/Crystal.pdf
Others:-
http://www.businessobjects.com/products/dev_zone/net/downloads.asp?ref=devzone_netzone_navhttp://support.businessobjects.com/downloads/samples.asphttp://www.businessobjects.com/global/pdf/products/crystalvision/crystal_vision_server_getting_started.pdf
http://www.businessobjects.com/
http://www.crystaldevelopersjournal.com/http://www.crystaldevelopersjournal.com/artman/publish/cat_index_12.shtml
Saturday, September 12, 2009
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.
-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
num1 = 100num2 = 200
sum = num1 + num2
MsgBox(" The Sum of " & num1 & " and " & num2 & " is " & sum)
End Sub
---------------------
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
DROP TABLE "table_name"
Example : DROP TABLE customer
Delete all data in Table, table still maintain
DELETE FROM "table_name"
Example : DELETE FROM customer
Friday, June 26, 2009
Concatenate 2 String
SELECT CONCAT (Field1 , Field2) FROM Table1;
The output would be: CakeRM20
SELECT CONCAT (Field1, " , " , Field2) FROM Table1;
The output would be: Cake, RM20
SELECT CONCAT (Field1, ", HELO, "Field2) FROM Table1;
The output would be: Bread, HELO, RM20
Thx : http://www.sqltutorials.net/concantenate/how-to-concantenate-strings.html
In vb,
MsgBox("This " + Field1+ " Test")
The output would be: This Cake Test. If Field1 is "Cake"
The output would be: CakeRM20
SELECT CONCAT (Field1, " , " , Field2) FROM Table1;
The output would be: Cake, RM20
SELECT CONCAT (Field1, ", HELO, "Field2) FROM Table1;
The output would be: Bread, HELO, RM20
Thx : http://www.sqltutorials.net/concantenate/how-to-concantenate-strings.html
In vb,
MsgBox("This " + Field1+ " Test")
The output would be: This Cake Test. If Field1 is "Cake"
Subscribe to:
Comments (Atom)



















