次のコードがあります
Imports System.Data
Public Class ReservationList
Private Sub GuestListToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GuestListToolStripMenuItem.Click
'Show the registration table
GuestListForm.Show()
Me.Hide()
End Sub
Private Sub HighriseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HighriseToolStripMenuItem.Click
' Shows the About Box
highriseAboutBox.Show()
End Sub
Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click
' Terminates program
highriseAboutBox.Show()
Me.Close()
End Sub
Private Sub NewReservationToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewReservationToolStripMenuItem.Click
' Restarts the program
NewReservationForm.Show()
Me.Close()
End Sub
Private Sub ExitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitButton.Click
' terminates program
highriseAboutBox.Show()
Me.Close()
End Sub
Private Sub ReservationList_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'CottagesDataSet.Guests' table. You can move, or remove it, as needed.
Me.GuestsTableAdapter.Fill(Me.CottagesDataSet.Guests)
'TODO: This line of code loads data into the 'CottagesDataSet.Reservations' table. You can move, or remove it, as needed.
Me.ReservationsTableAdapter.Fill(Me.CottagesDataSet.Reservations)
End Sub
Private Sub Last_NameLabel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub Last_NameComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Last_NameComboBox.SelectedIndexChanged
End Sub
End Class
そして、プログラムを実行(デバッグ)すると、これが得られます
以下に示すように、表示する親子関係をセットアップしようとしています。
これは私が持っている.xsd関係です
だから、私があなたに見せることができるのはそれだけです。なぜこのエラーが発生するのですか? 同じ方法でセットアップした別のデータベースですべてがチェックされているようです。また、本のチュートリアルに従いましたが、何も見逃すことはありませんでした. 私はアイデア全体を捨てようとしていますが、それを機能させたいと思っています。
ありがとう