Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/27/2025 in all areas

  1. I have been creating few controls with round corners for awhile for my own needs and I felt it was time to make an UDF and share it with the community. The idea behind this UDF is to use essentially simple basic AutoIt GUI functions. I did not want to embark in GDI+ to create the controls. I wanted to be easy to use with enough features that it would answer most requirements. The functions contained in the UDF : _RGUI_RoundLabel _RGUI_RoundButton _RGUI_RoundInput _RGUI_RoundEdit _RGUI_RoundGroup _RGUI_RoundScrollBar _RGUI_ScrollBarSet _RGUI_ScrollBarDestroy _RGUI_RoundRect _RGUI_DrawLine _RGUI_ButtonPress _RGUI_ButtonReset Version 2025-03-28 * Added support to auto-size label and button controls (by passing -1 for width and/or height) * Removed the requirement to pass handle of the GUI to _RGUI_RoundGroup * Added 3rd example on how to use scrollbar with RichEdit Version 2025-03-21 * Added support of round corner scrollbar * Added a 2nd example on how to use scrollbar with ListBox Version 2025-03-15 * Basic framework for the UDF Here an example of what could be done with the UDF : If you feel there should be new controls, I will consider adding them to the UDF. RoundGUI.zip
    1 point
  2. Your UDF is quite literally perfect for the curved design here.
    1 point
  3. ok, thanks for letting me know
    1 point
  4. If it's running on Windows 10 or 11, you can add a win32-darkmode scrollbar. It isn't quite the same aesthetic as your custom-made scrollbar, but it likely wont have all of the other issues that you are experiencing with your custom scrollbar that you mentioned. I added one to your MiniMark.au3 and it works really well. I've added a video within a spoiler so that you can see.
    1 point
  5. You could have tried faq31 with simplespy or inspect.exe to see if more is recognized.
    1 point
  6. I have a little script I am writing that I would to get the dates for the start of Daylight Savings Time and the start of Standard Time for my system. I will be turning those into a Windows timestamp that is passed as a number to another program. Rainmeter, which uses Windows timestamps in its time functionality. (seconds since Jan 1 1601) I understand that all I should need for it is available using _Date_Time_GetTimeZoneInformation, but I'm having a problem with that function. It seems to be returning the wrong value for the date of the start of DST for my system. If I run this code: #include <GUIConstantsEx.au3> #include <Date.au3> #include <WindowsConstants.au3> #include <MsgBoxConstants.au3> ; Under Vista the Windows API "SetTimeZoneInformation" may be rejected due to system security Global $iMemo Example() Func Example() Local $aOld, $aNew ; Create GUI GUICreate("Time", 400, 300) $iMemo = GUICtrlCreateEdit("", 2, 2, 396, 296, $WS_VSCROLL) GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New") GUISetState(@SW_SHOW) ; Show current time zone information $aOld = _Date_Time_GetTimeZoneInformation() ShowTimeZoneInformation($aOld, "Current") ; Loop until the user exits. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE EndFunc ;==>Example ; Write a line to the memo control Func MemoWrite($sMessage) GUICtrlSetData($iMemo, $sMessage & @CRLF, 1) EndFunc ;==>MemoWrite ; Show time zone information Func ShowTimeZoneInformation(ByRef $aInfo, $comment) MemoWrite("******************* " & $comment & " *******************") MemoWrite("Result ............: " & $aInfo[0]) MemoWrite("Current bias ......: " & $aInfo[1]) MemoWrite("Standard name .....: " & $aInfo[2]) MemoWrite("Standard date/time : " & _Date_Time_SystemTimeToDateTimeStr($aInfo[3])) MemoWrite("Standard bias......: " & $aInfo[4]) MemoWrite("Daylight name .....: " & $aInfo[5]) MemoWrite("Daylight date/time : " & _Date_Time_SystemTimeToDateTimeStr($aInfo[6])) MemoWrite("Daylight bias......: " & $aInfo[7]) EndFunc ;==>ShowTimeZoneInformation Which is just the example from the help file, but not trying to "set" anything, just displaying the current values, I get: Two issues with this: 1) Without the "year", it is a bit hard to convert this to a Windows timestamp, I'm not even sure how I would go about that. I'm not looking to end up with a "structure", or a formatted date/time string, but a Windows timestamp number like 13067520236. 2) The value for Daylight date/time is just incorrect. In Washington DC, USA (my location) the change to DST will be on 03/08/2015 02:00:00. I suspect it is somehow related to the way the $tagSYSTEMTIME structure works, with the date for "day" seeming to consist of the "number of the week" in the month, and the "number of the day" in the week. The 8th of March 2015 is in fact the "zeroth" day of the week (Sunday) of the "2nd" week of the month, which is where I assume the bogus "day 2" is coming from. That's fine, however, I would assume that _Date_Time_SystemTimeToDateTimeStr would be able to handle that. Anyone run into this or have any idea why the example from the AutoIt help wouldn't work as expected? Windows 8.1 64bit AutoIt v3.3.12.0
    1 point
×
×
  • Create New...