Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. lblMesa.Text = "MESA: "
  2. Dim MesaPaso As String = CStr(Recibo.Mesa)
  3. Dim MesaTxt As String = ""
  4. If Mid(MesaPaso, Len(MesaPaso) - 1, 2) = ".0" Then
  5. MesaTxt = Mid(MesaPaso, 1, Len(MesaPaso) - 2)
  6. If MesaTxt = " " Then
  7. MesaTxt = "0"
  8. End If
  9. Else
  10. MesaTxt = MesaPaso
  11. End If
  12. lblMesa.Text &= MesaTxt & ", PERSONAS: " & Recibo.Personas
  13. lblMesa2.Text = "MESERO: " & Personal.NombreCorto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement