Jump to content

gooker

Active Members
  • Posts

    53
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

gooker's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. thanks. anyone can show the source code of binarytostring. i want to find another method change binary to string.
  2. I'm chinese , my CHS Windows is ok (win7/winxp/win2008) I dont test Eng Windows .
  3. Hi : My os is ubuntu 14.04 ,wine version is 1.7. The problem is as follows: When I use BinaryToString example , in the help file (https://www.autoitscript.com/autoit3/docs/functions/BinaryToString.htm), running under the win7 is ok. When I was running in wine, "你好" change to "??". The binary code(0x4865...) is correct, the result is wrong, I think the problem is the BinaryToString function itself. Whether there is a solution, If someone can help me ,thank you!
  4. thks. the second question. i just use your example 1.
  5. two questions : 1,can use a ico dll? 2,i use Obfuscator /sf=1, it's wrong,click the button,no msgbox.
  6. Very useful for me. thanks.
  7. 1, i use the first Example 1. when i hide the gui(WinSetState($GUI,"",@SW_HIDE)),and then show itWinSetState($GUI,"",@SW_SHOW) ,the Thumbnail Toolbar disappeared. 2, use the udf in my program, the console show "! COM Error ! Number: 0x00000002 ScriptLine: 3748 - Can't install a new Errorhandler when one is still active." my error.
  8. Great work ,his is great!
  9. wonderful,waiting for your udf
  10. @thanubis ths but this also have the problem #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 625, 443, 192, 124) $Label1 = GUICtrlCreateLabel("Label1", 5, 5, 636, 617) GUICtrlSetFont(-1, 39, 400, 4) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### AdlibRegister("MyAdlib",500) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func MyAdlib() If GUICtrlRead($Label1) <> @SEC&"test test test test test test test test test test test test" Then GUICtrlSetData($Label1, @SEC&"test test test test test test test test test test test test") EndFunc
  11. the code is just a sample,i need to changed label data every second ,and it also have this problem, even just show the time . @enaiman ,i use ,but also have the problem.
  12. i write a script ,and use edit and graph, every second will refresh the data of the edit and the graph. i found the edit and the graph flash . so i write a small example to show it. is anybody can sovle the problem? #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 625, 443, 192, 124) $Label1 = GUICtrlCreateLabel("Label1", 5, 5, 636, 617) GUICtrlSetFont(-1, 39, 400, 4) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### AdlibRegister("MyAdlib",100) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func MyAdlib() GUICtrlSetData($Label1,"Do you see the label flash? and how to sovle it ?") EndFunc
  13. 囧 why not use traytip ? i dont like msgbox.
×
×
  • Create New...