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 TouchToneTommy 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 mirirom

  1. mirirom

    Problem with cin >> ignoring input in a function

    hi uolj, thx for the reply. turns out the code was working fine. the function call in the loop was based on a conditional bool member, which at 2am i was trying to assign char data to. after the bug fix, things are ok. thanks again... ..:: mirirom ::..
  2. mirirom

    Problem with cin >> ignoring input in a function

    hi, i'm sure this is a pretty basic question. basically i have a function that's called within a loop. at the end of the function, i've placed char c; cout << "blah blah blah"; cin >> c; cin.ignore(80, '\n'); however, the cin >> doesn't wait for the user's input. i've tested to see what's...
  3. mirirom

    Datagrid not refreshing after postback

    hey again Atomic, i totally stand corrected; was reading the trace wrong! your're completely right about the order of ops here where Page_Load is being called prior to the handler from the DataGrid. thanks! i've added a myGrid.DataBind() method in the control's event handler to refresh...
  4. mirirom

    Datagrid not refreshing after postback

    hey atomic, thx for the reply. yeah, in one of my tests, i have the event handler make an explicit call to the building method. it's interesting that when stepping through the code *starting* from the event hander for the control in the datagrid... ~ the table in the dataset is updated...
  5. mirirom

    Datagrid not refreshing after postback

    hi, i have a DataGrid that's bound to a table within an untyped DataSet. during the application's use, the table has rows added, updated, deleted, etc which is handled by a method in the page's code behind. after the method executes the page reloads. my Page_Load handler explicitely states...
  6. mirirom

    Updating DataSet to datasource question

    well, after digging a bit further, i found a clear cut piece of documentation about this in Andrew Troelsen's "C# and the .Net Platform". basically it states that in order for an adapter of any type to generate its own SQL statements to pass data back to a source, the SELECT statement for the...
  7. mirirom

    Simple SQL string question for totaling

    hi FoxT, the method you're calling, ExecuteNonQuery(), is the issue. it is infact executing your select statement, but this method doesn't return any values (except if you're using out params - see the documentation in VS.NET or MSDN). this method is typically called for INSERTs, UPDATEs...
  8. mirirom

    Updating DataSet to datasource question

    hi, i'm working on an app that uses a dataset who's tables are filled with some hybrid SELECT queries, meaning, the tables in the dataset are hybrids of mixed data from the datasource (SQL Server btw), or better, no single table in the dataset is a modeled copy of a table in the datasource...
  9. mirirom

    Get value of control built in template column

    ah cool! got it! ..:: mirirom ::..
  10. mirirom

    Get value of control built in template column

    hi Boulder, thanks for the reply. i guess i'm confused about this then. if the controls are named during compiation, then you have no way of knowing what the string id is for the control. since i don't know the name of the dropdownlist, then how can i use it in the DataGridItem.FindControl...
  11. mirirom

    Get value of control built in template column

    hi, i'm working with a datagrid that's almost entirely composed of template columns (the implementation of it is unique enough that it's required). one of the template classes i've created defines a DropDownList control and adds it to the footer. this all works fine and well. however, i'm...
  12. mirirom

    tooltips in SELECT dropdownlist possible?

    i hadn't. thx! ..:: mirirom ::..
  13. mirirom

    tooltips in SELECT dropdownlist possible?

    hi, i'm wondering if it's possible to assign tooltips to items within a dropdownlist control. the standard shows that the OPTION tag supports the title attribute but no rendering occurs. any suggestions are greatly appreciated. thx! ..:: mirirom ::..
  14. mirirom

    Runaway sqlservr.exe process - killing the machine

    hi, i have an instance of MSDE that seems to be chomping away at all available resources. wound up installing SQL server mgmt tools on the machine hosting the instance & upon inspecting the management logs, this error pops up about 1ce every 3 minutes: This SQL Server has been optimized for...
  15. mirirom

    Error, ODBC Driver not activated - question

    hi, i'm having a weird problem with a scheduled job that is rather fickle about running. the job executes a DTS packaged which includes a step that utilizes an installed system DSN (on the SQL server) to a 3rd party application (Protrax). basically the DSN is used to read data in an external...

Part and Inventory Search

Back
Top