0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
~361 People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
Hi guys: I'm developing a small desktop app in c# and i was wondering if there was a way to set a specific user for a specific deployment of the app (eg. software on pc A has user 1 and software on pc B has user 2). I'm wondering if …
I would attempt approaching the problem by overloading the constructor on formB and have it take as parameters the values you need from FormA. in essence: public class formB string name = ""; public formB (string n) name = n; then you would just instantiate a formB FROM formA with …
The End.