Код:
#include <EditConstants.au3>
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
#include <GuiRichEdit.au3>
Opt("GUIOnEventMode", 1)
Global $Gui_width = 300, $Gui_height = 300
$Win = GUICreate('',$Gui_width,$Gui_height,500,'', $WS_SYSMENU,BitOR($WS_EX_TOOLWINDOW, $WS_EX_TOPMOST));,$WS_POPUPWINDOW)
$console = GUICtrlCreateEdit('',1,150,$Gui_width-8,$Gui_height-40-140, $ES_AUTOVSCROLL)
GUICtrlSetState(-1, $GUI_DISABLE)
$console1 = _GUICtrlRichEdit_Create($Win, "", 1,1,$Gui_width-8,$Gui_height-40-140,BitOR($ES_MULTILINE, $WS_VSCROLL, $ES_AUTOVSCROLL,$WS_DISABLED))
_GUICtrlRichEdit_SetBkColor( $console1, 0xD8E9EC)
_GuiCtrlRichEdit_SetText($console1, "Рамочка как внизу, как?")
GUISetOnEvent($GUI_EVENT_CLOSE, "close_all")
GUISetState()
while 1
sleep(10)
WEnd
Func close_all()
_GUICtrlRichEdit_Destroy($console1)
exit
EndFunc
Каким образом сделать рамку RichEdit такой же как у простого Edit ?