Posts by David BS • 159 points
7 posts
-
1
votes0
answers65
viewsQ: Color in Visual Studio
Hello! Does anyone know how I can change colors of the unused methods/events vs those used in Visual Studio? I have VS2013 (using Dark theme) and Resharper but I can’t see exactly the methods/events…
-
0
votes1
answer1317
viewsA: Open external application within form Vb.net
There’s no way you can load an executable to run inside your form or any of the controls - and that, if there was a way, would use SO MUCH API that I’m afraid it’s not possible in. NET The most you…
-
1
votes1
answer98
viewsA: Cleaning mask of characters
Every Makedtextbox field will always show the defined mask. What you have to do is clear the code of the mask using CLEAR. Something like: mtbCPF.Clear
-
1
votes1
answer1231
viewsA: Sorting of string and number vectors
Nick, I believe that using multiple Voce matrices ends up using the same amount of memory (or even more) as a single matrix with the name and quantities, separated by a "separator". Something like:…
-
1
votes2
answers109
views -
0
votes3
answers328
viewsA: SQL - Query in a single table with null values
I’m used to MS-SQL but see if this syntax exists and can be applied: SELECT Data, Servico FROM controle_equipe WHERE (Data >= '4/1/2016') And (Data <= '5/2/2016')) AND IsNull(Data,1) <>…
-
1
votes2
answers433
viewsA: Keep data between sessions
A suggestion: use different names for reports, based on user identifiers (if applicable), where you can, through a BATCH running 1x a day, delete older reports based on their dates (if applicable).…