Bom dia,
Bom acessando alguns fóruns consegui o Conjunto de Cod. API para desabilitar o "X" de fechamento da Tela o que ajuda muito no NP.
Bom acessando alguns fóruns consegui o Conjunto de Cod. API para desabilitar o "X" de fechamento da Tela o que ajuda muito no NP.
- Código:
#----------------------------------------------------------------
# Creditos ao Mithran do RPGVXACE.NET
FindWindow = Win32API.new('user32', 'FindWindow', 'pp', 'l')
SetClassLong = Win32API.new('user32', 'SetClassLong', 'lil', 'i')
GetPrivateString = Win32API.new("kernel32", "GetPrivateProfileStringA", "pppplp", "l")
buf = " " * 256
GetPrivateString.call('Game','Title','',buf,256,".\\Game.ini")
buf.strip!
HWND = FindWindow.call('RGSS Player', buf)
SetClassLong.call(HWND, -26, 0x0200) #no exit button
#----------------------------------------------------------------