-
Posts
4,584 -
Joined
-
Last visited
-
Days Won
135
argumentum last won the day on April 22
argumentum had the most liked content!
About argumentum

Profile Information
-
Member Title
✨Universalist ✨
-
Location
I'm in your browser now =)
-
WWW
https://www.youtube.com/watch?v=SjwX-zMRxO0&t=5s
-
Interests
Relax
Recent Profile Visitors
argumentum's Achievements
-
argumentum reacted to a post in a topic: Process Suspend
-
argumentum reacted to a post in a topic: _StringToTable
-
ioa747 reacted to a post in a topic: _StringToTable
-
ShellExecute("notepad.exe") ; works better Nice, nice, nice. Really liked it !.
-
argumentum reacted to a post in a topic: _StringToTable
-
ioa747 reacted to a post in a topic: gather NVMe health ( with smartctl.exe from smartmontools )
-
..had a PC that lost 1% NVMe of heath each day. Why, how ?, no clue. Rebooted the PC and it stopped chewing up the drive. And found out by chance and not because something ( an alarm or anything ) alerted me. Where can I get something that I can use ? Ended up installing smartctl from smartmontools.org. Then is a matter of putting that I need in an array and, have fun with it ? ( code something that will so something ? ..., haven't got there yet ) It looks more like a snippet than an example but this way will be easier to find the post.
-
argumentum reacted to a post in a topic: Support in answering WebDriver-related questions (Chrome DevTools, XPath, Browser debugging)
-
argumentum reacted to a post in a topic: WinRT Object Libraries
-
argumentum reacted to a post in a topic: Get System Try Icon for reading MS Teams status
-
WildByDesign reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
DarkMode UDF for AutoIt's Win32GUIs
argumentum replied to NoNameCode's topic in AutoIt Technical Discussion
I am a special type of coder. I'd call me a channeler or medium that knows what is needed and then, just like an angel, forgot, as it's all an eternal now. ( meaning that I google like a maniac, copy and paste until am done, and go to sleep, not to remember what I did because I never knew how anything works ) But maybe those that know GDI can cook an image out of code ( like in the SizeGrip code ) and that'd be nice to have. Or find a way to just change the color of the checkbox text, because after all, a checkbox is a button of sorts ( low level wise ). -
WildByDesign reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
argumentum reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
DarkMode UDF for AutoIt's Win32GUIs
argumentum replied to NoNameCode's topic in AutoIt Technical Discussion
#AutoIt3Wrapper_Res_Icon_Add=unchecked.ico, 201 #AutoIt3Wrapper_Res_Icon_Add=checked.ico, 202 Global $g_Compiled = Int(@AutoItExe = @ScriptFullPath) ; better than @Compiled ConsoleWrite("- $g_Compiled = " & $g_Compiled & @CRLF) ; this part must be applied AFTER dark mode has already been set If $isDarkMode = True Then $hImageList = _GUICtrlListView_GetImageList($hListView, 2) _GUIImageList_Remove($hImageList) ;~ If @Compiled = 0 Then ; Returns 1 if script is a compiled executable or an .a3x file; returns 0 if an .au3 file. If $g_Compiled Then _GUIImageList_AddIcon($hImageList, @ScriptFullPath, 201) ; because it can become a game of chance as you add/remove code _GUIImageList_AddIcon($hImageList, @ScriptFullPath, 202) ; so is better to declare it. Else _GUIImageList_AddIcon($hImageList, "unchecked.ico") _GUIImageList_AddIcon($hImageList, "checked.ico") EndIf EndIf I strongly believe that declaring the resource number is better. -
argumentum reacted to a post in a topic: WebDriver UDF - React-select dropdown list
-
MattyD reacted to a post in a topic: MediaPlayerElement - WinRT Xaml Island
-
MediaPlayerElement - WinRT Xaml Island
argumentum replied to MattyD's topic in AutoIt Example Scripts
even awesome-er would be to just declare the exe to use: #AutoIt3Wrapper_AutoIt3=D:\Utilities\AutoIt3\autoit3_x64-Mod.exe ; replace with your path and that is something that didn't come to mind at the time so, I'll remove the patch as is obviously not needed. -
argumentum reacted to a post in a topic: WinRT Object Libraries
-
argumentum reacted to a post in a topic: MediaPlayerElement - WinRT Xaml Island
-
MattyD reacted to a post in a topic: MediaPlayerElement - WinRT Xaml Island
-
MediaPlayerElement - WinRT Xaml Island
argumentum replied to MattyD's topic in AutoIt Example Scripts
...a bunch of nonsense but kept for hysterical historical purposes ... so, yes. Use the solution below -
MattyD reacted to a post in a topic: MediaPlayerElement - WinRT Xaml Island
-
MediaPlayerElement - WinRT Xaml Island
argumentum replied to MattyD's topic in AutoIt Example Scripts
In my version of it does not fall under that line. ... ... If StringInStr($INP_Res_Compatibility, "Win10") Then ; https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests#maxversiontested FileWriteLine($hTempFile2, ' <!-- Windows 10, version 1903 -->') FileWriteLine($hTempFile2, ' <maxversiontested Id="10.0.18362.1" />') FileWriteLine($hTempFile2, ' <!--The ID below indicates application support for Windows Vista -->') ... ... This will be easier to find as beta versions come out. Thank you for the food code -
ADO.udf / EZmySql.au3 / mysql.au3 / SQLite.au3
argumentum replied to Resiak1811's topic in AutoIt General Help and Support
I don't have to understand other than how often requests get and if a single threaded program ( AutoIt ) can handle it. The rest is up to you. What do you wanna have. The link I gave you is what I would use. -
ADO.udf / EZmySql.au3 / mysql.au3 / SQLite.au3
argumentum replied to Resiak1811's topic in AutoIt General Help and Support
...make a script that will listen on TCP, get the SQL and return the answer ? Or use switch to MariaDB or the like ? How many requests a second do you make ? Code it as an API web sites make and return a JSON ? For the SSL part use Apache ? -
ioa747 reacted to a post in a topic: GUISetStyle(-1, $WS_POPUPWINDOW)
-
GUISetStyle(-1, $WS_POPUPWINDOW)
argumentum replied to ioa747's topic in AutoIt GUI Help and Support
According to Koda it should be GUISetStyle(BitOR($WS_SYSMENU,$WS_POPUP)) -
GUISetStyle(-1, $WS_POPUPWINDOW)
argumentum replied to ioa747's topic in AutoIt GUI Help and Support
Func _GUI2() Local $hGUI = GUICreate("Example Gui 2", 390, 320, @DesktopWidth * 0.3, -1) GUISetStyle($WS_POPUPWINDOW) ; <====== ..you scared me there for a minute 😅 -
GUISetStyle(-1, $WS_POPUPWINDOW)
argumentum replied to ioa747's topic in AutoIt GUI Help and Support
..crazy, and I can't imagine the reason -
wow, ..I meant the basic offending process, not the whole project. I'll look at it tomorrow. Got to AFK.
-
..am at a loss. Without a sample code to compile on my side to run and investigate, ..am out of ideas. And even if you shared the code, I'd have a small percentage of been able to find it with the described flaws given that is sporadic. Is up to you. As is, I don't find a way to help more.
-
..no idea. Maybe there is a path that is slow to return ( mapped network, drive in sleep mode ) and that does it ?