Posts by Jaedson Barbosa • 91 points
8 posts
-
0
votes2
answers958
viewsA: Load a page from an html string
Let’s see, you could create an HTML file based on its string using the IO class, which would take it and turn it into a file, and write it in the same place where your application is. Then just open…
-
1
votes2
answers475
viewsA: How to use javascript without dialog boxes?
Let’s see, you can do an input and an Submit button, this when clicked (onClick) will call a javascript function that will take the input data and do what you want. Remembering that using Javascript…
-
0
votes1
answer20
viewsA: Doubt with Asp.Net project
No problem. Those folders are for users who know a lot about ASP and want to better organize the project. But since you’re just getting started, I guess you don’t need.
visual-studio-2013answered Jaedson Barbosa 91 -
1
votes1
answer2412
viewsA: Check if e-mail is valid?
So I saw your code does not prevent the user to proceed, because it does not cancel the action of the user when it inserts an invalid valir. I recommend that you put the analytics in the Validating…
c#answered Jaedson Barbosa 91 -
1
votes2
answers2213
viewsA: Best way to display a form within another form?
It had a medium solution in the gambiarra style, it is only you leave the elements that should appear when the form is started visible and the rest (this hidden form) must be invisible…
c#answered Jaedson Barbosa 91 -
0
votes1
answer82
viewsA: How can I interact with a class that is behind two?
I don’t know if that’s exactly what you’re looking for, because from what I understand it’s pretty easy. // Se você quer analisar se determinado shopping e carrinho está contido num dicionário.…
-
1
votes3
answers3527
viewsA: Swap characters inside a string, in a string
Hello, you can use this code: string a = "aaaaaaaaaa\"aaa\"aaaaaaaaaaaaaa\naaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\naaaaa\"aaaaaaaaaa\"aaaaaaaaaaaaa"; string[] nova = a.Split('"'); for (int i = 0; i <…
-
2
votes0
answers76
viewsQ: How to use different language Resources in C#
The following is, by entering some tutorials I was able to create two Resources for my application, and both are working, because when you change the language in the language field of the Form…