Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/24/2012 in all areas

  1. I like WinXP. I do not like small letters in Windows Explorer Win7. When measured at 125 - problem: the title is high, the large spacing between lines, and a 32x32 icon is transformed into the size ~ 18x18, look terrible. When copying files, they are immediately sorted, but I do not need it. After sorting them long to seek to remove. Unable to create a floating toolbar. I had to write a program ButtonBar. If you use an image to restore you need to spend a lot of time and a large amount of data.
    1 point
  2. guinness

    AutoIt Snippets

    Those who post vague questions are not only wasting their own time but also the time of those replying. So please provide the following to help those who help you. #include <Misc.au3> ; Version: 1.00. AutoIt: V3.3.8.1 ; Retrieve the recommended information of the current system when posting a support question. Local $sSystemInfo = 'I have a valid AutoIt support question and kindly provide the details of my system:' & @CRLF & @CRLF & _ 'AutoIt Version: V' & @AutoItVersion & ' [' & _Iif(@AutoItX64, 'X64', 'X32') & ']' & @CRLF & _ 'Windows Version: ' & @OSVersion & ' [' & @OSArch & ']' & @CRLF & _ 'Language: ' & @OSLang & @CRLF & @CRLF & _ 'The following information has been copied to the clipboard. Use Ctrl + V to retrieve the following information.' MsgBox(4096, 'System Info', $sSystemInfo) ClipPut($sSystemInfo)
    1 point
  3. try this MsgBox(262144, '', Sec2Time(175)) Func Sec2Time($nr_sec) $sec2time_hour = Int($nr_sec / 3600) $sec2time_min = Int(($nr_sec - $sec2time_hour * 3600) / 60) $sec2time_sec = $nr_sec - $sec2time_hour * 3600 - $sec2time_min * 60 Return StringFormat('%02d:%02d:%02d', $sec2time_hour, $sec2time_min, $sec2time_sec) EndFunc ;==>Sec2Time
    1 point
  4. Jos

    Write To Begginng Of File

    this should help...
    1 point
×
×
  • Create New...