Jump to content

Parsix

Active Members
  • Posts

    114
  • Joined

  • Last visited

Recent Profile Visitors

1,106 profile views

Parsix's Achievements

  1. When Superman comes in. 🤩đŸĨ° Hello and welcome UEZ, you unlocked the problem as always.
  2. Programming is a problem-solving challenge. Exactly as in the example, I need to display an image under the desktop icons, unfortunately the icons are placed under the application and cause user objections. This image could be a local calendar display. The idea of producing a unified background as suggested by "KaFu" was my first alternative solution, but I am looking for a solution to the problem as much as possible. For example, until some time ago, the code sample that "Nine" shared with the title "Create an Application Bar recognized by the system" was perhaps impossible. Nine, that code sample was very usefull, thank you very much for that code. đŸĨ° I did not even see a standard function or solution for sending the application to the lowest display layer, such as the functions that keep the application in the highest display layer. I'm just wondering why UEZ hasn't commented yet ?! He usually comes in with something magical like Superman.🤩😁
  3. No solution suggestions?
  4. Thanks you The problem still persists. â˜šī¸ Tested on Windows 10 Enterprise 22H2 19045.3324 and newer
  5. #include-once #include <GDIPlus.au3> #include <Array.au3> #include <GUIConstantsEx.au3> #include <ButtonConstants.au3> #include <StructureConstants.au3> #include <WindowsConstants.au3> #include <MsgBoxConstants.au3> #include <ColorConstants.au3> #include <StaticConstants.au3> #include <WinAPIConstants.au3> #include <WinAPIGdi.au3> #include <WinAPIProc.au3> #include <WinAPISys.au3> #include <WinAPISysWin.au3> #include <WinApi.au3> Main() Func Main() Local $this = GUICreate("", 400, 400, @DesktopWidth-(400)-20, 100, $WS_POPUP , $WS_EX_NOACTIVATE + $WS_EX_TRANSPARENT) Local $iPic = GUICtrlCreatePic("C:\Program Files (x86)\AutoIt3\Examples\GUI\msoobe.jpg",0, 0, 400, 400) ;GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) WinSetTrans($this,"", 200) _GuiRoundCorners($this, 16, 16) _WinAPI_SetWindowLong($this, $GWL_HWNDPARENT, ControlGetHandle("[CLASS:Progman]", "", "SysListView321")) ;hide in taskbar GUISetState(@SW_SHOWNOACTIVATE, $this) ;_WinAPI_SetWindowPos($this, $HWND_BOTTOM, Default, Default, Default, Default, BitOR($SWP_NOACTIVATE, $SWP_SHOWWINDOW, $SWP_NOMOVE, $SWP_NOSIZE )) ;not worked While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd GUIDelete($this) EndFunc ;Main Func _GuiRoundCorners($h_win, $ixR, $iyR) Local $aPos = WinGetPos($h_win) If @error Then Return 0 Local $iW = $aPos[2] Local $iH = $aPos[3] Local $hRgn = _WinAPI_CreateRoundRectRgn(0, 0, $iW, $iH, $ixR, $iyR) _WinAPI_SetWindowRgn($h_win, $hRgn) EndFunc ;==>_GuiRoundCorners how to move window behind desktop icons ? - Desktop icons are on the GUI
  6. thanks When the router does not have access to the Internet but the internal network is established on the router, the script almost locks up for a long time. Infinite loop with this While 1 ; ... $i_NTP_Server_IDX += 1 If $i_NTP_Server_IDX = $i_NTP_Server_Count Then $i_NTP_Server_IDX = 0 ; <== Infinite Loop if Internet not accesible in Router WEnd
  7. Is the OrdoRC6 folder needed or is only the ocx enough to be compiled with the program? edit: some of files are needed, OrdoRC6 folder do not be renamed 😔 How to prevent show this message without create OrdoWebView folder in ProgramData ?
  8. Very Nice, Thank you 😍
  9. It is the intellectual preoccupation of every programmer
  10. How does it feel when you have written more than 39,000 program codes and because of an unwanted change, your compiled program is decompiled by a thief? Thanks to my dear friend Nine for sharing his nice code I compile my program with the following parameters The presence of your line code made me worry that a copy of the program source should be saved in the compiled version
  11. #AutoIt3Wrapper_Res_SaveSource=y explaned in help file.
  12.  #AutoIt3Wrapper_Res_SaveSource=y  can be do not use this line ? put a source of script in compiled exe is not good idea
  13. thank you, but auto scale is better from external resize and import to code i use from bin file in other sizes, your solution need import multi file to app _GUICtrlCreateAnimGIF is cropping gif files
  14. can be it scaled and fit to control ?
×
×
  • Create New...