Jump to content

ozzy1615

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by ozzy1615

  1. Hi, This way get the correct value, but do you know how can i get this value in Autoit Script?
  2. Thanks for the reply man, Well, this script doesnt show the result that i want: Im looking for a script that show me the value in hours or hexadecimal.
  3. Guys, I know this topic is old but, is there any way to get the Power-On Hours (POH) exatly like when i use the CrystalDiskInfo? (hours or hexadecimal) See the examples: Thats the value that i get when i use the CrystalDiskInfo: And here when i use a script SMART
  4. Thanks for reply, Actually, i need the lifetime of my hdd.
  5. Hey guys, Im trying to get the Power-ON Hours of a Hard Disk. I need the result in Hours or Hexadecimal like when i use the CrystalDiskInfo as you can see below Someone know if it is possível using script? Thanks
  6. Hey guys, I know this is a very old topic but i really need your help. Im trying to find the Power-on Hours of Hard Disk like when I use the CristalDiskInfo. I need the result in Hours or Hexadecimal as you can see in the image attached but when i use the script above changing the Temperature value to Power-On Hours, that bring me a different result. Thanks and sry for my bad english
  7. Thanks BrewManNH, Worked !! The only problem is that when I select the second value, it does not enable the first then in this case I had to do it this way: #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 491, 298, 192, 114) $box = GUICtrlCreateInput("", 104, 136, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) $box2 = GUICtrlCreateInput("", 104, 168, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) $box3 = GUICtrlCreateInput("", 104, 200, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) $Combo1 = GUICtrlCreateCombo("Combo1", 280, 64, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL)) GUICtrlSetData(-1, "Item1|Item2|Item3") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Combo1 if GUICtrlRead($combo1) = "Item1" then GUICtrlSetState($box2, $GUI_ENABLE) GUICtrlSetState($box3, $GUI_ENABLE) GUICtrlSetState($box, $GUI_DISABLE) elseif GUICtrlRead($combo1) = "Item2" then GUICtrlSetState($box, $GUI_ENABLE) GUICtrlSetState($box3, $GUI_ENABLE) GUICtrlSetState($box2, $GUI_DISABLE) elseif GUICtrlRead($combo1) = "Item3" then GUICtrlSetState($box, $GUI_ENABLE) GUICtrlSetState($box2, $GUI_ENABLE) GUICtrlSetState($box3, $GUI_DISABLE) EndIf EndSwitch WEnd
  8. Ok i got it, but i want to lock the textbox after select the value of a combobox for example: I have 3 unlocked textbox and a Combobox with 3 Itens, I would like to lock (with readonly) my second Textbox After select the second Iten of Combobox, After, if i select the first iten of the combobox, i would like to lock (with readonly) my first Textbox and Unlock the others. How can i do this ?
  9. Thanks for the tips guinness, but i would like to know if is possible to put the $ES_READONLY after select the value of a combobox
  10. Hey guys, Can u help me please, i need to lock a textbox when i chose a value in the combobox for example: Case i select the value "Item1" on combobox, lock the first textbox, case i select the value "Item2", lock the second textbox and unlock the others Is it possible? Thank you! PS: Sorry my bad english #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 491, 298, 192, 114) GUICtrlCreateInput("", 104, 136, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) GUICtrlCreateInput("", 104, 168, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) GUICtrlCreateInput("", 104, 200, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER)) $Combo1 = GUICtrlCreateCombo("Combo1", 280, 64, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL)) GUICtrlSetData(-1, "Item1|Item2|Item3") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
×
×
  • Create New...