Posts by Marcio Caldas • 26 points
4 posts
-
0
votes1
answer104
viewsQ: Does`Webbrowser` use any native windows browsers as a base?
I see you can use one WebBrowser in the C# Form but I was wondering if he’s like a iFrame that uses the browser itself to create this navigation window. My question is whether he uses the Edge or…
-
0
votes4
answers788
viewsA: Convert Int to String
int i =10; String inteiro; inteiro = i + ""; That’s the simplest way to do it
-
0
votes1
answer403
viewsA: Create classes and functions in c++
Include default for language use #include <iostream> using standard for language use using namespace std; Creating a class Acampamentos class Acampamentos{ public: int idade; string nome; char…
-
-1
votes1
answer268
viewsQ: Setting cursor at string position within textbox
I’m trying to make a mask for a textbox manually, and I’m trying to imitate the Windows calculator, where when the user writes 1000 the code automatically puts 1.000 and when I give one…