Posts by Ton Angelo • 78 points
4 posts
-
1
votes2
answers1265
viewsA: Visual Studio copy file to output directory
File properties don’t have the option to copy locally? Does what you need automatically
-
0
votes0
answers136
viewsQ: How to maintain Sqlite database on Raspberry Pi?
I have an application running on Raspberry Pi with Windows Iot, but every time I deploy in a new version or when I restart the Raspberry the entire Sqlite database is deleted. I saw something…
-
3
votes3
answers163
viewsA: "Carry" variables between functions, appears strange character in place?
%c is used for single char, as you have char[100] must use %s
-
2
votes2
answers291
viewsQ: How to standardize Datetime format for all type fields without using Displayfor or Editorfor in MVC?
In many cases in the application we have to use something like: @Html.Raw(item.data.ToString("dd/MM/yyyy")) can’t be DisplayFor nor EditorFor in no case and we have to show the Brazilian date…