WinForms is the informal term given to the graphical application programming interface (API) included as a part of Microsoft's .NET Framework, providing access to the native Microsoft Windows interface elements by wrapping the existing Windows API in managed code.
-1
votes
0answers
14 views
BCrypt.Net Login [on hold]
I'm trying to log into the mySQL database using the program I've created.
Accounts are created on the website, using PASSWORD_DEFAULT which is blowfish.
However, I can't seem to be able to correctly ...
1
vote
2answers
68 views
Alternate checked between buttons
I'm trying to alternate if a button is checked. I've come up with this, which works but its feels unnecessary to write 70 lines of code for such a simple task.
How would I go about to shorten this up,...
1
vote
1answer
61 views
Little copy tool
I made a little copy tool, but my progress bar seems to be too slow. I would also be very interested in any tips and improvements or code smells.
MainForm (code ...
2
votes
1answer
37 views
DataTable extension methods and proper disposing of unneeded resources
I've build two extension methods, that allows me to show DataTable inside window.
Below is my code:
...
2
votes
0answers
41 views
C# Winforms MVP (avoiding circular dependencies)
I asked the following question on stackoverflow and as a result came up with the following code to avoid circular event logic when using winforms.
There are two occasions where my model can be ...
2
votes
1answer
56 views
Avoiding code duplication for reading in similar values for each derived class
I am designing a program that handles many types of grooves TKY, VSingle under GrooveType.
Each of this groove is paired with ...
0
votes
1answer
89 views
Setting a textbox value to zero if null
Is this the correct way to set value of textbox to zero when it's null? Is there any way I can improve the calculation that I am doing?
...
5
votes
2answers
76 views
Refactoring Calculations through a series of textboxes
Alright guys, I know this isn't the proper way of problem solving, But I need some guidance here. Since I am just starting in programming, the code is not really readable.
The Winforms program (...
4
votes
1answer
62 views
Generating buttons efficiently
I've written a Minesweeper program, but my code for generating the buttons is taking much longer than I'd like. Here is the GUI code:
...
10
votes
5answers
864 views
Handling keyboard shortcuts in C# software
Edit: I have added the revised code in an answer to this question.
Currently, I handle the keyboard shortcuts of my applications in a single huge method that looks like this:
...
7
votes
3answers
376 views
Converting string to control
This is my first post here. I had a look for my question, but nothing quite answered what I'm looking for. I've just started learning C#.
I have an up-down numeric control on my form (...
3
votes
3answers
78 views
Divide decimal by range of fractions, and then convert the fraction that is closest to a whole number to a mixed fraction
My program will divide the decimal (\$30.0575\$) by a range of fractions (\$\frac{1}{1}, \frac{1}{2}, \frac{1}{4}, \dots, \frac{1}{48})\$ leaving me with list of improper fractions that look like this:...
5
votes
1answer
99 views
Use of Async/Await for EventHandlers
I have a MVC WinForms application. I am using Dependency Injection with Ninject as the IoC container.
...
15
votes
2answers
306 views
Guitar Hero III Bot
I made a Guitar Hero III bot for PC. I was able to beat the song "Through the Fire and Flames" on Expert with the bot which can you see here.
If you watched the video, you can see that the bot misses ...
4
votes
1answer
111 views
Reactive Properties for easy property binding
This is my attempt to write a data-bindable, platform independent property that doesn't require any literal strings. The basic idea is to basically have the same functionality as IObservable, but with ...
4
votes
1answer
99 views
PDF conversion and time stamp tool
This is the latest edition of my PDF tool, previously mentioned here, here, here, and inspired by my first attempt at a MVP here.
Major differences from previous editions:
It uses the MVP pattern (...
3
votes
1answer
117 views
Model-View-Presenter Winforms app
This is my first attempt at a Model-View-Presenter pattern Winforms application. The model is a class that stores a bunch of primitives, and the view is a ...
5
votes
3answers
156 views
PDF script tool to convert documents to PDF and add fields and scripts
This is an update from here. This tool is a Windows Form application that can add fields and scripts to PDF files, as well as convert Microsoft Office Word documents to PDF.
The usage is as follows:
...
3
votes
1answer
69 views
PDF Script Tool - adds JavaScripts to PDF files
This is a Windows Forms application that adds JavaScripts to PDF files. It supports multiple files at the same time. Right now, the only supported script is a "time-stamp on print" script, but any ...
3
votes
1answer
60 views
Active Directory Query Application - Take 2
This is an update to my previous post about my Active Directory Query Application. I have made multiple modifications, and I request some feedback.
Summary: This program queries an active directory ...
5
votes
2answers
103 views
User editable properties with varying number of arguments
Recently I used this pattern to create a list of properties, each property having a varying number of arguments.
The properties list can be made at compile time, it does not need to change at ...
3
votes
2answers
242 views
Active Directory Query Application
This application is designed to query an active directory, and at the moment, performs only two tasks:
Save a list of all users to a file.
Save a list of all groups that all users are in to a file.
...
1
vote
1answer
82 views
Improving GUI update call from a worker thread in winforms
I have a winforms app and I've been using the following approach to update controls on the main form from worker threads:
GamepadManager class has:
...
3
votes
1answer
83 views
Arranging Buttons on a Process Enumerating Application
I had the following piece of code for populating a list of currently running processes in an IT Self-Help application :
...
2
votes
1answer
80 views
Chess game in Windows Forms Part #2
(Part 1 here)
I've recently created my own 2-player chess game, no AI... at least for now. I do plan to do that in the future, so one of my concerns is if the code is flexible enough to just use ...
5
votes
2answers
169 views
Chess game in Windows Forms Part #1
I've recently created my own 2-player chess game, no AI... at least for now.
I do plan to do that in the future, so one of my concerns is if the code is flexible enough to just use the same classes ...
5
votes
2answers
246 views
List<dynamic> to ComboBox
This code get a list<dynamic> from a repository class using Dapper. I need to bind this list to a ...
1
vote
1answer
60 views
Update and sum query C# Access DB
I have a simple query using query builder of VS2012 C# which updates the database in my winforms application. The database has 216 entries so far and it's taking a lifetime to update the database. How ...
1
vote
1answer
55 views
Design/Architecture for MVC WinForms Dialog Control/Use
All I have built an MVC WinForms application where Views are blind and deaf of their controllers. To facilitate this I have used Ninject as my Dependency Injection (DI) Inversion of Control (IoC) ...
4
votes
1answer
58 views
Tic Tac Toe using WinForms
I have made a simple tic tac toe game and need help tweaking it to fit the bill of object oriented design. Any suggestions most welcome. I basically want it safer, and more "best practice-like" It is ...
2
votes
0answers
26 views
Supporting all closure options in WinForms MVC application
I have a WinForms MVC application that uses Ninject for it's Dependency Injection (DI) / IoC Container. I have build quite a nice framework that allows the main shell (which uses a Docking Container ...
3
votes
2answers
84 views
Creating a new camera stream
I'm currently in the process of refactoring some code and I was wondering if I should use switch or if-else for the is code:
...
3
votes
2answers
105 views
Project Euler GUI for Problem #1 through #11
I've been working on the Project Euler problems, so I created a GUI and a Solver class for all the code I've been creating. I'd like to share it with you guys and to get general feedback on my coding ...
1
vote
0answers
49 views
UI code-behind for managing employees
I have a form code behind and it has what are called "Common Utilities". Basically the original author made a super class that is embedded into the main form code behind. What is the best way to ...
5
votes
2answers
404 views
C# Winform Amazon Application
This is my first program I've written ever. Don't hold back on me. Any help and feedback is appreciated. This code wont work because it requires some keys, but I censored them out, but it does ...
8
votes
2answers
273 views
WinForms Poker (complete project)
I have quite huge question/favor to ask but I hope I can get some useful answers. This is my first complete project, I'm still learning C#, my first programming language.
I'm afraid that there will ...
3
votes
1answer
306 views
Use of Ninject as an IoC container in a WinForms MVC application
I am a relatively experienced WPF developer who has had good exposure to MVVM. I have been developing legacy WinForms applications for a while and have recently been asked to fully re-write a large ...
14
votes
1answer
205 views
Simple dictionary storing/viewing application
A TreeView on the left which just displays a list of files saved by the application. A DataGridViewon the right to display data ...
2
votes
2answers
180 views
Insert rows in the datagridview with a dictionary
I would like to improve the function below without calling twice InserisciRigaNote.
Before I fill my dictionary. When I compare ...
4
votes
1answer
98 views
Disable and enable text boxes according to the radio button click
Here is a GPA calculator in C#. I am feeling like the code that I write and format are quite long and would like it to be shorter. This program is using radio buttons to enable and disable the text ...
6
votes
1answer
94 views
Dialogue system using an FSM
In short - I've started with C# not so long ago (which means you find a lot of poor written code here) and now I'm aiming to create a dialogue system. Though my code is working as it supposed to, ...
6
votes
1answer
73 views
Populating a listbox in a mock invoice with selected items
So I'm almost 100% certain I've done something wrong simply due to the inefficiency of what I've written, I'm entirely a novice to coding and am working on an assignment for my introductory ...
1
vote
1answer
92 views
Browse Folders for Videos
I am a self-taught programmer and would love any advice / suggestions. I wanted to implement some sort of n-tier Architecture, but not sure how to move all my code around.
My program will take movies ...
5
votes
1answer
123 views
Load & view movies on a hard drive in Netflix-like UI
I am a self-taught programmer and would like anyone to point out anything that is not the standard or professional way to do things. Any help/advice is greatly appreciated.
I would love to post a lot ...
5
votes
1answer
222 views
Paste from Excel to DataGridView
I have this code that helps me to paste data from an Excel file to a Datagridview:
...
8
votes
2answers
184 views
short or simple solution for putting values from label to column in excel
I have a code here that counts the number of fruits from Column B to Column AF (31 days).
I used a switch with cases from 1 to 31. I'd like my code to be simpler. ...
12
votes
2answers
401 views
2
votes
1answer
121 views
Creating a user registration form
How should I go about creating a registration page in Windows forms? I can easily create a registration page, but I'm not sure if it's the best way. I'd have a service account that is hard coded, and ...
1
vote
1answer
75 views
Custom DataGridViewColumn to replace a DataGridViewComboBoxColumn
The issue that i'm trying to fix with this code is simple
I have a huge dataset and I have to bind it (as readonly) to a DataGridView
In that dataset I have some ...
-1
votes
1answer
121 views
Simple C# goto alternative
I heard goto is bad, so I ask someone in this site if my code is better using goto or other alternative
...