标题:对程序运行结果有疑问
取消只看楼主
toyix
Rank: 1
等 级:新手上路
帖 子:112
专家分:0
注 册:2008-7-14
结帖率:50%
 问题点数:0 回复次数:1 
对程序运行结果有疑问
;#Mode=CON
  .386
  .model flat, stdcall
  option casemap :none

  include windows.inc
  include user32.inc
  include kernel32.inc
  include masm32.inc

  includelib user32.lib
  includelib kernel32.lib
  includelib masm32.lib
  include macro.asm

  .data?
      Handle1  dd  ?
      Handle2  dd ?
      buffer  db 100 dup(?)
  .CODE
  START:
    ;get the handle of the taskbar
      invoke FindWindow,CTEXT('Shell_TrayWnd'),NULL        
      mov    Handle1,eax
    ;get the handle of the start button from the taskbar
      invoke FindWindowEx,Handle1,0,CTEXT('Button'),NULL  
      mov    Handle2,eax
    ;set the text
      invoke SetWindowText,Handle2,CTEXT('Z..T')
    ;used to refresh the caption of the start button
      invoke SendMessage,Handle2,WM_MOUSEMOVE,0,0   
  ; 运行之后
      ;暂停显示,回车键关闭
      invoke StdIn,addr buffer,sizeof buffer
      invoke ExitProcess,0  
  end START 程序运行之后 开始菜单上面的字  就变成了‘Z..T’,但为什么 操作一些程序之后,它上面的字又变回‘开始’了呢(比如打开任务管理器操作)我看的是aogo网站的教程,用的他们自创的编辑器,题目不明白的联系QQ494000816,在线等答案
搜索更多相关主题的帖子: windows 疑问 include 结果 
2008-07-14 14:46
toyix
Rank: 1
等 级:新手上路
帖 子:112
专家分:0
注 册:2008-7-14
得分:0 
如果是这样的话,有没有办法让上面的字不变过来呢,好像超级兔子就有这样的功能
2008-07-14 17:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-223838-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.164406 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved