How to make this on C#?
SimpleUnlocker (Screenshot)
я хотел сделать такие “таблицы” в win form на C#, кто знает, не подскажете как называется элемент ?
How to make this on C#?
SimpleUnlocker (Screenshot)
я хотел сделать такие “таблицы” в win form на C#, кто знает, не подскажете как называется элемент ?
How to accumulate cell selection in a datagrid when selection mode is full row?
Im making an app for touch screens, I want to make it so when you click on the rows of the grid they will get accumulated and processed later. I have to say I have fullRowSelect instead of CellSelect
Reducing memory consumption while recording a video in C# winforms
I’m working on a video recording application in C# and I’m encountering high memory usage during recording. I’m using the AForge and Accord libraries for video capture and writing, but the memory consumption seems to be quite high.
Circular Progress Bar C# Windows Form Application
I am using circular progress bar NuGet for my application. My application reads a very big excel file, does some processing in the rows, and then does some other work. I am not sure how to set the maximum for my progress bar. At the moment, I have set it to the number of rows the application will process, but the issue with this approach is that the progress bar will show till the tool is processing the excel file and then it will close , though there are other processes that are being done after that also.
Visual Studio not responding
Yesterday i turn of my computer and today when I turn on computer and go to my project (c# winform), it run only about 2-3 minute then it is like image below. I try to restart computer, even I uninstall and install Visual Studio again but it doesn’t work. Help me pls error here
why getting parameter is not valid when dragging the custom progressbar to the form1 designer?
it was working fine first time when i dragged the custom progressbar to the form1 designer from the toolbox. but now each time i try to drag it i get the exception error message.
Add items to listbox if not exist
i’m having an issue with my code, i’m trying to add items from directory to listbox, the issue is i keep getting the same items (doplucate) over and over again
How to create a control in windows forms that will display and play animated gif?
I tried this code but it’s showing the last frame. and if i set the frame delay to 1000 then it’s waiting one second before showing anything and then show the last frame. it’s not playing all the frames from first to last.
How do I write and call an event between classes for Winforms?
I am attempting to write a Winforms application that interfaces with an SQLite server for a class. One requirement is for users to be able to make an account, so I need to remove the login control and replace it with the actual app control. I figured that the best solution would be to make an event, but I cannot for the life of me get it to work. I’m not sure how to use delegates, but from my understanding I don’t strictly need a delegate for this purpose.