Posts by L. Falousk • 123 points
4 posts
-
0
votes1
answer50
viewsA: How to Make a Help Balloon in WPF?
Follow an example taken from the site already informed: <Button ToolTip="Saves the current document" ToolTipService.ShowDuration="20" Content="Save"> </Button> By adding the properties…
-
1
votes1
answer1137
viewsQ: Regex for addresses (Streets, Avenues and Etc)
I need a regex that takes cases that have number in the address name and also normal address. The Number always ends after the address. Example: R 25 March 200. I need the address that would be: R…
-
1
votes1
answer64
viewsA: How to install a Hidsharp Nuget in Visual Studio
In Visual Studio goes to Tools > Nuget Package Manager > Manage Nuget Packages for Solution, in the new window you can go to Browse and search the library Hidsharp or Tools > Nuget Package…
-
6
votes3
answers328
viewsA: Format integer value in "000" format
It’s possible that way too. int a = 3; string valor = a.ToString("D3");
c#answered L. Falousk 123