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.
6
votes
1answer
43 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
47 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
80 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
71 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
148 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
346 views
2
votes
1answer
101 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
21 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
93 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
...
4
votes
3answers
703 views
Determine payment based in the number of adults, number of children, and some combo box selection
How can I shorten this code with a while loop? Is it possible? cboFrom and cboTo is a combobox. I only know how to do simple ...
3
votes
1answer
62 views
Dynamic visual list of images
Situation
So I have made a list of PictureBoxes on my form that looks as follows:
All images have a panel behind them that is 4px lager (2xp all around the picture box). The images are named ...
1
vote
1answer
74 views
Create Form Controls based on the properties of a class
Is there a better way to create Form Controls for properties of a class? Right now, I iterate through all properties of a class and have a method to create the Form Control for that property based on ...
-1
votes
2answers
99 views
Accessing a list of websites using a configuration read from an XML file [closed]
I have a C# application and a CakePHP website. These communicate between them using GET and (WebRequest) POST method.
My problem is that it's happening too fast. I have made a diagram that shows ...
3
votes
1answer
143 views
Opening an XML File and Returning the XmlDocument
I'm working on my first Windows Forms tool for a project; this is my first time using C# extensively. Right now, my only objective is to be able to open an XML file and have the resulting XML in hand. ...
-1
votes
1answer
43 views
Extracting Power and Energy out of a slow regex
My WinForms application is a bit slow, I'd like to make it faster. It extracts only the power and energy values out of a string in textBox3, and displays the ...
10
votes
3answers
116 views
FizzBuzz in accordance with standards
I wrote FizzBuzz. My aim is to use C# Code Standards correctly, and write flexible code. How can I improve my solution according to code standards? How can it be better in general?
...
10
votes
1answer
120 views
Pattern-finding game
This is a game that is supposed to be based on strategy and guessing.
The letters need to match in a ABCD fashion on each button on buttons[0] - ...
4
votes
1answer
103 views
SQL Permission Handling in WinForms
For my application, I've opted to use Integrated Security with Windows Authentication to access the SQL database. I've created AD security groups for each role and given them ...
4
votes
1answer
137 views
Tic Tac Toe with winforms
This game works out the basic of a Tic Tac Toe game. I am looking to see if this can be redone in any way to make the code more smaller since this is really big.
...
19
votes
5answers
2k views
Console window to debug Windows Applications
Since I was having some difficulties to debug the next step for Scrolly - A (very) simple infinite mouse "scroll", I've decided to make a console-like class that allows to add messages to it.
This ...
10
votes
3answers
321 views
Scrolly - A (very) simple infinite mouse “scroll”
Out of fun, and to practice my rusty C# skills, I've made a very basic program.
It only has 1 function: When you move the mouse to a side of the screen, it shown on the other side. Like an infinite ...
7
votes
2answers
114 views
Drag and drop single files on different targets for different purposes
I have three text fields (DevExpress ButtonEdits set to read only) on a Windows Forms app. They look like this:
They're used by dragging and dropping a single ...
3
votes
1answer
150 views
Populate tree from 3 different data sources and show its content
The task is to build a WinForm app which populates a tree from 3 different data sources and shows its content.
1 ComboBox at top - to choose datasource. (File ...
6
votes
1answer
91 views
Winforms Mathematical Operator Label
I wrote a custom class which (atm) displays the +, -, =, x, and ÷ operators inside a circle. Apart from the issue of some symbols not appearing in the exact center (everything except + looks a bit ...
5
votes
1answer
374 views
Preparing a YouTube downloader based on Windows form
The program this function was written for is a Windows forms program.
This function downloads videos from the internet one after the other. It runs in a separate thread (so the user can drag the form ...
5
votes
2answers
347 views
Binding Lists of Commits to a DataGridView in Winforms with an MVP architecture
I'm using Winforms and I find this pattern showing up in my code a lot. It works, but I'm unsure if it's best. The goal is to pass an IList of items through a view ...
5
votes
1answer
64 views
User can choose to add one of two node types to a treeView, both of which have almost identical settings
There is a context menu that comes up when a user right-clicks on a node in a TreeView. They are then presented with the choice to either add what is called a "RWB" or an "AQ" node to the tree. Both ...
1
vote
1answer
49 views
Properly managing a collection from deserialized XML file throughout app's lifetime
I'm developing a WinForms app to manage some settings and profiles for multiple video games. The list of video games is specified by the user, and I'm trying to figure out how to properly maintain ...
5
votes
2answers
166 views
Script that parses the Chase.com page for my recent payments
I wrote this code earlier to parse Chase.com's online transactions page. It's written in WinForms.
stepBtn is a button that starts this.
...
2
votes
1answer
55 views
4
votes
2answers
826 views
Controls Edits of DataGridview in Winform
I want to refactor this code that is currently in a partial Form Class and deals with edits made on certain cells in a datagridview (in this case called dgvReplenish).
I would like to refactor so ...
3
votes
1answer
236 views
Linq-to-SQL DAL on a Windows Forms project
I just started out a new job as a C# programmer on .NET 3.5. My manager gives me total independence on how I build my modules, which is generally a good thing, but there are minuses too. Having too ...
11
votes
1answer
117 views
Rubberduck “GoTo Anything” Navigation
The next version of rubberduck is going to include a pretty nifty "goto anything" / find symbol navigation tool that lets the user enter an identifier name in a combobox:
UI
To achieve the ...
12
votes
3answers
141 views
Reordering method parameters
Next release of Rubberduck (should be 1.4) introduces a reorder parameters refactoring, which lets user reorder the parameters of a module (or class) member, and automatically adjust all usages.
...
15
votes
5answers
908 views
Populating a ListView with Items
I populate a ListView with Items. Each Item has data attached to its .Tag property.
Over time, I have needed to handle many cases where something would be null or ...
11
votes
2answers
194 views
Exploring the code of the Code Explorer
The Code Explorer is a dockable toolwindow that displays a TreeView that shows all opened VBA projects and their respective modules, but unlike the "native" Project Explorer, Rubberduck's explorer ...
1
vote
2answers
312 views
Check before proceeding if the task in BackgroundWorker has completed
I have a Login Form (which has a label that will show status of background process, username and password text boxes, Login and Cancel buttons) along with that I have a background worker to do some ...
1
vote
3answers
265 views
Dealing with DB Through EF within Winforms
I have the following code which uses EntityFramework to reach out to a DB and retrieve data to populate into a Winform application gridview.
I am still quite new ...
2
votes
1answer
608 views
Cancellable progress form using async/await
Introduction:
For a project I'm working on I used a BackGroundWorker to lift some heavy tasks away from the UI thread and report progress. For this I created some ...
1
vote
1answer
133 views
Efficient use of LINQ - Indexing
I have a Class with a List of objects, and those objects contain a list which has lists to objects in the first class, and I'm trying to quickly index them. Simplified:
...
3
votes
2answers
250 views
Is this a thread-safe implementation of background bitmap generation?
For a game implementation, I have a very large overview map with multiple layers (namely base-map / units / highlight & info / fov-shading) of which the first is CPU-intensive to generate. I have ...
8
votes
1answer
153 views
Refactoring my Todo List was on my Todo List. How's my MVC?
This is a follow up to Rolling my own Configuration with UI. I got a lot of great advice about the Configuration system I created, but no one touched on how all of my logic for the UI was in the code ...
12
votes
4answers
254 views
Rolling my own Configuration with UI
The Rubberduck Saga continues as I find a need to roll my own configuration. Since the program is really a *.dll and available to several host applications, using app.config is not an option. I ...
11
votes
3answers
1k views
Winforms Circular Checkbox
So here is my next creation, a circular checkbox. This is my third custom control, so I'm still learning, but have the basics just about down. Tips and suggestions are most appreciated:
...
11
votes
2answers
727 views
Counting Calories
I have this program for counting calories. There isn't a whole lot to it yet. It's a moderately sized project, so I'll do my best to make it as short as possible, posting only the main of the program ...
4
votes
1answer
250 views
6
votes
1answer
120 views
Finding Magic Comments to Create a Custom Task List
I've been working on a COM Add-in for the VBA IDE with a friend. The idea is to search the active VBA Project for "magic" comments and create a task list much like any sane IDE would have.
This is ...
0
votes
1answer
85 views
Use parent class to declare a child object or how compiler allocates memory
I'm working with C# and .NET Framework 4.0 and Windows Forms.
On my project I have three custom objects that inherits from MyControl class (...
4
votes
1answer
166 views
Stop Watch Application 2.1
After the tips from my previous review. I have come up with these changes:
Separation of Concerns
Use Delegates
I'm asking you guys if this looks good. Other then separate out the ...
7
votes
1answer
179 views
Stop Watch Application 2.0
After the tips from my previous review. I have come up with these changes:
Changed my braces to start on a new line
Used the Single Responsibility Principle
Return early whenever possible
Use a ...