Jump to content

argumentum

MVPs
  • Posts

    4,180
  • Joined

  • Last visited

  • Days Won

    114

argumentum last won the day on November 13

argumentum had the most liked content!

7 Followers

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,408 profile views

argumentum's Achievements

  1. 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
  2. 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"
  3. #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.
  4. #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 )
  5. .., 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.
  6. MsgBox_Extn() UDF for MsgBox() move/position and/or click button delay.
  7. Are you going to set up a web site or in a local network ? That looks confused ? What's the confusion about ?
  8. I ran the code and it looks to have that. Now, the encryption. What are you looking to hide that from ? How secure you'd like that to be ? And do please translate the code
  9. ..never mind. had to be DllStructCreate("dword;hwnd;dword;dword;int[4];dword")
  10. Works just fine in x32, could you fix it to work for x64 ?
  11. 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, ...
  12. #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.
  13. 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.
  14. multithreading has the same semaphore issues to keep in mind as forking. Not a big difference in complexity.
×
×
  • Create New...