all groups > dotnet windows forms > march 2004 > threads for monday march 8
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
comprehensive Winforms help file?
Posted by Sergei Shelukhin at 3/8/2004 9:56:43 PM
Is there something similar to Borland vcl help on winforms somewhere?
E.g. helpfile-style organised list of all components with all their
properties, events and methods with short essential description, preferrably
of relatively small size and available offline? Something like big chm file
may... more >>
Controls inside RichTextBox
Posted by Adam Nowotny at 3/8/2004 6:52:00 PM
I have a RichTextBox component that i use to display some formated text.
It turned out, that i also need to display tables in it. I thought about displaying it using some
Grid component. So i created it and added using
Me.RichTextBox1.Controls.Add(MyNewGridControl)
It displays...but it seem... more >>
How to start an app by double clicking on an associated file
Posted by Michael at 3/8/2004 6:41:07 PM
I would like to know how to implement double cliking a file to start up a Windows form application using C#. Any sample or link would be highly appreciated
Thanks
Michael... more >>
Sensing a Modal Dialog Box
Posted by Dan at 3/8/2004 6:12:22 PM
I have an application that is automating Project Professional; when opening
certain projects, I receive a modal dialog box. As long as I can simulate
the clicking of the cancel button, I could programmatically move past it.
How can I do this?
Note: while opening Project Server, I already set th... more >>
Memory Limit
Posted by Todd A at 3/8/2004 4:33:33 PM
Does anyone know what the Memory Limit for a .NET Windows Form executable?
I have a Forms application that uses a lot of memory, upwards of 400MB. I
am using the default reporting tool that ships with VS.NET, Crystal Reports.
When you export a crystal report to PDF format, the amount of memory... more >>
Data Access Application Block for .NET
Posted by Mark at 3/8/2004 2:51:05 PM
How do I install it
Thank
... more >>
SelectSingleNode in C#
Posted by Mark at 3/8/2004 2:36:07 PM
Can someone show how to use SelectSingleNode and Xpath expression in C#
Thanks... more >>
Problem with Paint Degaget on a form based control
Posted by Roy Chastain at 3/8/2004 12:34:32 PM
I have created a control that is based on Form. The Paint delegate code never gets called. Forms are new to me, so I probably
missed some important basic concept.
public class SplashForm: System.Windows.Forms.Form
{
protected override void OnLoad (EventArgs e)
{
this.Size = bitmap_t... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to capture Minimized event of a form?
Posted by Lei Jiang at 3/8/2004 11:14:36 AM
It seems no such event for a form?
thanks
... more >>
Strange Color Behavior
Posted by Jeremy Williams at 3/8/2004 10:46:36 AM
I have a Windows form that contains a panel control, and in that panel
control are a label and a text box. The background color of the label, the
textbox, and the panel are all set to SystemColor.Info (set from the Windows
Forms designer).
When this form is displayed in 256 color mode (specifi... more >>
Change Color of Datagrid Column Text
Posted by JT at 3/8/2004 10:26:08 AM
Hi
I am trying to programatically change the forecolor of the text in a textboxcolumn of a datagrid at runtime. The datagridtextboxcolumn is standard, and was assigned as a gridcolumnstyle of the datagrid's tablestyle on form loading
How do I reference the textboxcolumn that I added to the grid t... more >>
Add hoc Reports
Posted by Hadeel at 3/8/2004 10:19:48 AM
Hi,
I'm trying to develop Dynamic reports (Add Hoc Reports) in Windows
application using VB.Net and .Net crystal Reports ( ver. 9). The user will
choose the fields he/she wants to view in the report and choose the group or
sorting field, and depending on that I will view the right fields in t... more >>
DATA GRID REALLY BIG PROBLEM... IS THIS A BUG?
Posted by Harsh at 3/8/2004 5:51:07 AM
I do not know how to even describe this problem... If there was any way to upload the picture i would have uploaded the snapshot...
Going to require a REAL .net GURU to resolve this problem
here is scenari
I use a data grid... i have done a lot of things with data grid in that form, like showi... more >>
Drawing String Vertically
Posted by Nilesh Rade at 3/8/2004 5:46:06 AM
H
Can any body help me draw a string Vertically if I have a vertical rectangle
I have heard of Translate transform and RotateTransform but i don't know how to use it..
What exactly TranslateTransform does and Rotate Transform does??
... more >>
mouse position in click-event
Posted by Stefan at 3/8/2004 4:41:08 AM
Hi NG,
How can i get the Mouse position in a Click-Event (parameter of method is a EventArgs object!)?
Thanks and Regards,
Stefan... more >>
TreeNode with own icon
Posted by Stefan at 3/8/2004 2:56:06 AM
Hi NG
i need a TreeView consisting of TreeNodes where each TreeNode has its own icon (some nodes can have the same icon). This one icon should be shown regardless if the node is active or not. How can i implement that? I am using C#
Thanks for any help
Stefan... more >>
Rollback transaction doesnt work when DataAdapter.Update() throws exception caused by RAISEERROR in a trigger
Posted by Mark Vuksani at 3/8/2004 12:33:42 AM
Hi,
I have a trigger like this (simplified to illustrate the problem):
--------
CREATE TRIGGER Test ON [dbo].[TestTable]
FOR INSERT, UPDATE, DELETE
AS
RAISERROR( 'test trigger error !', 16, 1)
---------
And a C# code portion: (new record inserted in dsFormTest.TestTable)
---------... more >>
|