Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dalchri

  1. dalchri

    Relative div overlaps following divs

    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.
  2. dalchri

    Relative div overlaps following divs

    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...
  3. dalchri

    Combine websites from two IIS servers

    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...
  4. dalchri

    Combine websites from two IIS servers

    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...
  5. dalchri

    ComboBox with two binding sources

    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...
  6. dalchri

    DataGridView DateTime column and DBNull

    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...
  7. dalchri

    DataGridView DateTime column and DBNull

    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 =...
  8. dalchri

    DataGridView DateTime column and DBNull

    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...
  9. dalchri

    System.Data.ODBC problems

    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.
  10. dalchri

    DataGridView DateTime column and DBNull

    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...
  11. dalchri

    DataGridView DateTime column and DBNull

    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...
  12. dalchri

    ReportDocument.Close is very slow

    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...
  13. dalchri

    ReportDocument.Close is very slow

    Bump. Could someone verify this problem? It would at least be helpful to know that I am not the only one. Thanks!
  14. dalchri

    ReportDocument.Close is very slow

    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...
  15. dalchri

    C# and Windows CE 5.0

    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...

Part and Inventory Search

Back
Top