hanye332 发表于 2013-4-27 17:31:51

为什么我的这个程序中messagebox的字符串 输出的都是些乱码呢!!

.386
.model flat,stdcall
option casemap:none
include      windows.inc
include      user32.inc
includelib   user32.lib
include      kernel32.inc
includelib   kernel32.lib

             .data
szClassNamedb'水边的什么都可以自己的些',0
szTest1   db'水边的什么都可以自己的些',0
szTest2      db'水边的什么都可以自己的些',0
szTest3      db'水边的什么都可以自己的些',0
            
   
             .code
start:
invoke MessageBox,NULL,offset szTest1,offset szClassName,MB_YESNO or MB_ICONQUESTION

         .if eax == IDYES
invoke MessageBox,NULL,offset szTest2,offset szClassName,MB_OK
         .elseif eax == IDNO
invokeMessageBox,NULL,offset szTest3,offset szClassName,MB_OK
            .endif
            end start


为什么我的输出都是些乱码呢!!????

119400117 发表于 2013-4-28 18:38:29

这问题应该和http://bbs.fishc.com/forum.php?mod=viewthread&tid=30827&extra=page%3D1%26filter%3Dtypeid%26typeid%3D1%26typeid%3D1 一样可以按那贴子里设置一下就行了

hanye332 发表于 2013-4-28 19:54:04

好的谢谢!!
页: [1]
查看完整版本: 为什么我的这个程序中messagebox的字符串 输出的都是些乱码呢!!