disabling back button of window
Wed, 1 Feb 2006 18:42:58 +0530
Hi
In my web application,in one of the page
where I need to disable the back button of the toolbar.
Suggestions on this are welcome.
Thanks,
Vani.
...
|
Displaying a form to accept user input from a property in property grid (custom TypeConverter??)
31 Jan 2006 16:38:46 -0800
This is what I want to do and I am struggling with it:
I have a property which gets displayed in the property grid and when
the user clicks on it, a form shows up which allows the user to select
multiple email id's and when he clicks OK, the list should be displayed
for the property as a comma seperated string ...
|
DesignMode property when debugging a component
Tue, 31 Jan 2006 10:48:30 +0100
Hi,
I've found that the DesignMode property is set to true when I debug a
component by setting the component project as start-up project. I suppose
that this property is set to true because, in fact, the devenv program is
running, so the actual state is run-time.
Is there any way to aviod this to debug c ...
|
Designer goes crazy on DataGridView
Mon, 30 Jan 2006 02:16:30 -0800
I upgraded a VB.Net VS2003 Windows Forms project to VS2005.
I have now VERY frequent problems with the designer!!
Some controls are "destroyed" in the designer.
They disappear from the declaration list (Friend WithEvents ....)
and turn up twice in the InitializeComponent procedure:
Private Sub Initial ...
|
Retrieving ExecuteCommand results
Fri, 27 Jan 2006 18:07:19 +0100
Hi,
I've wrote the following lines of code to open the "Add Connection" dialog
of the IDE at design time.
EnvDTE.DTE d = (EnvDTE.DTE)this.Site.GetService(typeof(EnvDTE.DTE));
// Find first the path of the current project (there is a more elegant way?)
object[] o = (object[])d.ActiveSolutionProjects;
En ...
|
building a web site
Fri, 27 Jan 06 01:26:00 GMT
I just got back working on my website. Its taken a long time to finish but I am getting there.
I got great web hosting at http://www.domainnamefree.net where I got a free .com name and a good site builder. Im going to keep working on it ill let you all know how im doing.
Paul ...
|
Custom form designer (extending properties of controls)
Thu, 26 Jan 2006 01:06:36 -0800
Using samples from microsoft and sharpdevelop project, I have managed to
create a pretty good form designer.
What I wanted to ask is if there is a way to extend the properties of a
control that is added in the design surface...
Much like the IExtenderProvider that one can use for containers...
I tried (th ...
|
|
|
Changing the DescriptionAttribute value
Wed, 25 Jan 2006 17:03:12 +0100
How can I change the value of the DescriptionAttribute depending on the
CultureInfo context?
[ Description( "Description for the property at design-time") ]
public object TestProperty
{
get{ return this.testProperty; }
set{ this.testProperty = value; } string testProperty;
}
I've try to change ...
|
Create Columns in a DataGridView by Add-in
Wed, 25 Jan 2006 03:53:02 -0800
Hi all,
I have a add-in that creates a new Winform from a template. Depended on an
user input i want add some columns to a existing DataGridView on ths form. I
can get some properties of the DataGridView by IDesignerHost --> IComponent.
But how can I add columns and modify their properties?
The creation of ...
|
Retrieving the original component that extends a property in a converter
Wed, 25 Jan 2006 01:50:43 -0800
I have a component that implements IExtenderProvider and add a property, say
"ID", to some controls, say a Button. I have added a type converter to this
property and this type converter offers a drop down list of possible values,
by overriding GetStandardValuesSupported and GetStandardValues. But in order
...
|