Posts by fnightangel • 180 points
2 posts
-
0
votes1
answer138
viewsA: SQL - Searching XML data
Missing the namespace DECLARE @XMLCTE AS XML = '<cteProc xmlns="http://www.portalfiscal.inf.br/cte" versao="2.00"><CTe xmlns="http://www.portalfiscal.inf.br/cte"><infCte versao="2.00"…
-
5
votes3
answers8837
viewsA: How to work with dates in the dd/mm/yyyy format in Vb.net?
If the idea is to show today’s date, try it like this: txt_cadastro.Text = CDate(Now).ToString("dd/MM/yyyy")