
ManneMoses
Active Members-
Posts
20 -
Joined
-
Last visited
Recent Profile Visitors
181 profile views
ManneMoses's Achievements

Seeker (1/7)
0
Reputation
-
Change The Size Of The Gui Title Bar?
ManneMoses replied to ManneMoses's topic in AutoIt GUI Help and Support
I modified the script from jguinch a little a this came out ( Not useful, but in my opinion this looks awesome ) #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <WinAPIGdi.au3> #include <SendMessage.au3> Local $GUI = GUICreate('ok', 700, 700, -1, -1, BitXOR($WS_SIZEBOX, $WS_POPUP, $WS_MINIMIZEBOX), -1, WinGetHandle(AutoItWinGetTitle())) Global Const $SC_DRAGMOVE = 0xF012 GUICtrlSetState(-1, $GUI_DISABLE) WinSetOnTop( "ok", "", 1 ) GUISetBkColor(0) _WinAPI_DwmExtendFrameIntoClientArea($gui, _WinAPI_CreateMargins(0, 0, 2000, 2)) GUISetState(@SW_SHOW, $GUI) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop Case $GUI_EVENT_PRIMARYDOWN _SendMessage($GUI, $WM_SYSCOMMAND, $SC_DRAGMOVE, 0) EndSwitch WEnd -
Change The Size Of The Gui Title Bar?
ManneMoses replied to ManneMoses's topic in AutoIt GUI Help and Support
Thank you man, this is awesome! Exactly what i wanted, thanks!! -
SOLVED! How to disable Ctrl Alt Del
ManneMoses replied to ManneMoses's topic in AutoIt General Help and Support
But the thing is, that you cannot access the ctrl alt del screen, and that is the only sense of my script. Not more -
SOLVED! How to disable Ctrl Alt Del
ManneMoses replied to ManneMoses's topic in AutoIt General Help and Support
I only posted this script because there were so many questions about that topic. Search for "disable ctrl alt del" and you'll find many questions. That is the answer to all of it -
SOLVED! How to disable Ctrl Alt Del
ManneMoses replied to ManneMoses's topic in AutoIt General Help and Support
Sorry if i didn't understand you, that is because i am german, so don't wonder about my bad english. I know the warning problem, this is only if you do not have any other options. It is weird that the message only pops up on some computers, e.g. not on mine -
SOLVED! How to disable Ctrl Alt Del
ManneMoses replied to ManneMoses's topic in AutoIt General Help and Support
First of all i just answered many questions that were on the forum, and the second thing is that disabling ctrl alt del can also be useful. Why should i get a warning? I have never said that i am going to use that for a virus -
Hey there, Probably you know about the many questions on this forum, how to disable Ctrl-Alt-Del. I searched the whole forum bot there was not only one answer that worked. But now i found a way on my own hot to prevent that. And btw I have to say that this if f*cking easy, so shame on you You can try it, it works sure on windows 7 and vista. I also included a hotkey function to exit, but it takes up to 10 seconds until you can access the ctrl alt del screen again. Please tell me if you found out a better way and tell me what is your meaning about my script. Thank you -snip- Edit: This is the hard way, and i just wanted to show how it could be done. I am confused, no one before me mentioned this script
-
Change The Size Of The Gui Title Bar?
ManneMoses replied to ManneMoses's topic in AutoIt GUI Help and Support
Thank you Uez, it works! But is there no easier way to do this? -
Change The Size Of The Gui Title Bar?
ManneMoses replied to ManneMoses's topic in AutoIt GUI Help and Support
I mean the height, sorry i forgot to say -
Hello Guys, I want to create a simple gui, but with a bigger title bar ( e.g. 2x bigger) Is that possible in any way? I searched the forum but I found nothing. Hope you understand what I mean. Nothing special with the gui, only the size of the title bar should change. Any ideas? Thanks in Advance
-
Thanks Melba23, it works, problem solved. And sorry for my quote, i do not ask questions in the forum so often
-
Thank you for your quick reply, it works perfectly. But is there a way to do it without changing the buttons name?
-
Hey there, e.g. I have a gui with one button. If i click the button it should turn transparency on and if i click it again it should turn transaprenc off, but how do i do that? or another example: If i click the button first time it should msgbox: "1" and for the second time it should say: "2", and if i click a third time it should say again 1. I do not have any answer, so can you please make an example script? Thanks in advance, and sorry for my bad english, i am german
-
I just got it, but thanks anyway! I tried it again and suddenly it worked. Wanna see the script?
-
Hello, First of all, please don't mind my english, i am from Germany. And i have a problem in AutoIt: I want to make a GUI with a button, and when you click the button it should say: "You clicked ??? times" So, if i click the button, it should count +1. I made so many tries, but i cannot get it out. Need your help guys. Thanks in Advance