這個問題是關係到我前面的問題vb.net - 比較兩個文本文件和檢索特定值
我目前工作登記表上,其中一個學生的所有詳細信息都保存在一個文本文件。
我使用文本文件填充組合框。
這些值的格式,例如:(代碼〜校名)SCH001〜聖 托馬斯學院
這就是我在文本文件中保存的細節:
Dim firstname, lastname, email, mobile, level, currentschool, currenttrack, institution1, institution2, institution3, institution4, institution5, institution6, courses1, courses2, courses3, macaddress, eventcode, idseq, filename, logfiledirectory, targetdirectory, log, configdir, printschool As String
firstname = txtFName.Text
lastname = txtLName.Text
email = txtEmail.Text
mobile = txtMobile.Text
level = cmbLevel.Text
currenttrack = cmbCurrentTrack.Text
printschool = cmbCurrentSchool.Text
currentschool = cmbCurrentSchool.SelectedValue
institution1 = cmbInstitution1.SelectedValue
institution2 = cmbInstitution2.SelectedValue
institution3 = cmbInstitution3.SelectedValue
institution4 = cmbInstitution4.SelectedValue
institution5 = cmbInstitution5.SelectedValue
institution6 = cmbInstitution6.SelectedValue
courses1 = cmbCourse1.SelectedValue
courses2 = cmbCourse2.SelectedValue
courses3 = cmbCourse3.SelectedValue
If mobile = "" Then
mobile = "09000000000"
End If
If firstname = "" Or lastname = "" Or email = "" Or level = "" Or currentschool = "" Or currenttrack = "" Then
MessageBox.Show("Please enter the required fields!", "Registration", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
我有顯示文本文件中所有保存的詳細信息的datagridview。 這裏是我的datagridview的截圖:
什麼,我想做的事:我想用從源文本文件目前學校的代碼(參見圖)(我用了一個檢索學校名稱填充我的組合框)。而不是學校代碼,我希望學校名稱顯示在datagridview中。 有沒有可能的方法來做到這一點?
我希望你們明白我在說什麼。 我在這裏新的。
它很容易。在文本文件內容中搜索_school code_。獲得該行後,將行分割爲'〜'。現在我真的想知道,你自己實際嘗試了多少。因爲我提供了前兩個問題的答案。你現在可以學會這一切! –