先日、「入力したデータにより条件を変更したい」でいろいろご教示いただきましてありがとうございます。
これをさらに発展させていきたいと思いました。
それはボタンを使わずに、参照している項目のデータが変更されるたびに(Formを呼び出した時も含めて)自動的に内容が更新されるという仕組みです。
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load '処理する日付をセット Dim 伝票日付 = DateTime.Now Me.伝票日付.Text = Date.Now Me.KeyPreview = True AddHandler Me.伝票日付.Enter, AddressOf TextBoxes_Enter End Sub Protected Overrides Sub OnKeyDown(e As KeyEventArgs) MyBase.OnKeyDown(e) If e.KeyCode = Keys.Enter Then ProcessTabKey((Control.ModifierKeys And Keys.Shift) = 0) ←ここにエラーメッセージがでました。 e.Handled = True e.SuppressKeyPress = True End If End Sub Private Sub TextBoxes_Enter(ByVal sender As Object, e As EventArgs) BeginInvoke(Sub(ctl As Object) Dim box As TextBoxBase = TryCast(ctl, TextBoxBase) If box IsNot Nothing Then box.SelectAll() End If End Sub, sender) End Sub Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim abc As Date abc = Date.Parse(伝票日付.Text) Dim 基準日1 As New DateTime(2019, 9, 30) If 営業部門.Checked = True Then If abc <= 基準日1 Then 表示項目.Text = "S4" End If If abc > 基準日1 Then 表示項目.Text = "S5" End If End If If 管理部門.Checked = True Then If abc <= 基準日1 Then 表示項目.Text = "Q4" ElseIf abc > 基準日1 Then 表示項目.Text = "Q5" End If End If End Sub
(追加ここから)
エラーメッセージが出ましたので上記のコードに追加をしています。
エラーメッセージ:「ハンドルされていない例外」
「詳細のコピー」は以下の通りです。
System.InvalidCastException
HResult=0x80004002
Message=型 'System.EventArgs' のオブジェクトを型 'System.Windows.Forms.MaskInputRejectedEventArgs' にキャストできません。
Source=A01_form
スタック トレース:
場所 A01_form.Form2._Lambda$__R101-1(Object a0, EventArgs a1)
場所 System.Windows.Forms.Control.OnLeave(EventArgs e)
場所 System.Windows.Forms.Control.NotifyLeave()
場所 System.Windows.Forms.ContainerControl.UpdateFocusedControl()
場所 System.Windows.Forms.ContainerControl.AssignActiveControlInternal(Control value)
場所 System.Windows.Forms.ContainerControl.ActivateControlInternal(Control control, Boolean originator)
場所 System.Windows.Forms.ContainerControl.SetActiveControlInternal(Control value)
場所 System.Windows.Forms.ContainerControl.set_ActiveControl(Control value)
場所 System.Windows.Forms.Control.Select(Boolean directed, Boolean forward)
場所 System.Windows.Forms.Form.ProcessTabKey(Boolean forward)
場所 A01_form.Form2.OnKeyDown(KeyEventArgs e) (D:\FORM01\FORM\A01_form\Form2.vb):行 25
場所 System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
場所 System.Windows.Forms.Form.ProcessKeyPreview(Message& m)
場所 System.Windows.Forms.Control.ProcessKeyMessage(Message& m)
場所 System.Windows.Forms.MaskedTextBox.ProcessKeyMessage(Message& m)
場所 System.Windows.Forms.Control.WmKeyChar(Message& m)
場所 System.Windows.Forms.Control.WndProc(Message& m)
場所 System.Windows.Forms.TextBoxBase.WndProc(Message& m)
場所 System.Windows.Forms.MaskedTextBox.WndProc(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
場所 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
場所 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
場所 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
場所 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
場所 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
場所 System.Windows.Forms.Application.RunDialog(Form form)
場所 System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
場所 System.Windows.Forms.Form.ShowDialog()
場所 A01_form.Form1.伝票作成_Click(Object sender, EventArgs e) (D:\FORM01\FORM\A01_form\Form1.vb):行 168
(※筆者注)
上の行の「行168」とはこのFormの呼出元のFormのことです。
Private Sub 伝票作成_Click(sender As Object, e As EventArgs) Handles 伝票作成.Click
Dim 伝票作成 As Form2 = New Form2(社員番号.Text, 社員名.Text) '値を渡す
'モーダル開き、戻り値を受け取る If 伝票作成.ShowDialog = DialogResult.OK Then ←ここが168行目です。 '値を受け取る 社員番号.Text = 伝票作成.GetValue 社員名.Text = 伝票作成.GetValue End If 伝票作成.Dispose() End Sub
(※筆者注おわり)
場所 System.Windows.Forms.Control.OnClick(EventArgs e)
場所 System.Windows.Forms.Button.OnClick(EventArgs e)
場所 System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
場所 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
場所 System.Windows.Forms.Control.WndProc(Message& m)
場所 System.Windows.Forms.ButtonBase.WndProc(Message& m)
場所 System.Windows.Forms.Button.WndProc(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
場所 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
場所 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
場所 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
場所 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
場所 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
場所 Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
場所 Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
場所 Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
場所 A01_form.My.MyApplication.Main(String[] Args) ():行 81
(追加おわり)
Button1の代わりに、「伝票日付」に下記のコードを記載してみたのですが、「表示項目」には何も表示されません。
日付を変更すればそのタイミングで動きがあるかと思ったのですが。
Private Sub 伝票日付_Leave(sender As Object, e As MaskInputRejectedEventArgs) Handles 伝票日付.Leave Dim abc As Date abc = Date.Parse(伝票日付.Text) Dim 基準日1 As New DateTime(2019, 9, 30) If 営業部門.Checked = True Then If abc <= 基準日1 Then 表示項目.Text = "S4" End If If abc > 基準日1 Then 表示項目.Text = "S5" End If End If If 管理部門.Checked = True Then If abc <= 基準日1 Then 表示項目.Text = "Q4" ElseIf abc > 基準日1 Then 表示項目.Text = "Q5" End If End If End Sub
(追加)
上記のイベントハンドラは、フォームデザインで「伝票日付」をダブルクリックし、「MaskInputRejected」を「Leave」に置き換えています。
挟んだ部分はボタンのものをそのまま記載しています。
こういう表現でわかりますでしょうか。
(追加おわり)
どのようにすればよろしいでしょうか。
回答2件
あなたの回答
tips
プレビュー