初めてDelphiを使ってみた。まずはお約束のHelloWorld。VBとの比較もやってみます。
スポンサードリンク
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End Class Public Module Hello |
▲VisualBasic2008でHelloWorldを行う場合のサンプル
unit t_HelloWorld;
interface uses type var implementation {$R *.nfm} procedure TForm2.Button1Click(Sender: TObject); unit Hello; interface uses Dialogs; implementation procedure DispMSG; end. |
▲Delphiで同様のことをする場合
コメント