How can I adjust the height of the of my ComboBox dropdown
You can control the height by changing the value of the MaxDropDownItems property of the the Combobox, which is the setting for maximum number of entries that will be displayed by the drop-down list.
How do I prevent users from resizing a form?
You can prevent the users from resizing a form by setting the FormBorderStyle to FixedDialog and setting the MaximizeBox property to false.
How can I center my form?
You can set the Form’s StartPosition property to CenterScreen to achieve this.
How can I implement a smooth ProgressBar?
Refer to the following KnowledgeBase articles in MSDN: HOW TO: Create a Smooth Progress Bar in Visual C# .NET HOW TO: Create a Smooth ProgressBar in Visual Basic .NET
How can I programmatically obtain the name of the assembly that the code is executing in ?
The following code snippet demonstrates how you can obtain the name of the assembly that the code is executing in: [C#] MessageBox.Show(System.Reflection.Assembly.GetEntryAssembly().GetName().Name); [VB.NET] MessageBox.Show(System.Reflection.Assembly.GetEnTryAssembly().GetName().Name)