Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/23/2020 in all areas

  1. yea if you want i can share but i think you are much better like programmer than me
    1 point
  2. You can not. Just as you can not know, if the speakers are turned on or not. That is a hardware problem without software solution Maybe one day monitor makers will grant us the possibility.
    1 point
  3. ..joke aside, ...if you wrote your code more ala UDF, it'll be easier to maintain, and eventually share ..not that I do eBay, but I think is a good idea to code it as such.
    1 point
  4. lol, now that is a funny sight 😜
    1 point
  5. @faustf you have been around long enough to know "doesn't work" doesn't help anyone help you. Think about the information you are putting into a post, and whether you would have enough to go on. WHAT errors are you seeing, or AT WHAT POINT is it failing, WHAT has changed on your system, WHEN did it last work as expected - these are all the most basic of questions you should include in a post for help.
    1 point
  6. Thanks so much guys, this is what I am using now: #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> #include <WindowsConstants.au3> #include <GDIPlus.au3> #include <WinAPIGdi.au3> Local $idMsg _GDIPlus_Startup() CreateChild() Do; Loop until the user exits. $idMsg = GUIGetMsg(1) If $idMsg[0] > 0 Then MsgBox($MB_SYSTEMMODAL, "clicked", $idMsg[2], 1) Until $idMsg[0] = $GUI_EVENT_CLOSE Func CreateChild() Local $hGUI = GUICreate("Test", 1024, 768) $bg = GUICtrlCreatePic("C:\Program Files (x86)\AutoIt3\Examples\GUI\msoobe.jpg", 0, 0, 1024, 768) GUICtrlSetState($bg,$GUI_DISABLE) GUISetState(@SW_SHOW) ;the actual buttons created as transparent labels Local $b001 = GUICtrlCreateLabel("", 20, 50, 7, 7, $WS_EX_TRANSPARENT) GUICtrlSetBkColor($b001, $GUI_BKCOLOR_TRANSPARENT) Local $b002 = GUICtrlCreateLabel("", 50, 50, 7, 7, $WS_EX_TRANSPARENT) GUICtrlSetBkColor($b002, $GUI_BKCOLOR_TRANSPARENT) Local $b003 = GUICtrlCreateLabel("", 80, 50, 7, 7, $WS_EX_TRANSPARENT) GUICtrlSetBkColor($b003, $GUI_BKCOLOR_TRANSPARENT) ;draw button pins directly onto backgroup picture at button locations Local $hBrushR = _GDIPlus_BrushCreateSolid(0xFFff0000) ;color format AARRGGBB (hex) Local $hBrushG = _GDIPlus_BrushCreateSolid(0xFF00ff00) ;color format AARRGGBB (hex) Local $hBrushB = _GDIPlus_BrushCreateSolid(0xFF0000ff) ;color format AARRGGBB (hex) Local $hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI) _GDIPlus_GraphicsFillEllipse($hGraphic, 20, 50, 7, 7, $hBrushR) _GDIPlus_GraphicsFillEllipse($hGraphic, 50, 50, 7, 7, $hBrushG) _GDIPlus_GraphicsFillEllipse($hGraphic, 80, 50, 7, 7, $hBrushB) EndFunc
    1 point
  7. argumentum

    Unblocker Script

    Disable downloaded files from being blocked in Windows 10 Open Group Policy Editor by typing gpedit.msc into the Start Menu. Go to User Configuration -> Administrative Templates -> Windows Components -> Attachment Manager. Double click the policy setting "Do not preserve zone information in file attachments". Enable it and click OK.
    1 point
  8. Hi everyone, Some good news for you among all the gloom of these virus-ridden times: Nine, Subz and Danyfirex have accepted the invitation to become MVPs. Please join me in congratulating them on their new status in our community. Keep safe out there, M23
    1 point
  9. create a hotkey for disable all hotkey
    0 points
×
×
  • Create New...