まさるblog

越後在住子持ちプログラマー奮闘記 - Author:まさる(高野 将、TAKANO Sho)

目次

Blog 利用状況

ニュース

著書

2010/7発売


Web掲載記事

@IT

.NET開発を始めるVB6プログラマーが知るべき9のこと

CodeZine

実例で学ぶASP.NET Webフォーム業務アプリケーション開発のポイント

第1回 3層データバインドを正しく活用しよう(前編)

ブログパーツ


書庫

日記カテゴリ

コミュニティ

「オススメしないとはいうものの」をVBに直してみた

ネタ元:オススメしないとはいうものの

 

いや、ホントになんとなくですけどw

#未コンパイル、未検証なので、色々間違ってるかも。

 

あげる側 Form1

Public Partial Class Form1

  Public Sub New()
    InitializeComponent()
    self_ = Me   ' ここでオノレをセット
  End Sub

  Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
    Dim form2 As New Form2()
    form2.Show()
  End Sub

  Private Shared self_ As Form1

  ' read-onlyならまぁ、実害もなかろうと。
  Public ReadOnly Property GlobalValue() As String
    Get
      Return self_.TextBox1.Text
    End Get
  End Property

End Class

もらう側 Form2

Public Partial Class Form2

  Public Sub New()
    InitializeComponent()
  End Sub

  Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
    TextBox1.Text = Form1.GlobalValue       ' ここでもらう。
  End Sub

End Class

投稿日時 : 2009年9月1日 19:41

Feedback

# I'm not easily impressed. . . but that's impsresing me! :) 2012/01/29 2:13 Wimpy

I'm not easily impressed. . . but that's impsresing me! :)

# I'm not easily impressed. . . but that's impsresing me! :) 2012/01/29 2:13 Wimpy

I'm not easily impressed. . . but that's impsresing me! :)

# I'm not easily impressed. . . but that's impsresing me! :) 2012/01/29 2:13 Wimpy

I'm not easily impressed. . . but that's impsresing me! :)

タイトル
名前
Url
コメント