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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. azgooroo

    Acessing text value of a textbox from another form??? please

    Gosh - I went through this too. The detail is really too long to paste into this post - it involves events and delegates. Make your popup forms classes which your main form instanciates but only shows when necessary. Set up delegates and events to mirror changes in the called form in the main...
  2. azgooroo

    Updating Datagrid Column

    You don't mention the underlying datasource for your grid - dataset, dataview, etc. Let's assume it's a dataset. After populating the dataset and before setting the datasource for the grid, you might course the dataset and make the necessary adjustments, then set the datasource for the grid...
  3. azgooroo

    Why does the If statement work in this code snippet?

    I think Chip H. is on the right track. If that doesn't work, try also: if (rInner["ICD9Seq"].ToString().CompareTo(r["ICD9Seq"].ToString())== 0) { bTmp = true; } This would apply if the types are strings. Use CompareTo to compare strings.
  4. azgooroo

    Learning C#

    C# Programming (Wrox) is good. For some excellent examples and explanations try MCAD/MCSD (Que). This is a training guide and has been most valuable to me. Good hunting!

Part and Inventory Search

Back
Top