投稿者 こじろー  (社会人) 投稿日時 2022/2/22 09:10:02
Imports System.Windows.Forms
Imports Microsoft.Win32
Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim f As New Form2
        f.Owner = Me
        f.TopMost = True
        f.Show()
        Dim f2 As New Form3
        f2.Owner = Me
        'f.TopMost = True
        f2.Show()
    End Sub
End Class

Imports System.Windows.Forms
Imports Microsoft.Win32
Public Class Form2
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Form3.BringToFront()
    End Sub
End Class

Imports System.Windows.Forms
Imports Microsoft.Win32
Public Class Form3
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Form2.BringToFront()
    End Sub
End Class
で、だめでした。無理なようです。