Sub
zobrazeniPoznamekPriKliku()
Dim
poznamka
As
String
Dim
dluznik
As
String
Dim
stav
As
String
Dim
usek
As
String
Dim
pravnik
As
String
Dim
likvidator
As
String
Dim
radek
As
Integer
Try
radek = frmaplikace.DataGridViewPredpisy.CurrentCell.RowIndex
Catch
radek = 0
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(7).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(7).Value =
""
Then
likvidator =
"..."
Else
likvidator = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(7).Value
End
If
Catch
likvidator =
"..."
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(9).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(9).Value =
""
Then
pravnik =
"..."
Else
pravnik = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(9).Value
End
If
Catch
pravnik =
"..."
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(10).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(10).Value =
""
Then
dluznik =
""
Else
dluznik = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(10).Value
End
If
Catch
dluznik =
""
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(11).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(11).Value =
""
Then
stav =
"..."
Else
stav = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(11).Value
End
If
Catch
stav =
"..."
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(12).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(12).Value =
""
Then
usek =
"..."
Else
usek = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(12).Value
End
If
Catch
usek =
"..."
End
Try
Try
If
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(13).Value
Is
DBNull.Value
Or
frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(13).Value =
""
Then
poznamka =
""
Else
poznamka = frmaplikace.DataGridViewPredpisy.Rows(radek).Cells(13).Value
End
If
Catch
poznamka =
""
End
Try
frmaplikace.textBoxPoznamka.Text = poznamka
frmaplikace.TextBoxDluznik.Text = dluznik
frmaplikace.ciselnikStavy.SelectedItem() = stav
frmaplikace.ciselnikUsek.SelectedItem() = usek
frmaplikace.ciselnikPravnik.SelectedItem() = pravnik
frmaplikace.ciselnikLikvidator.SelectedItem() = likvidator
End
Sub