拉风晓晓 发表于 2010-4-23 11:50:41

VB用的vbnewline在AU3中怎么搞?[已解决]

本帖最后由 拉风晓晓 于 2010-4-23 19:47 编辑

按钮文字竖排用,有别的方法也请说说

xiaochuan 发表于 2010-4-23 12:37:48

@CRLF
这个宏行不?
:face (31):

拉风晓晓 发表于 2010-4-23 14:47:39

回楼上的,不行

3mile 发表于 2010-4-23 16:15:25

#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>

Opt("MustDeclareVars", 1)

Global $btn, $rdo, $chk, $iMemo

; Note the controlId from these buttons can NOT be read with GuiCtrlRead

_Main()

Func _Main()
        Local $hGUI

        $hGUI = GUICreate("Buttons", 400, 400)
        $iMemo = GUICtrlCreateEdit("", 119, 10, 276, 374, $WS_VSCROLL)
        GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")

        $btn = _GUICtrlButton_Create($hGUI, "竖"&@CRLF&"排", 10, 10, 90, 50,$BS_MULTILINE);这里指定多行竖排样式

        While 1
                Switch GUIGetMsg()
                        Case $GUI_EVENT_CLOSE
                                ExitLoop
                EndSwitch
        WEnd

        Exit

EndFunc   ;==>_Main

拉风晓晓 发表于 2010-4-23 19:46:48

本帖最后由 拉风晓晓 于 2010-4-23 19:49 编辑

谢谢楼上的,已经解决,关键是参数$BS_MULTILINE,后来才知道的。
页: [1]
查看完整版本: VB用的vbnewline在AU3中怎么搞?[已解决]