all groups > dotnet windows forms > september 2004 > threads for saturday september 4
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
Two ListBox Handlers Short Circuit Each Other
Posted by Spare Change at 9/4/2004 9:41:55 PM
Given for a ListBox
this.HLinks.MouseDown += new System.Windows.Forms.MouseEventHandler
(this.HLinks_MouseDown);//
this.HLinks.SelectedIndexChanged += new
System.EventHandler(this.HLinks_SelectedIndexChanged);
It seems I can have one but not the other.
If I use both, then the Mouse... more >>
Objidl.h problem
Posted by Steve Strommen at 9/4/2004 4:23:09 PM
Every time I add a particular form to my VS 2003 C++ project, the project
can no longer compile. The error message indicates an ambiguity because
IDataObj is defined both in System::Windows::Forms and also in objdl.h.
I have no idea why objidl.h is being included in my project, but it must
ha... more >>
Validation in MDI children
Posted by Mat Hess at 9/4/2004 4:01:12 PM
Hello
In my MDI Application, I have an MDI Parent Form which contains two
Child Forms, childA and childB. childA has a TextBox which has an
Validating event Handler
When the Users enters some text into this TextBox which does not pass
the validating event, the Event Handler sets the Cancel ... more >>
2 column editable Listview?
Posted by B. Chernick at 9/4/2004 3:39:04 PM
Is it possible to setup a listview control with two columns so that the
second column is editable? ... more >>
good book on winforms, sql server ce syncing up to sql server.
Posted by Chris Davoli at 9/4/2004 2:03:05 PM
I'm going to use .net for developing winforms on a pda or other hand held
device and have a fat client with sql server ce on it and sync up to sql
server on a main server. any GOOD easy to read books on this subject. I'm
very experienced with .net on web forms.
Thanks.
--
Chris Davoli
... more >>
Search Files using OS Search
Posted by juanmiguell NO[at]SPAM iadb.org at 9/4/2004 10:46:22 AM
Is it possible to call the OS Search (Start/Search) from a windows
form application?
What I'm looking is to develop an interactive cd using vb.net with
search capabilities. The cd will have some pdf, word , excel and html
documents, and what I need is to have the possiblity to search for
some... more >>
Drag Drop, Then Select Text
Posted by Spare Change at 9/4/2004 10:41:19 AM
I've set up a form with a TextBox and a ListBox
( You can see all code here:
http://home.earthlink.net/~jabailo/Windopes%20SupaText/ )
Right now, if you double-click and select text in the text box, then drag an
entry from the ListBox onto the Text, the selected Text will be replaced by
tha... more >>
Form Real FullScren Question
Posted by Dian at 9/4/2004 12:28:13 AM
Hi all, I have a following inquiry.
Here in news group I found the sample code of how to put a window form in
FullScreen (in the style VS 2003/2005 does)
protected override void OnLoad(EventArgs e)
{
base.OnLoad (e);
Point clientTL = this.PointToScreen(new Point(ClientRectangle.X,
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Custom display format for databound combo box
Posted by Cory Burkhardt at 9/4/2004 12:26:54 AM
I would like to be able to customize how data is displayed in my databound
combo box. The user will be selecting one of these values which will
correspond to a row in the database. However, I do not want it to display
in the selection items simple a single value from each row. I would like
fo... more >>
|