all groups > dotnet windows forms > april 2004 > threads for wednesday april 14
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
Grid concepts - I'm missing something...
Posted by WineNCheese at 4/14/2004 10:01:07 PM
I have a DataGrid that is bound to a datatable, which has a sort specified
on the default view. When rows are added programatically to the datatable,
they are displayed at the end of the grid via the magic of databinding.
However, the rows (including the new one) seem to be in sort order in the
... more >>
Online, Offline, Disconnection, Confused. :)
Posted by Aaron A. Anderson at 4/14/2004 8:50:37 PM
I'm in the initial stages of architecting a Windows Forms application for
use in both an
online and offline modes. I've looked at both the TaskVision application
and the Offline Application Block for for guidance.
The TaskVision application is much simpler in design than the Offline
Applicat... more >>
MICROSOFT -- I AM SERIOUSLY FRUSTRATED WITH YOUR BUGGY DESIGNER
Posted by billym at 4/14/2004 8:29:19 PM
I don't get it. You hire the best of the best. You've been doing Windows
applications for YEARS... and yet your VS designer is BUG PRONE BEYOND
BELIEF. Almost to the point of being unusable.
I have put in bug reports and recieved hot fixes... and STILL dealing with
problems related to your lay... more >>
Retrieve Multiple Excel Instances
Posted by cnathaide NO[at]SPAM yahoo.com at 4/14/2004 7:40:27 PM
I am able to obtain a running instance of Excel using the following
code.
<code>
Excel.Application app = (Excel.Application)
Marshal.GetActiveObject("Excel.Application");
</code>
Usually this retrieves the first instance of Excel that was opened.
Suppose there is more than one instance of... more >>
Opening a Contact Item from VB.Net
Posted by Leo at 4/14/2004 3:06:04 PM
Hello and Thanks for the Help in Advance
I am trying to open a contact item using a button on a VB.Net toolbar. This was pretty straight foward in VB6 but I am having trouble getting to the Public Folder where the contacts are stored
Any Help would be apprecaited!!
Here is the code I have. I a... more >>
How to start a form on a new thread?
Posted by Randolph Neall at 4/14/2004 2:54:39 PM
I'm having trouble instantiating and SHOWing a form on a new thread. The
form appears briefly then disappears from the screen and the taskbar. Is
there a sample somewhere how to do this? Preferrably C#?
Show(), for its part, as I understand it, despite its modelessness, does not
start a new th... more >>
how to suspend a form while the user makes a choice in another?
Posted by John Smith at 4/14/2004 2:22:05 PM
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
?????????????????????????
:):):):):):):):):):):):):):):):):)
... more >>
Form Post to Web Page
Posted by skchbs NO[at]SPAM yahoo.com at 4/14/2004 12:35:14 PM
Hi,
I have a WinForm Application which asks user to input data locally.I
would like to then POst the data to the server using a Web App....any
tutorials or sample codes for doing this? how simple is it to
accomplish this?
Any help is greatly appreciated.....
Many Thanks,
Arthur... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Lines() like property
Posted by Josip Medved at 4/14/2004 12:14:17 PM
How to create property that can be edited in Properties
windows similar to Lines() property of TextBox.
In short: I want multiline property that is visible during
design time.
--
Pozdrav,
Josip Medved, MCP
http://www.jmedved.com
... more >>
How can I have both "Help button" and "Min./Max. Button" enabled at the same time
Posted by babylon at 4/14/2004 10:38:40 AM
In order to enable the "help button", I have to disable both the min/max
button....
How come?
How can I make all of the buttons work at the same time?
thank you
... more >>
Modifying App config during installation
Posted by Aaron at 4/14/2004 9:16:05 AM
Is there a simple way to modify an app config file with user entries from an installation? I am gathering several values during the install of my app and I would like to write those values to my app.config file
Thanks... more >>
Multi-Threaded UI
Posted by Michael Tumy at 4/14/2004 8:39:19 AM
I have an application that could do some lengthy updates of a database upon
closing a form. So to keep the UI responsive, I'm pushing the updates off to
a worker thread. I seen numerous articles on using BeginInvoke on delgates
to keep you UI responsive. In these articles, they do a "WaitOne()"... more >>
Compiling Setup project returns: Could not find file '...' 'Interface not registered'
Posted by M K at 4/14/2004 6:21:06 AM
I have a simple setup project for my solution. I have one main app, 2 class libraries, and the setup build from the primary out put of my main app (which pulls from the 2 class libraries and a 3rd managed .dll outside the solution). When I build the setup project I get
Could not find file '...' 'In... more >>
Wrong form event triggerd when using MDI
Posted by Max at 4/14/2004 5:41:07 AM
I have one button and a textbox on a form. When pressing enter-key in the textbox the keydown event is triggered as i should. Then i open another mdi-child (opens from the button_click event) and when I return to the first form and presses the enter-key in the textbox again the Button_Click is trige... more >>
Not allow null in DataGrid bool DataColumn
Posted by Erica at 4/14/2004 4:51:02 AM
Hi
I have created a DataColumn and added it to a DataGrid
DataColumn cCat = new DataColumn(cat.Name, typeof(bool))
In the DataGrid it is possible to edit the bool value to true, false or null
Is there a way to not allow the null value (shown as not enabled checkbox) when editing
Best regar... more >>
|