Catsou55 发表于 2015-6-8 14:35:00

GcDate字段间光标移动

GcDate有没有什么方法调用,将输入光标移到下一个字段。
例如,输入格式yyyy/MM/dd 的控件,光标在年上的时候,如何
将光标移到月上。

Leo 发表于 2015-6-8 15:58:00

这个要先确认一下,您所使用的InputMan的版本?ActiveX 还是.NET?

Catsou55 发表于 2015-6-8 16:04:00

我用的是.Net版的

Catsou55 发表于 2015-6-8 16:06:00

版本是InputMan for Windows Forms 7.0J

Leo 发表于 2015-6-8 16:10:00

有这么两组Public的方法
            this.gcDate1.NextField();
            this.gcDate1.PreviousField();

            this.gcDate1.NextFieldThenControl();
            this.gcDate1.PreviousFieldThenControl();


你看看哪一组能用得上。

Catsou55 发表于 2015-6-8 16:19:00

谢谢回答,第一组就满足需要啦。
不过有个问题,为什么我在Visualstudio里,键入GcDate1.Next却看不到备选的方法NextField。

Leo 发表于 2015-6-8 16:37:00

这两组方法其实是给Shortcut功能使用的,因此,默认情况下,我们加上了 Attribute

Leo 发表于 2015-6-8 16:38:00

你也可以认为是高级API,一般人我不告诉他。

Catsou55 发表于 2015-6-8 16:42:00

呵呵,谢谢

Alice 发表于 2015-6-8 17:55:00

回复 9楼Catsou55的帖子

感谢你的反馈。
也感谢@Leo 的解决方案反馈。
页: [1]
查看完整版本: GcDate字段间光标移动