Jump to content

argumentum

MVPs
  • Posts

    4,406
  • Joined

  • Last visited

  • Days Won

    128

argumentum last won the day on February 2

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

11,845 profile views

argumentum's Achievements

  1. ..because, it interrupts the main code to run the AdLib. And you don't give it a chance to do anything else. Ain't that the truth. I don't know what the bottom line is. Looking at parallel processing in the WiKi would be the thing to do if the other function is so ..., time consuming ?
  2. Global $bFill_ARP_Table_FirstRun = True; <==== Global $bGet_ARP_Table_FirstRun = True ; <==== Global $sDatabase_Path = @ScriptDir & "\NetworkMonitor.ini" Global $sIP = _GetGatewayIP() Global $aIP = StringSplit($sIP, ".") Global $aARP_Table = _Get_ARP_Table()
  3. Yes. Win11. #include <GUIConstantsEx.au3> #include <GuiImageList.au3> #include <GuiListView.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $hGui = GUICreate("ListView Get/Set Group Info (v" & @AutoItVersion & ")", 400, 300) WinSetOnTop($hGui, "", 1) Local $idListview = GUICtrlCreateListView("", 2, 2, 394, 268) GUISetState(@SW_SHOW) ; Set ANSI format ;~ _GUICtrlListView_SetUnicodeFormat($idListview, False) ; Load images Local $hImage = _GUIImageList_Create() _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($idListview, 0xFF0000, 16, 16)) _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($idListview, 0x00FF00, 16, 16)) _GUIImageList_Add($hImage, _GUICtrlListView_CreateSolidBitMap($idListview, 0x0000FF, 16, 16)) _GUICtrlListView_SetImageList($idListview, $hImage, 1) ; Add columns _GUICtrlListView_AddColumn($idListview, "Column 0", 100) _GUICtrlListView_AddColumn($idListview, "Column 1", 100) _GUICtrlListView_AddColumn($idListview, "Column 2", 100) ; Add items _GUICtrlListView_AddItem($idListview, "Row 0: Col 0", 0) _GUICtrlListView_AddSubItem($idListview, 0, "Row 0: Col 1", 1) _GUICtrlListView_AddSubItem($idListview, 0, "Row 0: Col 2", 2) _GUICtrlListView_AddItem($idListview, "Row 1: Col 0", 1) _GUICtrlListView_AddSubItem($idListview, 1, "Row 1: Col 1", 1) _GUICtrlListView_AddItem($idListview, "Row 2: Col 0", 2) ; Build groups _GUICtrlListView_EnableGroupView($idListview) _GUICtrlListView_InsertGroup($idListview, -1, 1, "Group 1", 1) _GUICtrlListView_InsertGroup($idListview, -1, 2, "Group 2") _GUICtrlListView_SetItemGroupID($idListview, 0, 1) _GUICtrlListView_SetItemGroupID($idListview, 1, 2) _GUICtrlListView_SetItemGroupID($idListview, 2, 2) ; Change group information Local $aInfo = _GUICtrlListView_GetGroupInfo($idListview, 1) ;~ MsgBox($MB_SYSTEMMODAL, "Information", "Group 1 Text: " & $aInfo[0]) ;~ _GUICtrlListView_SetGroupInfo($idListview, 1, "New Group 1") ;~ _GUICtrlListView_SetGroupInfo($idListview, 1, "New Group 1", 0) ; left ;~ _GUICtrlListView_SetGroupInfo($idListview, 1, "New Group 1", 1) ; center _GUICtrlListView_SetGroupInfo($idListview, 1, "New Group 1", 2) ; right ; Loop until the user exits. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example
  4. ..it's got missing includes "D:\Users\Tester\Downloads\au3.212707-win11-classic-start\Win11_Classic_Start.au3"(15,10) : error: can't open include file <Restart.au3>. #Include <Restart.au3> ~~~~~~~~~^ "D:\Users\Tester\Downloads\au3.212707-win11-classic-start\Win11_Classic_Start.au3"(16,10) : error: can't open include file <ArrayMutliColSort.au3>. #Include <ArrayMutliColSort.au3> ~~~~~~~~~^ "D:\Users\Tester\Downloads\au3.212707-win11-classic-start\Win11_Classic_Start.au3"(59,43) : error: _ArrayMultiColSort(): undefined function. _ArrayMultiColSort($MenuArray, $aSortData) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ "D:\Users\Tester\Downloads\au3.212707-win11-classic-start\Win11_Classic_Start.au3"(175,21) : error: _ScriptRestart(): undefined function. _ScriptRestart() ~~~~~~~~~~~~~~~~~~~~^ D:\Users\Tester\Downloads\au3.212707-win11-classic-start\Win11_Classic_Start.au3 - 4 error(s), 0 warning(s) !>23:20:20 AU3Check ended. Press F4 to jump to next error. rc:2 so either add #Include <Restart.au3> ; http://get it from here link Or, zip all the au3 files and icon ( that to me is a better idea ). Thanks for sharing @TomTheGeek
  5. "The DLL is written using Visual Studio 6: DebugCaptureDLLSource.zip" There is no x64 available. You're gonna have to compile it as x64 ( and share it here for us to have )
  6. ...gotta love google search
  7. ok, is a programable keyboard, like G1, G2, etc. keys. And I bet that the debug is done by the keyboard's software installed on your PC. Looks like a fun project. Do they have an SDK ?, maybe you can go that route. ..I'll have to call it quits on this thread. I have homework and can not play But do post the code when you find a way to it
  8. https://learn.microsoft.com/en-us/previous-versions/windows/desktop/dnacc/guidelines-for-keyboard-user-interface-design claims the same: No Fn keycode. What is your environment ? ( CPU, keyboard, motherboard, the color of the wall and floor ) Because if you say you can do it via ... something, .. am curious
  9. Take a look at this: Give it a try. Let me know if that did it. Edit: I tried on my keyboard and no dice. The Fn key is a hardware thing that is handled by the keyboard to generate a keycode but by itself may not report anything depending on the hardware. If I was the hardware/firmware coder, I would not return anything unless an expected combination was done, but even on "Fn + Esc" to lock the Fn key, should not return anything.
  10. All of them ? Some of them ? One in particular ? The kernel is the OS, the rest is 3rd party. Explorer.exe is 3rd party and you can replace it. Look into taskScheduler and create a task, ..on trigger: "When a specific event is logged", then choose "Log", "Source" and "Event ID". Make that call your script. Unless you present better information, this is my best advise to not peek constantly.
  11. Ain't much about your emotional stand that I can do for you, but the answer I gave you is sound.
  12. Add it to TaskSched. and to run with admin rights. on login. ( no coding needed ) This is how I did it ( here ) but it'll take brainstorming to adapt it to your code. Or, there are UDFs for that in this forum too.
  13. Am using RDP from 10(2004) to 11(24H2) without a problem. What is the issue ?
  14. https://learn.microsoft.com/en-us/windows/win32/api/winsatcominterfacei/ne-winsatcominterfacei-winsat_assessment_state https://www.windowsdigitals.com/winsat-windows-experience-index-score-windows-11/ Microsoft Windows [Version 10.0.26100.2033] (c) Microsoft Corporation. All rights reserved. C:\Windows\System32>winsat formal Windows System Assessment Tool Error: Unable to run inside of a Virtual Machine. Please try again running directly on the native hardware.
  15. Am using both. Why, how, ..even added a "genius257.autoit3-debug". What am I doing ?, ..just F5 ( to run ) and clicking around. I tend to learn that way ..20 minutes later.. ok, I see that Damian has ">AutoIt: command" and if I remove it that's not there. I'll play around a bit more
×
×
  • Create New...