Search results for query: *

  1. J

    MdiList Restore Minimized form

    I am getting closer. The following code improves matters somewhat. It allows you to minimize all the forms, since the state is only set to normal if the MdiChild list popub/sub-menu is open. But it won't set to normal a form that is the active child but is minimized. In actual practice this...
  2. J

    MdiList Restore Minimized form

    Thanks, I'm basically there. I put the following in my program: Private Sub MainMenu_MdiChildActivate(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles MyBase.MdiChildActivate Dim xFrm As Form = Me.ActiveMdiChild If Not xFrm Is Nothing Then...
  3. J

    MdiList Restore Minimized form

    Hi. I have an MDI (parent) form containing a Menu, which has a "Windows" item with MdiList set to True. It works fine, showing all the open child forms, etc. If a child form happens to be minimized when you select it in the "Windows" sub-menu, it becomes the "Active" form, but it remains...
  4. J

    DataGrid RowHeader Text

    Thank you, your "Windows Forms FAQ" has a way (using Paint). But it seems an awfully elaborate way to do something so simple. Does anyone know if this has been changed in VS.Net 2005 ?
  5. J

    DataGrid RowHeader Text

    Hi. Is it possible to place text in the row headers of a datagrid? I don't see a property that will do this, but "there has to be a way". Thanks, Joe
  6. J

    Double Scrollbars in DataGrid

    Hi. I have a "Search" form in which you enter search criteria and the results are displayed in a DataGrid. It works fine - the first time in. If I press my search button again (for the same criteria or other criteria) the correct set of results is returned, but I now have two scrollbars. The...
  7. J

    Minimizing MDI child forms

    Thank you, your suggestion will work just fine.
  8. J

    Minimizing MDI child forms

    I have an MDI menu from which you open numerous forms. The problem is that when you have several forms open, some are hidden behind others and the only way to "find" them (or indeed to know which ones you have opened) is to minimize all the forms in order to uncover the one you're looking for...
Back
Top