Posts by user77639 • 85 points
6 posts
-
2
votes1
answer577
viewsQ: Zeros on the left
I’ll be getting multiple numbers that can be up to nine digits. I would like when it was not 9 (111 for example) the system to automatically replace with 000000111. The examples I found on the…
-
0
votes2
answers252
viewsQ: Return 2 values in a foreach
I would like to return two values in one foreach, can help me? For Each item In Funcao() teste1 = gostaria de pegar aqui o resultado 1 teste2 = gostaria de pegar aqui o resultado 2 Next Private…
-
0
votes1
answer498
viewsQ: Scrolling style effect of the Instagram app
I would like to use the "scrolling" effect that instagram uses in your app, switching to camera and time-line. However I do not know the name of this effect, could tell me what it is, or give…
-
0
votes1
answer55
viewsQ: RTF formatting.
I have an RTF in the database that saves colors, enter, among other actions that the user gave. I am using the following code to convert the RTF to show in HTML, however I am losing all these…
-
3
votes0
answers43
viewsQ: Format Date C#
Format Date I receive 2017-06-13 from the database, using the code: Dia = sqlDataReader["DESCRICAO"].ToString(), I would like to show 13/06/2017, how can I do this formatting?…
-
3
votes3
answers1314
viewsQ: Format Field C#
I know the 'N' and 'C' formatting of C#, but they do not suit me. I get 1000 database and would like you to format to 1.000. What I put in the .ToString("???")…