Hi,

To load a form, I normally use:

VB Code:
  1. Load formname
  2. formname.Visible = True

However, in order to set a form as modal, it seems I have to use:

VB Code:
  1. formname.Show vbModal

I'm concerned that using a function (show) may be detrimental to the performance of my software. (The software needs to be as quick and as clean as possible). Which form loading method is better? AND (if the first way), how can I create a modal (on top dominant) form?

Many thanks,

Jord