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

    Window Focus

    Is there any way to keep a window from stealing the focus on window.Show()?
  2. Zachery

    Lottery Number Picker (Uses Random and Arrays)

    This program cycles through numbers 1-49 randomly c number of times. It then displays the top six picked numbers, in order. The Random is as random as possible, because it starts the cycle according to the computers millisecond clock. This may not be of much help to advanced programmers, but I...
  3. Zachery

    Ordering in a DataGrid

    In the properties builder you can manually set each column as sortable or not. Or you can just leave off the Sort Command Event Handler: private void DataGrid_SortCommand(object source, System.Web.UI.WebControls.DataGridSortCommandEventArgs e)
  4. Zachery

    Timer class - is it independently repeating?

    Programming is a step-by-step method. So, the OnTimer EventHandler fires, then, once the OnTimer EventHandler is done, the sequence is continued and the timer waits for ten seconds before continuing on. So the timer is not running until the OnTimer is done and returns control.
  5. Zachery

    Showing Hints for components

    Button1.ToolTip = "Your Text Here." Also works for link buttons.

Part and Inventory Search

Back
Top