That was it. I was expecting the absolutely positioned contents of div1 to increase its size. As soon as I sized it, everything was working as expected.
Hello,
I've got the following:
<div id="div1" style="position:relative;"><!-- Map inside here with a few controls docked to the upper left, lower left, and upper right --></div>
<div id="div2"><!-- More content --></div>
As soon as I set div1 to relative positioning, div2 slips up to the...
That's close to what I'm after. The only problem is that the processing of the webpages occurs on server A instead of server B. Our ArcGIS server is a pretty hefty creature.
Maybe what I am after is more of a routing thing than an IIS thing.
Requests for http://www.domain.com/* should hit...
Hello,
We have two IIS servers. Server A is serving up content for our public website. Server B serves ArcGIS content and has a rather extensive ArcGIS server installation on it. At the current time, the public website is exposed as www.domain.com and the ArcGIS content is exposed as...
I think the problem is you are binding to the Text property of the ComboBox instead of the SelectedValue property:
This:
this.ddComboBox.DataBindings.Add("Text", bsMainList, "MyObjectID", true, DataSourceUpdateMode.OnPropertyChanged);
should be this...
Based on what I am seeing in the .NET Reflector for DataGridView.PushFormattedValue, there is absolutely no way to perform DBNull assignment using the CellParsing event.
Also, to elaborate on the subtlety of the IDE behavior, you will only encounter this problem that I did if you change the...
And it is even more subtle than that. Depending on how you tickle the IDE, sometimes it generates the following code:
//
// colDate
//
this.colDate.DataPropertyName = "Date";
dataGridViewCellStyle2.Format = "d";
dataGridViewCellStyle2.NullValue = null;
this.colDate.DefaultCellStyle =...
The solution that I have stumbled upon is that you can set the column's NullValue at form startup to an empty string. Apparently there is no way to do this through the IDE because a blank NullValue is interpreted as null by the form designer.
I'd still rather have the ability to do this...
Something else that might be interesting is to attach to the RowUpdated event on the DataAdapter. This could give you a feel for how long it takes for each row to be retrieved from the database, if some records are taking longer than others, or if it's an initial connection issue.
The DataError dialog continues to be displayed with the following code:
private void grdSchedule_CellParsing(object sender, DataGridViewCellParsingEventArgs e)
{
if ((string) e.Value == "")
{
grdSchedule[e.ColumnIndex, e.RowIndex].Value = DBNull.Value;
e.ParsingApplied = true;
}
}
and...
Hello,
I have a DataGridViewTextBoxColumn that is bound to a DateTime column which allows nulls. I can't figure out for the life of me how to allow the user to delete the text out of this column and get the DataGridView to successfully parse the text back to DBNull.
I thought it would be as...
The problem turned out to be a conflict with one of our 3rd party software products, HelpSTAR which uses version 8.5 the engine. Uninstalling HelpSTAR resolved the problem. Even so, Business Objects has been extremely helpful and is continuing to try to make HelpSTAR and Crystal Reports XI...
I have recently run into the problem with the error message, "The maximum report processing jobs limit configured by your system administrator has been reached."
I have tried to implement the Close and Dispose methods of the ReportDocument but I have a big problem. The Close method takes a...
Are you trying to connect to a local SQL server CE on Windows CE itself or a regular SQL server on a remote server?
What version of VS.NET are you using?
I found when I did my SmartDevice project that I had to use the specific matching version of SQL server that could be accessed from the .NET...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.