From 75d54ce33cba8c7168f70c62157c62e2dfaa6f0e Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Fri, 15 May 2020 16:08:31 +0200 Subject: [PATCH] fix: make the start form topmost again! yay --- Global_Indexer/frmStart.vb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global_Indexer/frmStart.vb b/Global_Indexer/frmStart.vb index ad8c54f..34d9c15 100644 --- a/Global_Indexer/frmStart.vb +++ b/Global_Indexer/frmStart.vb @@ -359,7 +359,9 @@ Public Class frmStart ClassDatabase.Execute_non_Query("DELETE FROM TBGI_FILES_USER WHERE UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')", True) Unregister_Hotkeys() Load_Hotkeys() + Me.Opacity = 30 + Me.TopMost = True Catch ex As Exception MsgBox("Unexpected Error in Load-Form" & vbNewLine & ex.Message, MsgBoxStyle.Critical)