Posted on 01/08/2007 10:51:31
Yes it's possible to have two editors by using two different names for the editors.
Editor 1:
Gui.Editor("TxtA", 0, 150, "My text a", "", Nothing, "", "", Gui.EditorEdition.ForceNew)
Editor 2:
Gui.Editor("TxtB", 0, 0, "My text b", "", Nothing, "", "", Gui.EditorEdition.ForceNew)
Then you can request the editors:
Base.ChkString(Replace(Base.Request("TxtA", False), "'", "''"))
Base.ChkString(Replace(Base.Request("TxtB", False), "'", "''"))