all groups > dotnet windows forms > march 2006 > threads for wednesday march 1
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
Custom DataGRidComboBoxStyle DataSource Problems
Posted by Richard Ryerson at 3/1/2006 8:15:43 PM
I have a general DataGridComboBoxColumn that I built using the Example in
the .NET 2003 Combined Collection help file (that was a data time picker).
I am able to assign a data source and display / value members so the
ComboBox is data bound and that works, to a point. What generally works is
t... more >>
Handling events without explicitly defining a handler
Posted by Jay Douglas at 3/1/2006 3:32:39 PM
Greetings,
I have a Windows form application that (naturally) instantiates all sorts of
objects. I have a base object that contains an event. Lots of other
objects inherit from this event. When the base object or any derived object
is instantiated I would like to automagically start list... more >>
Problem with menu item
Posted by Gary Nastrasio at 3/1/2006 3:24:42 PM
I have a .NET 1.1 program which uses System::Windows::Forms::MainMenu. I
have the "ShowShortcut" property turned on, and the "Shortcut" property
is set to CTRL1. The problem is, when the program is running, the menu
shortcut shows up as CTRL+D1. How can I change this so it just shows up
as... more >>
One form calling another form
Posted by esperanza at 3/1/2006 1:22:28 PM
Hello dotnet expert,
this method never exit.
It call frm.show without exiting the sub.
Any Idea ??
Thanks in advance !
Private Sub TimerReminder_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles TimerReminder.Tick
If chkReminder.Checked = True Then
... more >>
ToolStripMenuItem.CheckOnClick Does Not Fire
Posted by rob at 3/1/2006 12:55:41 PM
I have a menu item that has a check mark. When ever the check mark is
toggled I do a bunch of changes in the appropriate event handler. Now
when the app starts I read the last settings and set the menu
accordingly. So in my MainFrame_Load function I call:
showItToolStripMenuItem.Checked = last... more >>
Data Grid View And Database
Posted by Rodrigo Ferreira at 3/1/2006 12:44:53 PM
Hello i have some problems with load values to a datagridview.
I can´t put the data from a database into a datagridview.
My code is:
Base.bd bd1 = new Base.bd();
OleDbCommand c1 = new OleDbCommand("SELECT * FROM table1");
c1.Connection = bd1.getConn();
DataSet ds = new DataSet();
... more >>
Show subset of columns in Datagrid
Posted by MikeL at 3/1/2006 9:00:51 AM
Hello.
I retrieve a dataset from a database and assign the table in the dataset to
a datagrid. Then I call the datagrid's "Refresh" method.
I want to show only a subset of columns in the grid with the excluded
columns bound to other controls (textbox, etc.)
How can I limit the columns d... more >>
Darken a parent form when a modal form is in front of it
Posted by Elsa at 3/1/2006 7:49:27 AM
Folks,
I am trying to figure out a way to darken the parent or main form of an
application when a wizard or modal form is called from within it. What I am
trying to do is duplicate what Windows XP does when a user does a Start, Shut
Down. The desktop darkens or turns to a dark gray and the ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Returning Values from a custom combobox
Posted by phillip_putzback NO[at]SPAM insightbb.com at 3/1/2006 7:32:46 AM
I created a custom control by and dragged a combobox on to the template
and then added the following code
Public Class dOOdadsOperandComboBox
Inherits System.Windows.Forms.ComboBox
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeCo... more >>
Getting the Dragged Source of a Drag'n'Drop Operation
Posted by walt.stoneburner NO[at]SPAM gmail.com at 3/1/2006 6:51:57 AM
Got drag and drop functionality working great... but how does one get
information about the source of the drag operation?
For instance, can I tell it came from an open Word document and obtain
the filename? Can I tell is came from a browser and get the URL?
Is that even possible?
-wls
... more >>
Restricted User running Windows App accessing "ProgramFiles" folde
Posted by Vinay Kant at 3/1/2006 2:58:27 AM
Hello,
We have a windows application which needs to update the files through the
autoupgrade process on start. Application is installed under "Program Files"
directory.
Now when a restricted user runs the application, the update of the files
fails as Restricted user doesn't have access to ... more >>
.net help on windows xp
Posted by bwalk at 3/1/2006 1:34:48 AM
I have an application that was written in C# and works fine on windows
2000. We have started to upgrade our software to windows XP Pro and the
application no longer works. The error I get is "Application has
generated an exception that could not be handled" "Process id=0xffc
(4092), Thread id=0x... more >>
Databinding on DataGridBoolColumn
Posted by Jason Chan at 3/1/2006 1:18:02 AM
I'm newbie on winform and datagrid
I have a DataGrid with a DataGridBoolColumn.
The DataGrid is binded to a DataTable.
The DataTable is the resultset of SQL query "SELECT UserName, Enabled FROM
siteuser" and the Enabled field is a integer type that 1 means enabled while
non-1 means disabl... more >>
Listview SelectedIndexChange
Posted by Jared at 3/1/2006 12:00:00 AM
How would you prevent duplicate firing when changing from 3 selected items
to 1?
I am going to try use another event...
... more >>
What aspx stands for?
Posted by Micheal at 3/1/2006 12:00:00 AM
Hi,
asp means Active Server Pages
what does aspx stands for ?
Regards
Micheal
... more >>
|