Export to GitHub

alsing - issue #9

AutoList Not functioning or I'm not doing it correctly.


Posted on Dec 29, 2009 by Massive Lion

What steps will reproduce the problem? 1. Added AutoList Code

Me.SyntaxBoxControl1.AutoListClear() Me.SyntaxBoxControl1.AutoListBeginLoad() Me.SyntaxBoxControl1.AutoListAdd("test1", 0) Me.SyntaxBoxControl1.AutoListAdd("test2", 1) Me.SyntaxBoxControl1.AutoListAdd("test3", 2) Me.SyntaxBoxControl1.AutoListEndLoad() Me.SyntaxBoxControl1.AutoListVisible = True

What is the expected output? What do you see instead?

If code completion works as expected, I would assume the text would appear if I started typing "te"

What version of the product are you using? On what operating system?

Puzzle.SyntaxBox.NET3.5 on Windows XP

Please provide any additional information below.

Comment #1

Posted on Sep 30, 2010 by Happy Dog

I am willing to use this control in an application (Editor for a language) but the Auto completion thing is keeping me back... When will this issue be resolved? I really need it to work.

Comment #2

Posted on Oct 27, 2010 by Helpful Ox

I'm hitting the same problem here. Sometimes it seems to display way outside the bounds of the SyntaxBox control itself, I tried setting the AutoListPosition to being the Caret position, but that didn't seem to help. I have also tried playing around with the order that I am calling the properties in but it just doesn't seem to like me:

        SQLControl.AutoListVisible = False
        SQLControl.AutoListPosition = SQLControl.Caret.Position

        SQLControl.AutoListBeginLoad()
        SQLControl.AutoListClear()

        For Each T As Table In Mainform.currentDatabase.Tables
            SQLControl.AutoListAdd(T.Name, 0)
        Next

        SQLControl.AutoListEndLoad()
        SQLControl.AutoListPosition = SQLControl.Caret.Position
        SQLControl.AutoListVisible = True

Comment #3

Posted on Dec 7, 2010 by Grumpy Lion

I have the same problem, when will this issue be fixed??

Status: New

Labels:
Type-Defect Priority-Medium