Jump to content

argumentum

MVPs
  • 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

12,192 profile views

argumentum's Achievements

  1. ShellExecute("notepad.exe") ; works better Nice, nice, nice. Really liked it !.
  2. ..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.
  3. 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 ).
  4. #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.
  5. 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.
  6. ...a bunch of nonsense but kept for hysterical historical purposes ... so, yes. Use the solution below
  7. 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
  8. 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.
  9. ...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 ?
  10. According to Koda it should be GUISetStyle(BitOR($WS_SYSMENU,$WS_POPUP))
  11. Func _GUI2() Local $hGUI = GUICreate("Example Gui 2", 390, 320, @DesktopWidth * 0.3, -1) GUISetStyle($WS_POPUPWINDOW) ; <====== ..you scared me there for a minute 😅
  12. ..crazy, and I can't imagine the reason
  13. wow, ..I meant the basic offending process, not the whole project. I'll look at it tomorrow. Got to AFK.
  14. ..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.
  15. ..no idea. Maybe there is a path that is slow to return ( mapped network, drive in sleep mode ) and that does it ?
×
×
  • Create New...