I used the attached lisp function and turned all regular vports from being invisible to visible and that worked
; vpi function sets visiblity of all standard vports
; Note: does not impact objects selected to become a vport or vports drawn as polygon
; Argument:
; flg = 1 visible , 0 = invisible
; Example:
; (vpi 0) ; sets all standard vports invisible
; (vpi 1) ; sets all standard vports visible
(defun vpi (flg / n ss)
(vl-load-com)
(if (setq ss(ssget "_X" '((0 . "VIEWPORT"))))
(progn
(setq n 0)
(repeat (sslength ss)
(vla-put-visible (vlax-ename->vla-object (ssname ss n)) flg)
(setq n (1+ n))
)
(if (zerop flg)
(princ"\nAll Standard Vports Set Invisible.")
(princ"\nAll Standard Vports Set Visible.")
)
)
(princ"\nNo Vports Found.")
)
(princ)
)
(princ "\nVPI function Loaded...does NOT impact objects selected to become a Vport or Vports drawn as Polygon.\n(vpi 0) = Sets All Standard Vports Invisible\n(vpi 1) = Sets All Standard Vports Visible")(princ)
(load"vpi")
(vpi 1)
But I cannot tell you what causes vports to suddenly become invisible in vanilla AutoCAD.
