im making a generic textpad and have a find form.. how would i make it act just like the one in notepad etc. ie it stays just on top of the main form but not other windows
Printable View
im making a generic textpad and have a find form.. how would i make it act just like the one in notepad etc. ie it stays just on top of the main form but not other windows
Use
VB Code:
Form2.Show vbModeless, Me
Or replace Me with the main form in your project if this isnt called from it.
thanks