Jump to content

What are the GUI functions that can be used to create a message log and a local pane?


Go to solution Solved by Melba23,

Recommended Posts

Posted

Search TreeView and Edit.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 1/9/2014 at 1:44 PM, Servant said:

What are the GUI functions that can be used to create such as a message log (3) and a local pane (4)?

Kindly visit Navigating and window layout referring to the numbers above if you don't know what I mean..

And the picture is defiantly required as those are just generic names with no meaning as to watch control type they are.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

You said create not read. Explain what you want to do please.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 1/9/2014 at 2:23 PM, guinness said:

You said create not read. Explain what you want to do please.

Sorry, I mean the Example in that page can help me for my whole project, not just the function..

But okay lets focus on a message log (3) first..

Please see this attachment:

post-81409-0-39982700-1389333887_thumb.p

  • The message log may tell if the login attempt fails.
  • Or may tell if the login attempt succeed.
  • And may tell if you are successfully connected with Facebook.
  • And many other more about its user log..

Do I need a Function GUICtrlCreateEdit for that or the other function which I do not know yet?

  • Moderators
Posted

Servant,

Personally I would use a List control for something like this, but an Edit control could also serve. Look at GUICtrlCreateList for more details on List controls. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted (edited)

  On 1/10/2014 at 7:07 AM, Melba23 said:

Servant,

Personally I would use a List control for something like this, but an Edit control could also serve. Look at GUICtrlCreateList for more details on List controls. :)

M23

When I try to use a GUICtrlCreateList, it can add a data below the list but you need to scroll down to see the new data.

What I want is when I add a new message, the scroll will automatically be placed in the lower area of the list if it's in the lower area..

And also, are there exact functions that can show the whole message log in TXT File format as a GUI list?

  • But when the log in TXT File format have added a new message, the GUI list will going to add that new message also, but the scroll is in the lower area if it's in the lower area..
  • When a user scroll it a little bit of higher, it will not scroll down even the list have added a new message.
  • It will automatically scroll down only if the scroll is in the lower area..

Is there any solution for this?

Edited by Servant
  • Moderators
Posted

Servant,

 

  Quote

Is there any solution for this?

Yes. Did you try searching the forum (the search box is at top right)? This has been answered many times - and often by me). ;)

An example of one way to do it:

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

Local $iCount = 0

$hGUI = GUICreate("Test", 500, 500)

$cList = GUICtrlCreateList("", 10, 10, 400, 100, BitOR($WS_VSCROLL, $WS_BORDER))

$cButton = GUICtrlCreateButton("Add", 10, 200, 80, 30)

GUISetState(@SW_SHOW)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $cButton
            $iCount += 1
            ; Get current top index
            $iIndex = _GUICtrlListBox_GetTopIndex($cList)
            ; Add a line
            GUICtrlSetData($cList, "Line " & $iCount)
            ; Set new top index
            _GUICtrlListBox_SetTopIndex($cList, $iIndex + 1)
    EndSwitch
WEnd
all clear? :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted (edited)

  On 1/10/2014 at 11:25 AM, Melba23 said:

Servant,

 

Yes. Did you try searching the forum (the search box is at top right)? This has been answered many times - and often by me). ;)

An example of one way to do it:

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

Local $iCount = 0

$hGUI = GUICreate("Test", 500, 500)

$cList = GUICtrlCreateList("", 10, 10, 400, 100, BitOR($WS_VSCROLL, $WS_BORDER))

$cButton = GUICtrlCreateButton("Add", 10, 200, 80, 30)

GUISetState(@SW_SHOW)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $cButton
            $iCount += 1
            ; Get current top index
            $iIndex = _GUICtrlListBox_GetTopIndex($cList)
            ; Add a line
            GUICtrlSetData($cList, "Line " & $iCount)
            ; Set new top index
            _GUICtrlListBox_SetTopIndex($cList, $iIndex + 1)
    EndSwitch
WEnd
all clear? :)

M23

 

Not bad..

Can you convert that code from using GUICtrlCreateList() to UICtrlCreateEdit() ?

So, I could try to compare them which is much better..

And it is possible to make a UICtrlCreateEdit() non-editable?

Edited by Servant
  • Moderators
Posted

Servant,

 

  Quote

Not bad

I try my best... :whistle:

 

  Quote

Can you convert that code from using GUICtrlCreateList() to UICtrlCreateEdit() ?

What is UICtrlCreateEdit? :huh:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

  • Moderators
  • Solution
Posted

Servant,

In this case things are rather easier as Windows does a lot of the work for you: ;)

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

Local $iCount = 0

$hGUI = GUICreate("Test", 500, 500)

$cEdit = GUICtrlCreateEdit("", 10, 10, 400, 100, BitOR($WS_VSCROLL, $WS_BORDER, $ES_READONLY))

$cButton = GUICtrlCreateButton("Add", 10, 200, 80, 30)

GUISetState(@SW_SHOW)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $cButton
            $iCount += 1
            ; Add a line
            _GUICtrlEdit_AppendText($cEdit, "Line " & $iCount & @CRLF)
    EndSwitch
WEnd
M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...