all groups > dotnet windows forms > march 2006 > threads for monday march 6
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Saving Database records
Posted by Jon at 3/6/2006 6:51:26 PM
Hello I am new to C# compact framework. I have been working on a WinMobile
app that everything seems to work correctly, I get no errors. But..... While
debugging in the PocketPC WM 5.0 when I insert a new record or edit an
existing record (created in database designer)the changes are never act... more >>
Deployment: Creating an uninstall option on the Start Menu
Posted by JezB at 3/6/2006 5:20:36 PM
I have a windows forms application and a companion setup project. How do I
modify this setup project to ensure that an uninstall option appears in the
relevant folder in the Start Menu, like other applications have?
... more >>
GUI Like VS2005
Posted by Gary Nastrasio at 3/6/2006 4:37:13 PM
Hey guys. Does anyone know of a package that will allow me to have GUI
effects such as those in VS2005? I'm specifically looking for the
docking options, resizing, and the auto-hide (thumbtack) features.
Thanks,
Gary... more >>
DataGrid ArrayList IndexOutOfRangeException
Posted by km at 3/6/2006 3:35:27 PM
I have a DataGrid bound to an ArrayList. When I delete a 'row' from the
ArrayList the DataGrid throws an 'IndexOutOfRangeException' exception. I
constructed a very simple sample app that reproduces the problem (code
below). This sample simply populates the grid from the array. When you click
... more >>
How to minimize windows form programmatically?
Posted by Kikoz at 3/6/2006 9:54:29 AM
Hi all.
Perhaps I'm missing something simple here. If I use a form border style
"None" (no Minimize/Maximize/Close buttons) how can I minimize the form when
user clicks some control?
Thanks for any help!... more >>
Big MessageBox
Posted by Puce at 3/6/2006 6:09:27 AM
Hi,
I'm writing an application for a device with a touch screen using c# 2.0/
Visual Studio 2005. Since a touch screen is used, the fonts and buttons need
to be big. Unfortunatly I found no way to configure the MessageBox - neither
with manipulation of the object nor with subclassing. There... more >>
Code wrap
Posted by Bruno Gavino at 3/6/2006 3:37:27 AM
Hi,
I have a major issue with .NET applications using .NET Framework. .NET
applications are very easily reversed and the code is there (everything
exposed), with the common use of Reflector applications. Is it possible to
protect the code in order it is not decompiled?
One other thing.... more >>
DataGridViewComboBoxColumn problems when manually creating view
Posted by ReinierG at 3/6/2006 3:21:28 AM
When using a datagridview, which contains one DataGridViewComboBoxColumn, I
get an error (System.FormatException: DataGridViewComboBoxCell value is not
valid), which has something to do with the databinding.
Situation:
I create a tabledef:
Dim dt As DataTable
dt = New DataTable(TABELDISPL... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
.net drop down toolbar button that shows a listbox/form
Posted by Kevin at 3/6/2006 2:32:19 AM
Hi
I am trying to make a listbox appear in my application when the user
clicks on a drop down button in the toolbar.
It should show the listbox when the user clicks on the drop down menu
part of the button and disable/enable the list when the user clicks on
the actual button (the icon changes... more >>
GetResponse delay
Posted by JezB at 3/6/2006 12:13:28 AM
I do some peeking at files on the web in my program with code such as:
WebRequest wr = WebRequest.Create(url);
WebResponse r = wr.GetResponse();
I've noticed that the first time GetResponse is executed, it takes some 3 to
4 seconds. Repeating the same code in the same run is almost immediat... more >>
|