Posts by David Pereira • 1 point
2 posts
-
0
votes2
answers78
viewsA: C# - How to open Form2 without losing the Textbox information that is in Form1 and vice versa?
You can create a variable and receive this data in Form 2, and when you return you fill again. For example : public Form2(string text) { //....... } And when you return to the other form you return…
c#answered David Pereira 1 -
0
votes1
answer77
viewsA: How to redeem data that was saved in the bank during a creation process
What you can do is instead of using Id as int you can use the GUID that will always give you a string. Id = Guid.NewGuid(); This way you will always have a unique identifier and know what it is…