all groups > dotnet windows forms > july 2003 > threads for wednesday july 30
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
Why i can't localizing datetimepicker control?
Posted by Sarawut at 7/30/2003 6:57:09 PM
I use windows 2000 and set regional option as "thai". I
use datetimepicker control in my .net application. And I
chang Culture of my Application to "en-US" by use code
below
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-
US");
Thread.CurrentThread.CurrentUICulture = new Cultur... more >>
Accessing System Menu from C#
Posted by TB at 7/30/2003 4:50:51 PM
For a simple form without its own menu I wanted to add
an "About..." command to the system menu as I would for
an old MFC/C++ application.
However I cannot find out how to access the system menu
other than to toggle it on/off via the ControlBox
property.
Is this simply a .NET style bei... more >>
DataGrid (or ListBox) "Viewport" Size
Posted by Kristin at 7/30/2003 4:09:40 PM
How do I find out the size (specifically width) of a listbox's =
(specifically datagrid) "viewport" where the "viewport" does not contain =
borders (Fixed3D and otherwise), scrollbars, etc. ?
Microsoft defines a "viewport" in help text for the =
"DataGrid.VisibleColumnCount" property as so: "T... more >>
Error Reading Configuration Settings
Posted by Guogang at 7/30/2003 3:49:01 PM
Hi,
I am deploying a project to a laptop. It works fine on my development
computer, and I have tested once a few weeks ago.
However, this time, the program can not start at all. After some digging, I
find that it stops right at the following line (this line is part of the
function called by... more >>
Call WinForm with parameter?
Posted by dw at 7/30/2003 3:27:17 PM
Hello..is it possible to call a winform (show or
showdialog) and pass the form a parameter? Could be a
single value (like an integer)?
thanks for any help or links.
,dw... more >>
Dataset Update che funziona in modo strano
Posted by Webmaster of Moon at 7/30/2003 3:09:38 PM
Ciao ho una piccola anomalia, in un dataset. Ho una form di dettaglio
collegata con delle textbox a un database sqlserver tramite dataadapter,
dopo aver generato il dataset e le stringhe sql per aggiornamenti e
selezioni, mi si presenta il prblema. Tramite metodo fill riempio il
database, e poi ... more >>
Problem using a textbox to change the data
Posted by Venkat Venkataramanan at 7/30/2003 2:00:45 PM
Hello:
I have a form that has a dataset that has one table, a
command button, and a data-bound textbox. I also have
navigation button that navigates through my dataset.
When I run the application, I see the row values
displayed appropriately.
But when I make changes to the value that... more >>
TabControl.TabPageCollection property "Item" missing
Posted by Joseph Crum at 7/30/2003 12:17:01 PM
I am developing a form which uses a TabControl. I want
the code to be able to detect which TabPage is currently
active. The documentation indicates that the
TabPageCollection should have an "Item" property which I
think may be the way to do this, but the "Item" property
doesn't show up o... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Detecting Column Data Change without Leaving Row
Posted by Jerry at 7/30/2003 11:58:29 AM
I have a WinForms application that has a master DataSet with related
DataTables that various forms reference and bind to. I need to detect when
changes are made to the DataSet by a particular form so that the user can
choose to cancel or apply thoses changes (the Apply button is only enabled
aft... more >>
Embedding icons
Posted by Fatih BOY at 7/30/2003 9:04:03 AM
I want to embed some icons into my application and then use these icons for
specific file extension.
How can i do this?!
... more >>
CheckBox in DataGrid
Posted by Jon Yates at 7/30/2003 7:01:58 AM
Hello all.
I have place a CheckBox in a DataGrid using the following
code:
DataColumn dcInclude = new DataColumn("Include?");
dcInclude.DataType = System.Type.GetType
("System.Boolean");
dtParams.Columns.Add(dcInclude);
The CheckBox column works and all is good,... more >>
calling a form in a different project
Posted by David at 7/30/2003 6:08:59 AM
How do you instantiate and display a form that is in a
different project within the same solution?
I have a project full of Crystal Reports and one simple
form (clientCrystalViewer) that displays them. It seems
like I need to have the Reports in the same project as
this clientCrystalViewe... more >>
Getting the active window
Posted by Paul R at 7/30/2003 2:58:03 AM
Hi,
Is there any way to get a reference to the currently
active form in .NET (even if it is another application)?
Is there then any way to give that form focus? (even if
it is outside of the .net application?
Thanks,
Paul... more >>
Maximise or show a window without giving it focus
Posted by PaulR at 7/30/2003 2:56:02 AM
Hi,
Is there a way of maximising a form without having it
grab the window focus?
Thanks... more >>
|