Jump to content

ManneMoses

Active Members
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

181 profile views

ManneMoses's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. 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
  2. Thank you man, this is awesome! Exactly what i wanted, thanks!!
  3. But the thing is, that you cannot access the ctrl alt del screen, and that is the only sense of my script. Not more
  4. 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
  5. 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
  6. 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
  7. 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
  8. Thank you Uez, it works! But is there no easier way to do this?
  9. I mean the height, sorry i forgot to say
  10. 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
  11. Thanks Melba23, it works, problem solved. And sorry for my quote, i do not ask questions in the forum so often
  12. ​Thank you for your quick reply, it works perfectly. But is there a way to do it without changing the buttons name?
  13. 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
  14. I just got it, but thanks anyway! I tried it again and suddenly it worked. Wanna see the script?
  15. 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
×
×
  • Create New...