How to re-acquire the Text from a combo box
Hello Guys and Galls,
I use combos on my forms.
The code to initialise the combos is as follows
Dim dsPIDTypes As DataSet
dsPIDTypes = PartDB.GetPIDTypes ' Returns a dataset object
cboPIDType.DataSource = dsPIDTypes
cboPIDType.DisplayMember = "tlkpPIDType.PT_Type"
cboPIDType.ValueMember = "tlkpPIDType.PT_ID"
I then have an object that stores the data that is currently displayed on
the form, it stores the selected value from the combo's, ie,
mycombobox.SelectedValue
When the user clicks the add button, I make the text of the combo to be = ""
However when the user clicks cancel, I want to revert to the values that
were previously displayed.
For the text boxes, this is easy,
Me.txtDate = objFormData.Date
Me.txtQty = objFormData.Qty
But then I need to update the text displayed in the combo box.
I can easily do
Me.MyComboBox.SelectedValue = objForm.Product Id
but I want the combo box to display the matching Selected Text.
Is there a way to do this without having to write a query to filter for that
Product Id ??
I guess what I want is something like
Me.MyComboBox.Text = Me.MyComboBox.Text that corresponds to the selected
value
Any suggestions?
Marko Tag: Sql Predictive Typing (with Color) Component? Tag: 96330
ListView ownerdrawn headers
Hi all,
How would I go about mimicking the system drawn clickable style when
ownerdrawing the column headers? I.e. the mouse over changes the column
headers colour, and clicking it changes its style.
Any help would be appreciated.
Chris Tag: Sql Predictive Typing (with Color) Component? Tag: 96317
C# Desktop Working Area
Hello,
How can I make my app stay in the desktop working area? I don't want
the users to be able to hide part of the app by dragging it away.
Thanks Tag: Sql Predictive Typing (with Color) Component? Tag: 96315
Error on adding items to toolbox
Hi all,
I'm trying to add items to toolbox from my dll. In Choose Toolbox Items
dialog->.NET Framework Components->Browse I'm selecting my dll to add my
windows forms controls => and always it gives me an error :"Microsoft Visual
Studio 2005 has encountered a problem and needs to close". Of course I'm
sending the error report to Ms, BUT where do I find more info about what it
is wrong with my dll ???
Error details don't help me at all and Debug button seems it is not working.
I found 2 errors in Event viewer-Application:
1. Microsoft Visual Studio : Event Type: Error
Event Source: Microsoft Visual Studio
Event Category: None
Event ID: 1000
Date: 1/9/2006
Time: 5:24:36 PM
User: N/A
Computer: CIMS2005
Description:
Faulting application devenv.exe, version 8.0.50727.42, stamp 4333e699,
faulting module ntdll.dll, version 5.1.2600.2180, stamp 411096b4, debug? 0,
fault address 0x0001142e.
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
2. .NET Runtime 2.0 Error Reporting :Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 1000
Date: 1/9/2006
Time: 5:29:36 PM
User: N/A
Computer: CIMS2005
Description:
Faulting application devenv.exe, version 8.0.50727.42, stamp 4333e699,
faulting module ntdll.dll, version 5.1.2600.2180, stamp 411096b4, debug? 0,
fault address 0x00010e03.
And, of course, no Additional info about this issue at Help and Support
center.
It is almost the same dll that I was using SUCCESFULLY in Visual Studio .NET
2003, but, of course, now is fully recompiled in VS2005 (.NET Framework
2.0)with minor changes. It is a pretty complex dll, with many controls.
Basically, my windows controls are inherited from System.Windows.Forms.
TextBox, ComboBox, ... + custom properties and methods, nothing else.
I have Visual Studio 2005 Team Edition for Developers + Windows XP SP2
installed on a clean computer. I'm getting the same error on a diferent
computer.
How can I find what it is wrong with my dll ??
Thanks for any advice. Tag: Sql Predictive Typing (with Color) Component? Tag: 96313
Where is mask property for Textbox?
I like to assign a particualar value with not more 4 decimal points with the
textbox. How to assign it?
Please suggest!
Thanking you in advance,
David S.Noah Tag: Sql Predictive Typing (with Color) Component? Tag: 96311
XSL Transform in WebBrowser control
Hello,
The new WebBrowser control in .Net 2.0 is great... does anyone know how I
can view an xsl-transformed xml file in it? Ideally I'd set the XML file, set
the Xslt file, and then view the result.
The xml file does not initially have a reference to the Xslt file.
Thanks,
Mark Tag: Sql Predictive Typing (with Color) Component? Tag: 96306
Form.Closing Event fired on Minmize
Hello All,
I have a modeless child form displayed on top of an owner form. I am
seeing the strange behavior of the modeless form's Closing event being
fired in reponse to the minimize button being pressed on the owner.
Pressing the minimize button of the child works as expected however.
The only messages I see received after pressing Minimize and before
entering the Closing event handler are:
WM_SHOWWINDOW (SW_PARENTCLOSING)
WM_SHOWWINDOW
WM_SHOWWINDOW
WM_WINDOWPOSITIONCHANGING
WM_WINDOWPOSITIONCHANGED
WM_WINDOWPOSITIONCHANGED
WM_SHOWWINDOW
I am at a compelete loss on this one, though as usually, it's probably
something simple.
Thanks. Tag: Sql Predictive Typing (with Color) Component? Tag: 96302
Form.WindowState question
I want to cause a form to come to the top of the z Order when it is notified
by another task (i.e. I want it to be right under the user's nose, not
having its title bar blinking on the task bar). If the window is minimized
at the time, then
WindowState = FormWidowState.Normal works perfectly. However, if the window
is not minimized, and it is covered by other windows on the user's desktop,
then I can not get it to come to the front except by:
WindowState = FormWidowState.Minimized
WindowState = FormWidowState.Normal.
Is there a better way of doing this?
Thanks in advance. Tag: Sql Predictive Typing (with Color) Component? Tag: 96301
Mutex...
I hope this is right forum for this...
I have the below block of code in my Main. When I compile in debug mode, I
get to run one instance only. When I compile in release mode, I get to run
more than one instance of my application. These are the first lines of my
application.. I tried to set the mutexName to a string or a GUID or the full
assembly name, still I can't get single Instance behaviour in Release mode
bool mutexWasCreated = false;
bool requestInitialOwnership = true;
string mutexName = "MyApp";
//System.Runtime.InteropServices.Marshal.GetTypeLibGuidForAssembly(System.Reflection.Assembly.GetExecutingAssembly()).ToString();
//System.Reflection.Assembly.GetExecutingAssembly().FullName;
System.Threading.Mutex m = new
Mutex(requestInitialOwnership,mutexName,out mutexWasCreated);
// If I put a log information here. I get True also..
try
{
if (mutexWasCreated)
{
m.ReleaseMutex();
}
else
{
MessageBox.Show("Application is already
running","MyApp",MessageBoxButtons.OK,MessageBoxIcon.Error);
return;
}
}
finally
{
m.Close();
}
// Code here calls Application.Run Tag: Sql Predictive Typing (with Color) Component? Tag: 96300
vs2005 - Why all the errors? yet the code works.
Hello,
>From time to time my vb2005 form disappears and is replaced by the
following errors. Rebuilding the application never helps. However the
errors never affects the operation of my application that I notice, but
it is very anoying.
To get rid of the errors I must close the form, close the application
and then reopen it.
\\\
One or more errors encountered while loading the designer. The errors
are listed below. Some errors can be fixed by rebuilding your project,
while others may require code changes.
The variable 'LaborCostCodeDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'HourlyRateDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'REditedOnDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'REditedByDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'DeviceNameDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'PrefixDataGridViewTextBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'BMachTypeDataGridViewCheckBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DtOrdDataGridViewTextBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DtHideDataGridViewCheckBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'OptionNameDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DescriptionDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OtOrdDataGridViewTextBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OtHideDataGridViewCheckBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
The variable 'FkOptionCategoryIdDataGridViewComboBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OptionTextDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'ItemDescriptionDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'MatlCostCodeDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'MatlCostDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMtgWCustomerDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMechDesignDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMechDetailDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMachCheckDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcFabricationDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMachineDetailsDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcPanelWiringDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcControlsDesignDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcControlsProgrammingDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcStartupDebugDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcRunoffDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcShippingDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcServiceCallDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcSupervisionDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcProgramMgmtDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcMiscDataGridViewTextBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcPurchasingDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcInternalMeetingsDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcRunoffInstallDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcDocumentationDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcDataTransferDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcPanelLayoutDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcElecPlumbingDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'CcPneuPlumbingDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'ControlInputsDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'ControlOutputsDataGridViewTextBoxColumn' is either
undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OUserNoteDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OOrdDataGridViewTextBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OHideDataGridViewCheckBoxColumn' is either undeclared or
was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OCreatedOnDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OCreatedByDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OEditedOnDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'OEditedByDataGridViewTextBoxColumn' is either undeclared
or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
The variable 'DataSet1' is either undeclared or was never assigned.
Hide
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager
manager, String exceptionText, String helpLink)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeExpression(IDesignerSerializationManager
manager, String name, CodeExpression expression)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager
manager, CodeAssignStatement statement)
at
System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializationManager
manager, CodeStatement statement)
///
What causes this and what is the remedy (the code is self gemerated)?
Thank you,
dbuchanan Tag: Sql Predictive Typing (with Color) Component? Tag: 96297
prompted for username/pw when accessing no touch deployment app on Win2K3/IIS6.0?
We are moving from a Windows 2000 Server to a Windows 2003 server. Our
ASP.NET web applications work fine on IIS 6.0 on the Windows 2000 and
Windows 2003 server.
All of our no touch deployment .NET Windows applications work fine on
Windows 2000 server but when we move them to Windows 2003 Server / IIS 6.0
the following happens:
1) User access the EXE via URL... (ex:
http://new2k3webserver/somefolder/someapp.exe)
2)User is prompted to enter user name and password
3)User can click cancel and the application will run normally, or user can
type in their domain account information and the application will run
normally.
This is a big nuisance. Does anyone have any suggestions. This happens
with out most complex applications and our simple applications. As a test,
I wrote a .NET 1.1 WinForms application with no lines of code and only a
Form at start up and the same problem occurs when I post it to Win2K3 / IIS6
as a no touch deployment app.
All suggestions welcome.
D. Tag: Sql Predictive Typing (with Color) Component? Tag: 96294
Binding class properties to controls with cancel to prevent editing
Hi, i am very new to data binding and am a little confused!
I have some properties in a class which i would like the user to be
able to edit. I can bind these fields to a control and then show the
form, the user can edit the data in the text boxes and the class's data
members get set ok without any problems.
I do however want to have ok/cancel buttons on the form, which if the
user clicks cancel all changes will be forgotten. now my problem is
with the binding scheme i am using it seems the class's member data
gets set when the text box control looses focus.
I would like to hold of any changes until the user hits ok, whilst at
the same time keeping the capability to check that data entered is
valid and within allowed bounds.
I can always create a copy of the class, bind the form controls to that
class, then check the form result when it returns from being shown and
if i get a DialogResult.OK assign the settings to my class, however im
not sure i can do this as i have socket members etc that will overwrite
my current socket and likely kill the connection which is not what i
want. another way is to keep the class's settings in a seperate
structure and bind that however to me that seems messy. Is there not a
nicer way to achieve this??! Sorry for the newb question, i have spent
a long time searching for an answer and im totaly stuck. Is data
binding even the correct thing for me to use?
Any help much appreciated.
Chris Tag: Sql Predictive Typing (with Color) Component? Tag: 96292
Can not connect to Access 2003 DB via Jet.Oledb.4
I have a VB .Net Windows application that accesses an Access Database using
ADO.Net OleDB .Net Data provider. Users are running Windows XP with the .Net
Framework installed. It works fine on user's PC who have MS Access
installed. However, when I distribute this to a user who does not have MS
Access installed, the program cannot open the connection. The database and
the executable are on the same machine and I install the Access 2003 runtime
on the client machine.
The Access database contains tables only. The users will not access the
database directly. All IO is done thru the VB.Net application.I have a
license to distribute Access runtime, but do not want to do so if all I need
to do is set a reference to Jet (or some other dll) so that the required
files are included in the installation package. Is there some reference I
should set before deploying?
Here is my connection string:
Private cnn As New
OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=..\data\AssetMgr.MDB;Jet OLEDB:Database Password=pwdclient;")
Here is how I use it:
Dim da As New OleDb.OleDbDataAdapter(sSQL, cnn)Try da.Fill(ds,
sTableName) Return TrueCatch ex As Exception Return False Throw ex
End Try
enak Tag: Sql Predictive Typing (with Color) Component? Tag: 96285
C# Moveable Window
Hello,
I have a C# App with no toolbar and no border. How can I make it
possible for the user to move the app if there is no title bar?
Thanks Tag: Sql Predictive Typing (with Color) Component? Tag: 96274
Datagrid control question (newbie)
Hi,
Is there a selected items property or something like that on the datagrid
control.
I need to be able chck if there are multiple rows selected in our datagrid
control in the popup event of a cont3ect menu, and modify items on the menu...
Also, how do I retrieve all the selected rows?
thanks
Philip Tag: Sql Predictive Typing (with Color) Component? Tag: 96271
How 2 create table and seect records using stored procedure and call it in asp
I have a problem with stored procedure,
i created a stored procedure to create and select records like
create procedure s ......
begin
create tale s ( i declared al the variables)
insert into s(i inserted values)
select * from s;
end
and i called the procedure in my asp and it says
object cannot be used when it is closed;
please help me with this error
thank u
vyas Tag: Sql Predictive Typing (with Color) Component? Tag: 96267
HTML -> Smart client (communications)
I need to tie together two apps; a thin (HTML) client and a smart-client
(running on the user's machine) deployed with click-once.
My question is: does anybody know of a good way to communicate between the
two?
The thin client is HTML generated from an asp web-site (not asp.net) [can
easiy be edited as required]
The smart client is C# / win form / .Net 2
The user is not an administrator, and ideally few or no changes would be
required
Must also work on internet zone to support extranet usage
Current ideas:
1: HREF to a second .application with params on query-string; this exe
accepts the params and uses remoting to talk to the main exe (and then
exits)
2: (preferred option) Smart-client starts up a simple web-server (e.g.
HttpListener or similar); thin client posts to
http://localhost/somewhere?someparams [problem: this triggers cross-domain
security warnings; don't want to have to trust the web site]
3: Some kind of control embedded on the page? Not sure if this can be
deployed easily? (don't want COM overhead)
4: other?
At the minimum I need to be able to send data in the forwards only
(html->smart) direction. Being able to process the response would be a "nice
to have". I do not need to be able to push from the smart-client to the web
page (thankfully).
Any suggestions? Surely somebody has had to do something similar?
Many thanks in advance,
Marc Tag: Sql Predictive Typing (with Color) Component? Tag: 96265
ContextMenuStrip is never disposed
I have created a sample Windows Forms Application, on mouse right click i
create a new ContextMenuStrip and shows it. I close the ContextMenuStrip by
clicking outside it or by clicking an item. Even after a GC.Collect call, the
ContextMenuStrip is never disposed.
Analysing with a .NET Memory Profiler i have noticed that, after closure,
the ContextMenuStrip is still alive : referenced by the ControlNativeWindow
and by SytemEvents handlers.
I have tried to call a Dispose in ContextMenuStrip.Closed handler, but it
raises an exception. Any idea ? Tag: Sql Predictive Typing (with Color) Component? Tag: 96262
Activating a message box in .NET
I have a .NET 2.0 form that parents a message box. Neither is currently
active. How can I programatically activate the message box? I can't seem to
do it via the .NET Framework, since message boxes aren't .NET forms, so I've
tried doing it via the Win32 API, but still no luck. Here's what I've tried
so far:
// First activate the parent form
parentForm.Activate();
// Now attempt to activate the message box itself
const int GW_CHILD = 5;
const int WM_ACTIVATE = 6;
const int WA_INACTIVE = 0;
const int WA_ACTIVE = 1;
int hwndParent = (int)parentForm.Handle;
int hwndMsgBox = GetWindow(hwndParent, GW_CHILD);
if (hwndMsgBox != 0)
{
SendMessage(hwndMsgBox, WM_ACTIVATE, WA_ACTIVE, hwndMsgBox);
SendMessage(hwndParent, WM_ACTIVATE, WA_INACTIVE, hwndMsgBox);
}
Regards,
Marcus Ogden
Software Development
QSR International Pty Ltd Tag: Sql Predictive Typing (with Color) Component? Tag: 96259
Capture Form Move - Start and Stop
Hi,
I want to capture the move of a form with an override of OnMove, which
works fine.
But I want to register also when a user starts moving a form and when
he releases it, any idea how to accomplish that?
Here is what I tried so far without success:
- Capturing the OnMouseCaptureChanged: As the Capture flag is set
during the form move and is unset after, I expected this event to be
fired, but it isn't. So it does not help...
- Overriding WndProc and capturing WM_NCLMOUSEDOWN, WM_NCLMOUSEUP,
WM_LMOUSEUP: To register the mouse down in the HTCAPTION and the mouse
up as the end of the dragging of the form. I receive the nc mouse down
event, but I never get a mouse up, except if the form is maximized. No
idea, why that is... the form has a sizeable toolbar frame.
Anybody any other ideas? Tag: Sql Predictive Typing (with Color) Component? Tag: 96258
Embedded win forms: focus/tab control problem
I am "embedding" several Winforms (Form descendants) in Panel controls,
showing them as follows:
this.TopLevel = false; //this is a Form
this.Parent = parent; //parent is a panel
this.FormBorderStyle = FormBorderStyle.None;
this.Dock = DockStyle.Fill;
this.Show();
The "embedded" forms are shown correctly in the container panels, but
focus/tab control does not work as it should. Once you tab into the
first "embedded" form, further tabbing will move the focus from one
control to another only inside this "embedded" form, never releasing it
to the next one, or to any controls of the container, top-level, form.
Is there anything I can do about it? Tag: Sql Predictive Typing (with Color) Component? Tag: 96257
Capture Form Move - Start and Stop
Hi,
I want to capture the move of a form with an override of OnMove, which
works fine.
But I want to register also when a user starts moving a form and when
he releases it, any idea how to accomplish that?
Here is what I tried so far without success:
- Capturing the OnMouseCaptureChanged: As the Capture flag is set
during the form move and is unset after, I expected this event to be
fired, but it isn't. So it does not help...
- Overriding WndProc and capturing WM_NCLMOUSEDOWN, WM_NCLMOUSEUP,
WM_LMOUSEUP: To register the mouse down in the HTCAPTION and the mouse
up as the end of the dragging of the form. I receive the nc mouse down
event, but I never get a mouse up, except if the form is maximized. No
idea, why that is... the form has a sizeable toolbar frame.
Anybody any other ideas? Tag: Sql Predictive Typing (with Color) Component? Tag: 96256
DataGridView Validation Problem!
I have implemented a custom date control; it's a UserControl containing a
MaskedTextBox control. I have created a DataGridView custom column using this
UserControl.
DataGridView is very demanding of its custom column controls. But I have
finally modified the UserControl so it mostly works correctly, except for one
major problem. When a cell loses focus (via tab, enter, etc.), the DataGridView
gets the control's value (via a get of EditingControlFormattedValue) BEFORE the
MaskedTextBox raises the TypeValidationCompleted event. Since the app is
required to prevent leaving the UserControl unless there is a valid date value,
the app does not expect to be able to retrieve an invalid value. But since the
validation occurs too late when in a grid, the value is retrieved before it is
ready. To make a long story short, this appears to be a serious (at least for
many uses) bug in the DataGridView.
Trying to have the UserControl do special validation in this case leads to some
pretty convoluted logic! Can you suggest any clean way to prevent this problem
from occurring?
Dave
=======================================================
Dave Morgenlender
e-mail: dmorgen@alum.mit.edu
======================================================= Tag: Sql Predictive Typing (with Color) Component? Tag: 96253
ListView ownerdrawn performance
Hi all,
I've been testing a listview control on an app I'm creating which is in
'details view' with 3 columns. It can contain string information from 4
different objects (linked with Tag), each drawn with a unique colour. When I
load in 2000 (or even as low as 500) objects the performance hit is quite
bad, I had to derive a new control from ListView so I could enabled double
buffering on the control. This stops the flickering, but there is a
noticeable lag when scrolling the vertical bar up and down. Even having as
few as 200 objects displayed creates a slight lag.
At first I thought this might be due to me using many different colours, so
I tried redrawing in just one colour and the same thing happens. What looks
worse is minimising the form, and then restoring it, the listview doesn't
draw (so the desktop can be seen through it) for a few seconds (I guess it's
drawing the contents of the listview during that time).
If I turn off ownerdrawn there is no lag on drawing even 2000 items,
although there is a few second delay on loading the items.
Is this performance hit normal for ownerdrawn listview controls? If not,
any tips on removing it would be appreciated!
Chris Tag: Sql Predictive Typing (with Color) Component? Tag: 96248
ToolStripComboBox binding problems
The following code only "binds" when the toolStripComboBox1 is at the top of
the toolStrip1 hierarchy (i.e., ToolStrip > ToolStripSplitButton >
ToolStripComboBox). Why will the control NOT bind when it moved (recreated)
as a child control of a toolStrip control (i.e., ToolStrip >
ToolStripSplitButton > ToolStripComboBox)? I have also tried casting
toolStripComboBox1.Control as a standard ComboBox and binding it that way.
That method produces the same effect. I can use the exact same binding
settings on a regular ComboBox with no problems either. The problem truly
seems associated with the fact that the control being bound seems to be
nested.
//(bsCustomers is a BindingSource object and dvCustomers is a DataView
object)
bsCustomers.DataSource = dvCustomers;
toolStripComboBox1.ComboBox.DisplayMember = consts.Columns.colCustomersName;
//"Name"
toolStripComboBox1.ComboBox.ValueMember = consts.Columns.colCustomersID;
//"ID"
toolStripComboBox1.ComboBox.DataSource = bsCustomers;
------------------------------------------------------------------- Versions
Microsoft Visual Studio 2005
Version 8.0.50727.42 (RTM.050727-4200)
Microsoft .NET Framework
Version 2.0.50727
Installed Edition: Professional
Microsoft Visual Basic 2005 77626-009-0000007-41501
Microsoft Visual Basic 2005
Microsoft Visual C# 2005 77626-009-0000007-41501
Microsoft Visual C# 2005
Microsoft Visual C++ 2005 77626-009-0000007-41501
Microsoft Visual C++ 2005
Microsoft Visual J# 2005 77626-009-0000007-41501
Microsoft Visual J# 2005
Microsoft Visual Web Developer 2005 77626-009-0000007-41501
Microsoft Visual Web Developer 2005
Crystal Reports AAC60-G0CSA4B-V7000AY
Crystal Reports for Visual Studio 2005 Tag: Sql Predictive Typing (with Color) Component? Tag: 96246
How to create a form?
Hi,
I'm writting a system, in which I need to create my own dialog. It is
activated by ButtonClick event.
I've tried to create another one form, and then in event handler I've wrote
Application::Run(gcnew myDialog());
But as you know, this makes an error compiling.
How can I create another one form in my WindowsForms application, which
is activated by pressing a button in another form? Tag: Sql Predictive Typing (with Color) Component? Tag: 96245
How to create basic Windows Explorer
Hi
As part of a system I need to create a file uploading application - User
should be able to select few files ( or a whole folder) and upload all the
files on a server using web service.
I wanted to know if it is possible to mimic basic functionality of windows
explorer - show files with correct icons and allow navigation in folder.
I know that I can optionally use Open File dialog but I think it would be
nicer to use regular ListView.
I don't do too much windows forms development so any tip is welcome.
Thank you,
Shimon Tag: Sql Predictive Typing (with Color) Component? Tag: 96241
RichTextBox formating problems
Hi,
I have a richtextbox which I have modifyed to enable scrolling (ie text gets
added to the bottom and gets scrolled upwards when new text is added). I
have also modifed so that cirtan text can be a different color using the
SelectedStart, SelectedLength and SelectedColor properties.
This is all working fine.
Now
I want to limit the amount of text which ends up in the display so I'm using
the string.Remove function to remove text from the begining of the text.
However in doing an kind of operation to remove text all formating is lost
on my current text.
This sucks!!!
So
I tryed implimenting a solution which stores the formating applied to the
text. This is very slow and also sucks.
Basically I need a better way of
a: removing text from the text box without loosing formating
b: a way of capturing previously formated text and reappling it to new text
c: appling my own method of storing formating to text
Thanks Tag: Sql Predictive Typing (with Color) Component? Tag: 96239
need HELP urgently example code included
Hi All,
Can anyone explain the behaviour of the program below, I have two textboxes and in thier
lostfocus event I am displaying a message box and then setting focus to the other textbox but it seems
to be firing the both textboxes lostfocus events when they have values set, WHY ??
enter 1 in the first textbox and 2 in the second texbox.
any help will be greatly appreicated.
THANK YOU.
using System;
using System.Drawing;
using System.Windows.Forms;
namespace test
{
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox tb1;
private System.Windows.Forms.TextBox tb2;
private System.ComponentModel.Container components = null;
public Form1()
{
InitializeComponent();
}
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.tb1 = new System.Windows.Forms.TextBox();
this.tb2 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// tb1
//
this.tb1.Location = new System.Drawing.Point(216, 80);
this.tb1.Name = "tb1";
this.tb1.TabIndex = 0;
this.tb1.Text = "";
//
// tb2
//
this.tb2.Location = new System.Drawing.Point(216, 128);
this.tb2.Name = "tb2";
this.tb2.TabIndex = 1;
this.tb2.Text = "";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(608, 318);
this.Controls.Add(this.tb2);
this.Controls.Add(this.tb1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void Form1_Load(object sender, System.EventArgs e)
{
tb1.LostFocus+=new EventHandler(tb1_LostFocus);
tb2.LostFocus+=new EventHandler(tb2_LostFocus);
}
private void tb2_LostFocus(object sender, EventArgs e)
{
if (tb2.Text=="2")
{
MessageBox.Show("Example 2");
tb1.Focus();
}
}
private void tb1_LostFocus(object sender, EventArgs e)
{
if (tb1.Text=="1")
{
MessageBox.Show("Example 1" );
tb2.Focus();
}
}
}
} Tag: Sql Predictive Typing (with Color) Component? Tag: 96238
Alpha Blended windows with controls
I am trying to get some information from somebody about using
UpdateLayeredWindow API.
I need to be able to create a window that is Alpha blended to the desktop
and have text, buttons, scrollbars, etc.
Is there any way to do this? If so can somebody point me in the right
direction / examples.
I can get a window with my PNG to render using UpdateLayeredWindow API but
nothing else...
I am currently using .net 1.1 / 2.0 in C#.
Thanks. Tag: Sql Predictive Typing (with Color) Component? Tag: 96234
How to see current windows message queue
My form gets a resize message after completing a button click event and I
cant find the source of this resize message.
My button event makes same calls to directx device and resizing or
maximizing the form. Yes these calls can be source of the unknown resize
event but I see my resize event raised at the moment doing these calls in
the button event.
After finishing all calls and resizings in the button event, I get a resize
event, but from where ????
I look to call stack at this resize event, and I cant see and code of mine
raises this event. So I think a line of code in the button event creates a
resize message in the message queue for processing it in the App.DoEvents
call. not in the button event. And this message waits the current button
click message ending.
I will give a code example :
method MyForm.ButtonClick // this is the event method of my button
[
// in this event, we make lots of calls
backup form's size (*)
reset directx device
restore form's size (*)
....
// I think one line of code in this event, adds a resize event to
message queue to process later
]
method MyForm.Resize // resize event
[
// this event raised at the moment of running (*) lines
some code...
]
after completing the button event and before returning to normal program
loop, I get an extra resize event :( :(
so, I need to see all stored messages in message queue when I process my
button event. for example, I will print the current message queue status to
console line by line in the button event. I really need to see which line of
code adds the f..king extra resize event to the queue.
pls help me, how can I get the current windows message queue status to print
to console Tag: Sql Predictive Typing (with Color) Component? Tag: 96233
publishing app
How would I go about crating a folder during installation of my application?
Currently, I save files in my users MyDocuments folder, but they're loose.
It would be better if I could create a specific folder to hold them, but I'm
not sure how I'd go about this.
Any help would be appreciated.
Chris. Tag: Sql Predictive Typing (with Color) Component? Tag: 96232
Menu access key underlines not visible for MenuStrip
The underlines for the Access Keys in a Windows Forms menu are not visible in
even the most basic application on my system. I created a Windows Forms
application and added a menu strip with a &File menu item and &New, &Open and
E&xit subitems. The underlines are visible in design view but disappear when
the form is run.
My system is Windows XP Professional with Visual Studio 2005 Team Edition
for Software Developers but I also have installed Visual C# 2005 Express
Edition, Visual Web Developer 2005 Express Edition, SQL Server Developer
Edition and SQL Sever Express Edition. Does anyone have any ideas on what
might be happening? I am a rather new .NET Developer and I'm not even sure if
I should be somehow reporting this to Microsoft. Thanks for your help! Tag: Sql Predictive Typing (with Color) Component? Tag: 96230
multilingual support
I have given multilingual support to my winform application, everthin
is working fine, but when i compile my project it generates multipl
resource dlls for all the languages.
Is it possible to combine or merge all the resource dlls of all th
languages
in one single dll.
Visha
--
va_achary
-----------------------------------------------------------------------
va_acharya's Profile: http://www.msusenet.com/member.php?userid=509
View this thread: http://www.msusenet.com/t-187364910 Tag: Sql Predictive Typing (with Color) Component? Tag: 96225
TaskVision Smart Client demo app in 2.0
I just downloaded the TaskVision smart client app for review. I think it
was built in 1.0, however, i'm runnint 2.0. VS 2005 upgraded it and now I
have a vew compile errors. One I dont know how to resolve is in the class
SQLHelper where its trying to return a sqldatareader from a shared method.
the compile error is:
Error 39 Overload resolution failed because no accessible 'ExecuteReader'
can be called without a narrowing conversion:
'Public Shared Overloads Function ExecuteReader(connectionString As
String, spName As String, ParamArray parameterValues() As Object) As
System.Data.SqlClient.SqlDataReader': Argument matching parameter
'connectionString' narrows from 'System.Data.CommandType' to 'String'.
D:\nwis\Apps\SampleCode\SmartClientApps\TaskVision\Microsoft.ApplicationBlocks.Data\SQLHelper.vb
772 24 Microsoft.ApplicationBlocks.Data
and the method is:
Public Overloads Shared Function ExecuteReader(ByVal connection As
SqlConnection, _
ByVal spName As
String, _
ByVal ParamArray
parameterValues() As Object) As SqlDataReader
'pass through the call using a null transaction value
'Return ExecuteReader(connection, CType(Nothing,
SqlTransaction), spName, parameterValues)
Dim commandParameters As SqlParameter()
'if we receive parameter values, we need to figure out where
they go
If Not (parameterValues Is Nothing) And parameterValues.Length >
0 Then
commandParameters =
SqlHelperParameterCache.GetSpParameterSet(connection.ConnectionString,
spName)
AssignParameterValues(commandParameters, parameterValues)
Return ExecuteReader(CommandType.StoredProcedure, spName,
commandParameters)
'otherwise we can just call the SP without params
Else
Return ExecuteReader(connection,
CommandType.StoredProcedure, spName)
End If
End Function 'ExecuteReader
Any idea on how to resolve this?
Thanks.
--
moondaddy@nospam.nospam Tag: Sql Predictive Typing (with Color) Component? Tag: 96224
VB.NET wizard form
Hi all,
I'm writing an app in VB.NET and want it to look and behave like a typical
application wizard (i.e. with the usual Next, Cancel, Back etc). Should I
be looking to use multiple forms or is there a better, cleaner way of doing
it?
Cheers
Paul Taylor Tag: Sql Predictive Typing (with Color) Component? Tag: 96218
Controls paint slowly
Sorry for re-posting in this newsgroup - but this group is more apropriate
than dotnet.general
I am developing a mdi application that will act as a front end to a database.
I am finding that when i show any of the mdi child forms in my application
it is noticeable that the form is shown first with the areas where the
controls will be displayed cut out and what ever is top most before the form
is shown is momentarity seen through these areas.
This is also noticed if the user changes focus to say internet explorer and
then back to the running application.
I find that this is more noticeable for textboxes, labels and toolstrips but
not listboxes or tab controls.
I have tried various methods suggested for double buffering, however these
appear to show no signs of improvement.
None of my mdi child forms are currently doing anything special on loading -
the form as seen in the form designer is just being shown (no data access on
load)
I would appreciate any suggestions. Tag: Sql Predictive Typing (with Color) Component? Tag: 96214
Dot Net Project Execution without Dot Net and Framework....
Dear all
In Dot Net windows Application ....
what are the requirements to run the developed Dot Net project EXE file
in
the system which doesnt have Dot Net.....
with out creating of Setup......
only with project EXE file........
please help me...
regards
krishnan Tag: Sql Predictive Typing (with Color) Component? Tag: 96209
drag and drop on axwebbrowser
I am trying to capture drag and drop events from the web browser control
(axWebBrowser). I am using the IOleClientSite interface to connect to the
browser with SetClientSite. I get the first call to GetDropTarget, and
assign an object that implements the IDropTarget interface. However, I never
recieve any of the callbacks in the IDropTarget interface. Also, after I do
one drag/drop operation onto the browser control, I can't do any further drop
operations on the browser. What is the correct way to implement drag/drap on
the web browser control? Tag: Sql Predictive Typing (with Color) Component? Tag: 96202
Curved borders on a window.
Is there anyway I can have a curved edge on a window - to round it out.
(Kind of like the top edge of a window that hasn't been maximized).
I have a window with no border and a back ground image that has curves on
it. The image itself has the corners transparent but the form doesn't appear
to be transparent.
Any suggestions?
TIA - Jeff. Tag: Sql Predictive Typing (with Color) Component? Tag: 96199
Have one window close another window.
I have an app that opens a main window. There's a condition where another
window will open and from that window I want to be able to close the first
window.
How do I do this?
TIA - Jeff. Tag: Sql Predictive Typing (with Color) Component? Tag: 96197
How to make controls expand to fill screen in fullscreen mode
I design my forms in Visual Studio, which has limited screen space for the
form. After compilation, I run the project and expand the form to
fullscreen mode, but the controls and other elements on the form remain
fixed -- they don't expand to fill the entire screen.
How can make the controls and other elements on the form expand to
fullscreen mode?
Thanks for any help. Tag: Sql Predictive Typing (with Color) Component? Tag: 96196
Paint event don't Work
Hi :
I have created a Class where this contains a timer , each time the timer
control been activate or its interval time has elpased a new window must
appear and deseapear ,, ( com kind of alarm) ,, I created another class
(form) that is instanced when the peiod time from my Class A is executed ..
Why the event Method DO not fires !! ? , Why if I Instance the Class from
another Form it Works , but When I Instance The Class From My Class Don't
Work.
Tank Very Much for your help ... Tag: Sql Predictive Typing (with Color) Component? Tag: 96194
A Framework for Datadriven Forms for VB Dot Net
Hello All,
I am currently in the middle of creating a 'Framework' for my latest VB.Net
project.
I have always created such a tool for previous lauguages.
This time I am basing it on n-Tier architecture. I will probably continue
and develop my own version, but have any of you people developed your own
version, or used and 3rd party tools.
What I am referring to is a set of code that can be used for most forms in
the application, they will display data, allow for additions, deletions,
updates, will support record selection, etc.
I typically then add error logging, application logging, and a few other
minor features.
The only problem is it is a little labourious creating all the code for each
layer, and the stored procedures required, and the stored procedures for the
combo's also.
I am attempting to use .Net 2003's data adapter to generate some of the sql
for the updates and deletions, but I still have to hand write a reasonable
amount of the code myself.
Any thoughts?
Thanks in advance
Mark Breen
Ireland Tag: Sql Predictive Typing (with Color) Component? Tag: 96189
CLickOnce Doesn't work with FireFox?
Is this true, is there no work around here?
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=122285&SiteID=1 Tag: Sql Predictive Typing (with Color) Component? Tag: 96188
Window with another window on top of it.
I have a situation where I have a window and I want to put another window on
top of it that opaque at 50%. That works fine. But I'd also like to have it
that when I move the main window, the opaque one moves with it.
How can I do this? Do I need to go to an MDI which I really don't want to.
Or do I have to move the opaque window in the main window's Move event?
TIA - Jeff. Tag: Sql Predictive Typing (with Color) Component? Tag: 96187
using console with a windows app
I have a VB app with a form under FW 1.1, sp1. In sub main, I do some setup
processing that may or may not result in some calls to:
Console.Writeline(...)
eventually, I do:
Application.Run(New Form1)
All this works. If the app is run by clicking the app's icon, the console
writes are discarded. If I run from a command prompt window via
app arg1 arg2 | more
I will see the console writes in the command window. But if I run via
app arg1 arg2
the console writes are discarded.
I would like to avoid piping to 'more' if possible. I guess what I want to
do is flush and close stdout before I do Application.Run(New Form1). But
Console.Out.Flush()
and/or
Console.Out.Close()
don't help.
I'm looking for a .net solution - not api's. Also, I have read some info
about making a console app and starting forms from it. I'd rather not go
that way - this app is a windows gui app that has a couple of troubleshooting
command line features. So, is there a .net way to close and flush stdout so
the text is visible in the command prompt window while the windowed app
continues to run? Tag: Sql Predictive Typing (with Color) Component? Tag: 96185
Can't Read App.config with No-Touch Deployment and .NET 2.0
My application uses the no-touch deployment model. In .NET 1.1, this works
great. After I installed .NET 2.0 (and subsequently uninstalled it), the
application can no longer read the app.config file.
Example: ConfigurationSettings.AppSettings.Get(...) always returns Nothing.
Again, this works with 1.1, but not with 2.0 (tested on mulitiple machines).
Any insight?
Thanks in advance,
Rob Tag: Sql Predictive Typing (with Color) Component? Tag: 96183
Can we create our own MessageBox ?
This is a multi-part message in MIME format.
------=_NextPart_000_0068_01C612DA.628EE420
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Hi,
Can we create our own customized MessageBox and Inputbox, in which icons =
or images and custom message can be shown.
Thanks in advance,
Regards
Swat
------=_NextPart_000_0068_01C612DA.628EE420
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV>
<P><FONT face=3DArial size=3D2>Hi,</FONT></P>
<P><FONT face=3DArial size=3D2>Can we create our own customized =
MessageBox and=20
Inputbox, in which icons or images and custom message can be =
shown.</FONT></P>
<P><FONT face=3DArial size=3D2>Thanks in advance,</FONT></P>
<P><FONT face=3DArial size=3D2>Regards<BR></FONT><FONT face=3DArial=20
size=3D2>Swat</FONT></P></DIV></BODY></HTML>
------=_NextPart_000_0068_01C612DA.628EE420-- Tag: Sql Predictive Typing (with Color) Component? Tag: 96179
Is there a free download Sql Predictive Typing (silimar to autocomplete, with
Color) to be used in code? Thank you in advance for replying.
Re: Sql Predictive Typing (with Color) Component? by Tim
Tim
Wed Jan 11 23:49:45 CST 2006
Serg,
I've never used it, but I saw a post on CodeProject a few months ago
about QueryCommander, written by Mikael H=E5kansson. There may be
others, but it looked very impressive.