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 Chris Miller 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. fifelo

    Select distinct from a DataTable???

    The only reason I ask is because you can use queries and what not as tables and re-select from them... you can join tables on themselves, or rejoin queries on themselves... a simple example of using a sub query as a table SELECT e.name, n.login FROM (select * from employees) as e, ( select *...
  2. fifelo

    Select distinct from a DataTable???

    Just out of curiosity why can't you change the query?
  3. fifelo

    Records Disappear on Sort

    I haven't looked as closely as I should at this code, but have been using datagrids extensively. You need to "refresh" your datasource. The data behind the datagrid is lost after every time the page is done being rendered, all that is left is the data in the datagrid. Every time you...
  4. fifelo

    Reloading Combo based on a value selected in another Combo

    It may not be the greatest idea to use javascript to create new comboboxes. I can't think of the name of the server variable but there is some server validation of the control states/view states. I'm not sure how well aspx pages will handle post back from dynamically instantiated form...
  5. fifelo

    system.web.ui.webcontrols.calendar previous date

    I would think there would be some very easy way of doing this, but so far haven't found it ( without using session variables ) I am handling the Calendar1.SelectionChanged event but I want to make it so the selcteddate doesn't change if the user selects some date I don't want them to be able to...
  6. fifelo

    Alert or Msgox

    This may not be the end all answer, but its worked well for me. For my error messages I just create a panel with a label and a button. The panel starts invisible, if I need to prompt I set the panel to visible and set the label text within the panel to my error message. The button in the...
  7. fifelo

    Stored procedure transaction handling

    I am trying to create a stored procedure to handle some typical transaction stuff i.e. mostly a retry loop. Its a long story but basically I want to make it so this stored procedure has the least chance of failing. The program using it can either execute one SQL statement or call a stored...

Part and Inventory Search

Back
Top