Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/03/2014 in all areas

  1. Windows 7 and 8.1.If you have Windows RT and know how to run unauthorised app there, I could add code for it too and write small app to test with. @Ascend4nt thanks for the link. And it's here just because, I guess. And maybe because I was told by few people that this place is dumb and have nothing to show. I said yes, but there are some smart people with enormous capacity around. Plus, there is possibility it will make me look smarter than I am, which is kind of appealing.
    3 points
  2. It seems that this is bug only in some versions of AutoIt. 3.2.12.1 - OK 3.3.12.0 - BUG 3.3.13.14 - OK There is simple workaround: ... $frmmain = GUICreate("DM MyRadio", 407, 411, -1, -1) $MenuItem1 = GUICtrlCreateMenu("MenuItem") ... $StatusBar1 = _GUICtrlStatusBar_Create($frmmain) GUIRegisterMsg($WM_SIZE, "WM_SIZE") GUISetState(@SW_SHOW) ... Func WM_SIZE($hWnd, $Msg, $wParam, $lParam) _GuiCtrlStatusBar_Resize($StatusBar1) Return $GUI_RUNDEFMSG EndFunc or this one: ... $frmmain = GUICreate("DM MyRadio", 407, 411, -1, -1) $MenuItem1 = GUICtrlCreateMenu("MenuItem") ... $StatusBar1 = _GUICtrlStatusBar_Create($frmmain) GUISetState(@SW_SHOW) _GuiCtrlStatusBar_Resize($StatusBar1)
    1 point
  3. it is how you open the file for writing these chars translate to HEX E5 and E6 å 229 E5 345 æ 230 E6 346 The default mode when writing text is ANSI so need to open the write mode as unicode $FO_UTF8 (128) = Use Unicode UTF8 (with BOM) reading and writing mode. Reading does not override existing BOM. Try this: $f = FileOpen($Path & "First " & $LineNumbers & " lines.xml",138)
    1 point
  4. mvk25, Following our PM exchange I am reopening the thread with the proviso that the app only displays the "fair usage" part of the lyrics as defined in the LyricWiki API licensing restrictions. M23
    1 point
  5. AdmiralAlkex

    Arrays

    Not that weird if you check what an array converted to string looks like ConsoleWrite(String($a1) & @CRLF) ConsoleWrite(String($a2) & @CRLF)
    1 point
  6. '?do=embed' frameborder='0' data-embedContent>> there are examples on systray and menus in that thread
    1 point
  7. 1 point
×
×
  • Create New...