Auto-complete broken for classes named 'pro...'

SyntaxEditor .NET Languages Add-on for Windows Forms Forum

Posted 14 years ago by Gareth Hayter
Avatar
If you type 'pro' then invoke auto-complete, it will always complete to 'protected', a keyword, even when you have classes names 'Project' in-scope. An example from your '.Net Language Reflection with External References' demo:

using System;
using System.Drawing;
using System.Windows.Forms;

namespace TestApplication.SyntaxEditorIntelliPrompt {

public class Project
{
public string Name {get;set;}
}
/// <summary>
/// Provides the base class for the <see cref="InheritedControl"/> class.
/// </summary>
public class BaseControl : Control {

private Color boxColor = Color.Red;
private Size boxSize = new Size(100, 100);
private ColorButton button;

public BaseControl() {
pro <- Type CTRL-Space to invoke auto-complete. It completes to 'protected' even though a class called 'Project' is defined above
button = new ColorButton();
button.Parent = this;
button.Location = new Point(20, 20);
button.Color = boxColor;
}

Comments (5)

Posted 14 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Hi Gareth,

Thanks for the sample. We've fixed the bug for the upcoming maintenance release.


Actipro Software Support

Posted 14 years ago by Gareth Hayter
Avatar
Thanks. Any rough estimates of a possible release timeframe?
Posted 14 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Hopefully next week.


Actipro Software Support

Posted 14 years ago by Gareth Hayter
Avatar
Really?! Wow!
Posted 14 years ago by Gareth Hayter
Avatar
I confirm that this is now fixed in the latest build. Thank-you!
The latest build of this product (v24.1.0) was released 3 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.