0
votes
5answers
63 views
Can I embed other files in a DLL?
I'm writing a plug-in for another application through an API. The plug-ins are distributed a DLLs. Is it possible to embed other files in the DLL file like pdfs, images, chm help files etc... I want …
1
vote
1answer
20 views
Unit testing a Winforms event driven architecture
What approach should I take (if it's even possible) to unit test a standard event driven Winforms app where display and logic are mixed together.
0
votes
2answers
16 views
Emulating animation with panels on .Net Compact Framework.
Hello!
I'm developing a Windows Mobile 5.0 or above with .Net Compact Framewor 2.0 SP2 and C#.
I'm trying to "animate" five panels changing their locations on a Timer_Tick event but these panels …
0
votes
4answers
916 views
Prevent Blinking Cursor in Textbox
In a textbox, how can u prevent the display of the blinking cursor when you click on it?
I did read in some forums that there is call to a particular api but when i tried it in my code, an error was …
0
votes
0answers
3 views
Prevent double click on a row divider triggering celldoubleclick event
In a datagridview with rowheaders visibility set to false and allowusertoresizerow set to true, i need to prevent the celldoubleclick event to trigger if doubleclicked on the rowdivider (Toublearrow …
0
votes
3answers
26 views
Radio Button validation event
Hi - I have a simple form with one text box and a panel with three radio buttons in it. I have used a validation event with an error provider to force the user to place a number in the text box. My …
0
votes
1answer
17 views
WinForms: Make a collapse/expand image button
This is a followup to this SO question: How do I make a collapsible UI region on the form?
I'm making a winforms app with a region (panel) that is expandable or collapsible.
I used the …
0
votes
1answer
7 views
DataGridView decimal value formatting: kosher way.
Hi,
I need to display decimal values in DataGridView
if (dgvClients.SelectedRows.Count != 0)
{
DataGridViewRow row = dgvClients.SelectedRows[0];
…
0
votes
4answers
65 views
c# listbox search algorithm
I have a listbox & textbox above it. I want to the user to be able to search the listbox just by starting to type the letters of the word or part of the word in the textbox.
What is the best way …
0
votes
4answers
26 views
Is an event thrown when a custom control gets its final size? (.NET Compact Framework).
Hello.
I'm developing a Windows Mobile 5.0 or above with .Net Compact Framework 2.0 SP2 and C#.
I have a custom control called PullDownMenu (it inherits from System.Windows.Form.Control). This is …
0
votes
3answers
56 views
C# binding a combobox to a growing list
WinForms, .NET 3.5
I have a ComboBox that needs to display a growing list of items -- there is a long running process fetching items, and I want to be able to display items to the user as they build …
1
vote
2answers
49 views
listbox and how to perform actions on selected items
Hi I have this program Im trying to make
but now Im trying to add an option to delete items ( only the selected ones ).
thanx in advance
1
vote
4answers
41 views
WinForms: How do I make a collapsible UI region on the form, like Visual Studio’s toolbox?
I want to add a collapse/expand capability to a Windows Form.
Is this built into the splitter control? Is there a tutorial for this UI technique?
The immediate project I'm thinking of is a simple …
0
votes
4answers
133 views
Standalone app: keep the database healthy/responsive over time
I have a WinForms C# application using a MS SQL Server Express database. The application is deployed on the PCs of our customers and they don't have computer related knowledge.
The application …
1
vote
8answers
185 views
How does C# generate GUIDs?
How are GUIDs generated in C#?
