| Thread | Last Post | Replies |
|
| Accelerator keys broken in Winforms | 07 Jul 2006 22:06 GMT | 1 |
I'm having a problem with accelerator keys (also sometimes refered to as shortcut keys or mnemonics) on Winforms. To reproduce, simply do this: 1. create a new C# "Windows Application" project (I'm using VS2005) 2. Add a button to the form and change its default Text from "button1" ...
|
| hiding form from alt-tab | 07 Jul 2006 21:37 GMT | 1 |
In the 1.1 version of the framework setting ShowInTaskbar to false and FormBorderStyle to none was enough to stop a form from showing up in the alt-tab list. After porting the app to 2.0 all the forms now appear in the alt-tab list. What do I need to do to hide the forms from ...
|
| Cannot access a disposed object | 07 Jul 2006 18:52 GMT | 1 |
Hi This two lines of code have always worked fine System.Windows.Forms.Form ModificaPrenotazione = new ModificaPrenotazione(id_preno); ModificaPrenotazione.Show();
|
| ToolStripProgressBar and InvokeRequired - again | 07 Jul 2006 17:16 GMT | 7 |
Is manipulation on ToolStripProgressBar allowed in cross-thread way? Or should I use this.Invoke()? I'm using Dot Net since yesterday. Sorry, if this question doesn't have sense.
|
| Replacing running EXE | 07 Jul 2006 16:43 GMT | 1 |
System.IO.File.Replace.. "Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name." Has anyone got easier solution than running temp vbscript.
|
| Form without border | 07 Jul 2006 15:13 GMT | 4 |
I want to move and resize a window without border. I solved the problem of moving thanks to internet search by using ReleaseCapture(); SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
|
| GDI+ Glass Table effect | 07 Jul 2006 14:15 GMT | 2 |
I have an image of an object which I display on a form. I'd like to use GDI+ to display a gradually-fading reflection of this image (on a white or coloured background) underneath so that the effect is like the object sitting on a glass table. Any idea how I'd achieve this ?
|
| Null reference issue | 07 Jul 2006 13:54 GMT | 2 |
I am creating a multi-winform project. Everything has been working fine, except after I perform an update to the database and decide to Exit the winform after the update operation is complete. I have error handling in my code but not on the dispose method. I call
|
| DataGrid and business objects | 07 Jul 2006 12:51 GMT | 2 |
I would like to display/edit an ArrayList of objects in a DataGrid. Each row in the datagrid displays a Machine. Problem 1: Each of the objects (Machine) in the list has an ArrayList of child objects (Part). How must the following example be rewritten so that it
|
| Add/remove columns in a DataGridView automatically according to open database | 07 Jul 2006 10:18 GMT | 2 |
is it possible to make DataGridView add or remove columns automatically when opening an Access database? If so, how? I have checked all the properties of DGV but none seemed to fit this... The connection string was defined in a Wizard (SELECT * FROM ...).
|
| User control life cycle in VS2005 editor | 07 Jul 2006 01:22 GMT | 1 |
Can someone tell me what is the user control life cycle when its dropped in to a visual studio designer? I mean, I have a new windows application project created in visual studio 2005 and a new form added. Now I create a new user control extending it from UserControl. Add few ...
|
| Wizard generated code doesn't display data from database. | 06 Jul 2006 23:25 GMT | 2 |
I am sure this is an FAQ but I could not find it and I was wondering if someone could help me. I wanted to quickly generated a view of a couple of tables in our database. I pulled up the wizard and generated a couple of data sets and data adapters.
|
| I'm calling a method in a different class, how do I reference the form? | 06 Jul 2006 20:08 GMT | 5 |
To tidy up my code, within a form I am calling a method in a different class, e.g. switch (listBox1.SelectedItems[i].ToString()) {
|
| How to hide the numericUpDown control's up and down arrows? | 06 Jul 2006 15:57 GMT | 4 |
How to hide the numericUpDown control's up and down arrows? I only want the numeric textbox, but numericUpDown has up and down arrow is not my want, how can I hide it?
|
| WebBrowser Class | 06 Jul 2006 08:56 GMT | 5 |
Tricky question, is there a way that when you have a windows.form app using webbrowser class to view and run webapps on it when ever you open a new window browser the session will still be the same as the parent?
|