Windows Forms (WinForms) is the name given to the graphical application programming interface (API) included as a part of Microsoft .NET Framework, providing access to native Microsoft Windows interface elements by wrapping the extant Windows API in managed code.
0
votes
1answer
23 views
proper exception handling (throwing/message) dll libary
I just wrote a dll library using vb.net. while testing, i got an error which i did not initially use a try-catch block. The code is
Try
'The first four bytes are for the Command
...
0
votes
1answer
235 views
SQL Update statement generator using C# Winforms?
I am trying to make an UPDATE STATEMENT generator using C# Winforms. I would like to build a statement generator which will print statements like this:
UPDATE Customers
SET ContactName='Alfred ...
0
votes
0answers
79 views
Choosing the right design pattern/architecture for a scenario
I have a situation, in which I would like your opinion about the best approach that I should take.
Let's consider 10 classes (obj001, obj002 etc.) all which represent some business entities, and are ...
0
votes
0answers
94 views
How should one handle a Parent-Child relationship using MVP?
In a conventional MDI WinForms application, one would go like this:
public partial MainMdiForm : Form {
public MainMdiForm() { InitializeComponent(); }
private void ...
0
votes
0answers
141 views
UI Field validation in MVP pattern
I want to validate the details provided by the user before taking them into the processing.
My UIs have Text boxes, Combos mainly and, there are some fields that user must provide a data, in some ...
0
votes
0answers
548 views
Updating GUI in 'realtime' using events
My Plan
Have a system that holds some objects
Have a winforms-form that displays some key values of these objects
When certain changes occur(object gets add / removed / datat change): Update GUI
...