-
Posts
4,180 -
Joined
-
Last visited
-
Days Won
114
argumentum last won the day on November 13
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
argumentum's Achievements
-
Not that I know of. PS: You may want to select the folder where the dicom files are at, because you're likely to convert all the files for the study. Otherwise you're gonna make the user select each file and would be a pain for the person selecting a bunch of files with numbers as name and is just non-sense for the user. If you're going to go with each file, pull the header data and give the user: Patient, study date, study Description, series Description and image number, and put it in a listview, so that it makes sense for the user. Cheers PS2: You don't have to quote the prior post. I can read the thread
-
argumentum reacted to a post in a topic: How do I add a white area and a horizontal line to a form?
-
I use Koda just for the declarations. Say I need a GUI and a button. I open Koda and add a button. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 494, 303, 192, 124, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP), BitOR($WS_EX_TOPMOST,$WS_EX_WINDOWEDGE)) $Button1 = GUICtrlCreateButton("Button1", 128, 120, 75, 25) GUICtrlSetResizing(-1, $GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Copy that to the script and do the rest manually. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Local $sTitle = "Form1", $iW = 400, $iH = 200 $Form1 = GUICreate($sTitle, $iW, $iH, -1, -1, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP), BitOR($WS_EX_TOPMOST,$WS_EX_WINDOWEDGE)) Local $Button0, $Button1, $Button2, $Button3 For $n = 0 To 3 Assign("Button" & $n, GUICtrlCreateButton("Button" & $n + 1, 10 + (95 * $n), 10, 75, 25)) GUICtrlSetResizing(-1, $GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) Next GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### <<< no longer importable While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE GUIDelete() Exit EndSwitch WEnd and that will not import. Hence the "be creative"
-
#include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <TabConstants.au3> #include <WindowsConstants.au3> Local $iW = 600, $iH = 200 $Form1 = GUICreate("Form1", $iW, $iH) $Tab1 = GUICtrlCreateTab(-10, -10, $iW + 20, 100) ; over extend GUICtrlCreateTabItem("") $Label1 = GUICtrlCreateLabel("Label1", 10, 150, $iW - 20, 3, -1, $WS_EX_STATICEDGE) ; thicker separator ? GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE GUIDelete() Exit EndSwitch WEnd ...be creative.
-
#include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <TabConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Local $iW = 600, $iH = 200 $Form1 = GUICreate("Form1", $iW, $iH) $Tab1 = GUICtrlCreateTab(0, 0, $iW, 100) GUICtrlCreateTabItem("") $Label1 = GUICtrlCreateLabel("Label1", 10, 150, $iW - 20, 1, -1, $WS_EX_STATICEDGE) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Doesn't look that good in all dark mode: ( but no one has those for now )
-
ioa747 reacted to a post in a topic: ToolTip set style - (Moved)
-
argumentum reacted to a post in a topic: Active_FileDlg
-
ioa747 reacted to a post in a topic: Active_FileDlg
-
.., not sure. Haven't tried. But if you install to the "programs folder" you're supposed to have access to elevated windows. Untested. Just a thought. I may be wrong, very wrong.
-
argumentum reacted to a post in a topic: exit program when i press confirm button
-
ioa747 reacted to a post in a topic: MsgBox_Extn() UDF
-
MsgBox window position not in the middle of the screen
argumentum replied to antai's topic in AutoIt General Help and Support
MsgBox_Extn() UDF for MsgBox() move/position and/or click button delay. -
1stPK reacted to a post in a topic: Check account information and encrypt password before saving
-
..never mind. had to be DllStructCreate("dword;hwnd;dword;dword;int[4];dword")
-
Works just fine in x32, could you fix it to work for x64 ?
-
DllStructEx - Extended DllStruct for AutoIt3
argumentum replied to genius257's topic in AutoIt Example Scripts
I did but no cigar. assertEquals() is not there. My expertise, in my many, many years of running scripts ( I'd say, am a legend ), is to load them and press F5. Other than that I feel quite useless. So I get the zip with the scripts and, ... -
DllStructEx - Extended DllStruct for AutoIt3
argumentum replied to genius257's topic in AutoIt Example Scripts
#include "../au3pm/au3unit/Unit/assert.au3" "D:\Users\Tester\Downloads\au3.DllStructEx-2.0.0\DllStructEx-2.0.0\tests\arrayTest.au3"(6,24) : error: assertEquals(): undefined function. -
Win 11 - My own border color ( Help area )
argumentum replied to argumentum's topic in AutoIt General Help and Support
What's New in Version 0.2411.14.2 Fixed: The shortcuts would recreate on each run instead of once the first run. What's New in Version 0.2411.14.1 Added: Reset coloring to default on exit. Added: DClick the tray icon will optionally pause it. Added: create default links on first run, as an aid to the command line options. -
Loop over 1M numbers fails on 9964th iteration
argumentum replied to Hashim's topic in AutoIt General Help and Support
multithreading has the same semaphore issues to keep in mind as forking. Not a big difference in complexity.