------------------------------------------------------------------------------------------------------------------------------------------------------
In web.config
------------------------------------------------------------------------------------------------------------------------------------------------------
<!-- WEBGUI CONTROL MANAGEMENT This section registers controls so that the webgui server can expose their resources. -->
<Controls>
<Control Type="Gizmox.WebGUI.Forms.Editors.FCKEditor, Gizmox.WebGUI.Forms.Extended, Version=3.0.5701.0, Culture=neutral, PublicKeyToken=85eae29607c9f5f3"/>
</Controls>
------------------------------------------------------------------------------------------------------------------------------------------------------
The fckeditor folder is in the root directory (on the same level as the bin folder).
------------------------------------------------------------------------------------------------------------------------------------------------------
In my user control (I add the fckeditor control programmitcally (not with the designer but the end result should be the same))
You should have a reference to Gizmox.WebGUI.FCKLibrary.dll
------------------------------------------------------------------------------------------------------------------------------------------------------
using Gizmox.WebGUI.FCKLibrary;
private Gizmox.WebGUI.Forms.Editors.FCKEditor rtbNote;
this.rtbNote = new Gizmox.WebGUI.Forms.Editors.FCKEditor();
this.rtbNote.BasePath = "../../../../../../FCKeditor/";
this.rtbNote.Anchor = ((System.Windows.Forms.AnchorStyles)
((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.rtbNote.Location = new System.Drawing.Point(14, 150);
this.rtbNote.Name = "rtbNote";
this.rtbNote.Size = new System.Drawing.Size(535, 290);
this.rtbNote.TabIndex = 4;
this.rtbNote.Text = "";
this.Controls.Add(rtbNote);
rtbNote.Value = SomeText;
------------------------------------------------------------------------------------------------------------------------------------------------------
That's all there is to it. We also need to know what version of VWG you are using and what browser you are having trouble with (I am assuming IE8). I had problems with 6.3 and Chrome and Safari, but seem to work progressively better with the 6.4 beta releases.
Hope this is helpful, Kenn