Sub AddRowNew(Values() As String, numPan As Int)
'Dim pnl1 As Panel
Dim lbl1 As Label
Dim lbl2 As Label
Dim img1 As ImageView
'LEFT TOP WIDTH HEIGHT
pnl1.Initialize("")
scv1.Panel.AddView(pnl1,0,numPan*PanelHeight,100%x,PanelHeight)
pnl1.LoadLayout("components")
lbl1.Initialize("")
pnl1.AddView(lbl1,10dip, 0dip, 2300dip, 30dip)
lbl1.TextSize=12
lbl1.TextColor=Colors.Black
lbl1.Text = Values(0)
lbl2.Initialize("")
pnl1.AddView(lbl2, 10dip, 30dip, 174dip, 60dip)
lbl2.TextSize=12
lbl1.TextColor=Colors.White
lbl2.Text = Values(1)
img1.Initialize("")
img1.Bitmap = job1.GetBitmap
pnl1.AddView(img2,240dip, 0dip, 80dip, 90dip)
scv1.Panel.Height = NumberOfRows * PanelHeight
End Sub