<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://xceed.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Xceed SmartUI</title><link>http://xceed.com/CS/forums/71/ShowForum.aspx</link><description>Questions and Answers Relating to Xceed SmartUI</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Debug Build: 61120.2)</generator><item><title>KeyPress event is not being raised.</title><link>http://xceed.com/CS/forums/thread/28427.aspx</link><pubDate>Fri, 10 Oct 2008 14:58:41 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28427</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28427.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28427</wfw:commentRss><description>&lt;span&gt;SmartUI manages some keys events by its own in order to simplify your code. If you need full access to keys events, you need to implement a keyboard hook (see attachments).&lt;/span&gt;</description></item><item><title>How do I enable Combo SmartItems to have a drop down menu?</title><link>http://xceed.com/CS/forums/thread/28426.aspx</link><pubDate>Fri, 10 Oct 2008 14:57:55 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28426</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28426.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28426</wfw:commentRss><description>&lt;span&gt;There is not a direct method to do this, but the following code can be used to achieve the desired results:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;SmartUI1.SetFocus&lt;br/&gt;SmartUI1.SmartItems(1).EnsureVisible&lt;br/&gt;SmartUI1.SmartItems(1).Selected = True&lt;br/&gt;SendKeys "%{down}", T &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;</description></item><item><title>Error: "The current version of SmartUI can't be distributed"</title><link>http://xceed.com/CS/forums/thread/28425.aspx</link><pubDate>Fri, 10 Oct 2008 14:57:31 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28425</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28425.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28425</wfw:commentRss><description>&lt;span&gt;The License method must be called in order to license your copy of SmartUI. To register all SmartUI controls being used in your application, the License method should be called in your Sub Main or in the main form's Initialize method.&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Private Sub Form_Initialize()&lt;br/&gt;&amp;nbsp; Dim result As Boolean&lt;br/&gt;&lt;br/&gt;&amp;nbsp; result = XceedSmartUI.License( "your license key" )&lt;br/&gt;&lt;br/&gt;&amp;nbsp; If Not result Then&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call MsgBox( "Licensing failed!" )&lt;br/&gt;&amp;nbsp; End If&lt;br/&gt;End Sub&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br/&gt;The License method is available as of version 2.0.100 of SmartUI. You can download the latest version from the Update Center.&lt;/span&gt;</description></item><item><title>How do I dynamically add and removing items to and from a list?</title><link>http://xceed.com/CS/forums/thread/28424.aspx</link><pubDate>Fri, 10 Oct 2008 14:56:51 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28424</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28424.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28424</wfw:commentRss><description>&lt;span&gt;Create a blank VB project and add three controls to it:&lt;br/&gt;- A button with the name btnAdd.&lt;br/&gt;- A button with the name btnRemove.&lt;br/&gt;- An edit control with the name txtNewItem&lt;br/&gt;- A SmartUI control called SmartUI1&lt;br/&gt;&lt;br/&gt;Then, in the button add event, you can use the following code to add an item to the list:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Private Sub btnAdd_Click()&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SmartUI1.SmartItems.Add , , txtNewItem.Text, ListItemFullRow&lt;br/&gt;End Sub&lt;br/&gt;&lt;br/&gt;Private Sub btnRemove_Click()&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If Not SmartUI1.SelectedItem Is Nothing Then&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SmartUI1.SmartItems.Remove (SmartUI1.SelectedItem.Index)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End If&lt;br/&gt;End Sub&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;</description></item><item><title>How do I select a subitems key in a ComboBox?</title><link>http://xceed.com/CS/forums/thread/28422.aspx</link><pubDate>Fri, 10 Oct 2008 14:56:19 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28422</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28422.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28422</wfw:commentRss><description>&lt;span&gt;There is an example in lesson #16 that demonstrates how this can be done. The code contains the following:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Private Function GetItemSelected(Item As BoWSmartUI.SmartItem) As BoWSmartUI.SmartItem&lt;br/&gt;&lt;br/&gt;Dim SubItem As SmartItem&lt;br/&gt;&lt;br/&gt;For Each SubItem In Item.SubItems&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If SubItem.Caption = Item.Value Then&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set GetItemSelected = SubItem&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit Function&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End If&lt;br/&gt;Next SubItem&lt;br/&gt;End Function&lt;/font&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;</description></item><item><title>Checked property displays incorrectly in a MenuGroup.</title><link>http://xceed.com/CS/forums/thread/28418.aspx</link><pubDate>Fri, 10 Oct 2008 14:55:33 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28418</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28418.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28418</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Set the ImageWidth property to 16 pixels:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;smMenu.ImageWidth = 16 &lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/body&gt;</description></item><item><title>License information for this component not found.</title><link>http://xceed.com/CS/forums/thread/28412.aspx</link><pubDate>Fri, 10 Oct 2008 14:54:54 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28412</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28412.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28412</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;The License method must be called in order to license your copy of SmartUI. To register all SmartUI controls being used in your application, the License method should be called in your Sub Main or in the main form's Initialize method.&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Private Sub Form_Initialize()&lt;br/&gt;    Dim result As Boolean&lt;br/&gt;&lt;br/&gt;    result = XceedSmartUI.License( "your license key" )&lt;br/&gt;&lt;br/&gt;    If Not result Then&lt;br/&gt;        Call MsgBox( "Licensing failed!" )&lt;br/&gt;    End If&lt;br/&gt;End Sub&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br/&gt;The License method is available as of version 2.0.100 of SmartUI. You can download the latest version from the Update Center.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Is it possible to retrieve the text in a TextBoxTool SmartItem?</title><link>http://xceed.com/CS/forums/thread/28430.aspx</link><pubDate>Fri, 10 Oct 2008 14:10:43 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28430</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28430.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28430</wfw:commentRss><description>&lt;span&gt;The TextBoxTool's Text property represents the TextBoxTool's label and not the text it contains. Therefore, in order to retrieve the text in a TextBoxTool SmartItem, you must pass by the TextBoxTool's virtual textbox. For example:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;Dim text As String = textBoxTool1.VirtualTextBox.Text&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br/&gt;If you want to know when the TextBoxTool's text changes, you can use the virtual textbox's TextChanged event:&lt;br/&gt;&lt;br/&gt;
&lt;table cellspacing="2" cellpadding="2" width="100%" bgcolor="#e8e8e8" border="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font size="1"&gt;AddHandler textBox1.VirtualTextBox.TextChanged, AddressOf Me.ToolTextChanged&lt;br/&gt;&lt;br/&gt;Private Sub ToolTextChanged( ByVal sender As Object, ByVal e As EventArgs )&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Code goes here&lt;br/&gt;End Sub&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br/&gt;&lt;b&gt;Version 3.1 of SmartUI for .NET is required.&lt;/b&gt;&lt;/span&gt;</description></item><item><title>In VB6, I get the permission denied error when trying to compile. Why?</title><link>http://xceed.com/CS/forums/thread/28431.aspx</link><pubDate>Fri, 05 Sep 2008 19:16:49 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28431</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28431.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28431</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;There are two reasons why you get this error.&lt;br/&gt;&lt;br/&gt;First, if you have more than one of the same component .dll registered on the system, when you try to compile you will have a Permission denied message box.&lt;br/&gt;&lt;br/&gt;Here is what you need to do.&lt;br/&gt;&lt;br/&gt;1) Go in the Project Menu and down to references. Remove any references to your Xceed component.&lt;br/&gt;&lt;br/&gt;2) Save and close your VB application.&lt;br/&gt;&lt;br/&gt;3) Unregister any of the component .dll you might have on your system (We strongly suggest that you use the Windows Search to make sure not to miss any). To unregister the DLL use Regsvr32 -u "Path of the dll"&lt;br/&gt;&lt;br/&gt;4) Register the DLL you wish to use in your application and remove any other of the component .dll you do not wish to use.&lt;br/&gt;&lt;br/&gt;5) Open VB, add the reference and you should be on your way.&lt;br/&gt;&lt;br/&gt;Second, you have not installed the package, but simply copied directly on the system a version of the component you want to use, and registered it manually. Some keys need to be set in Windows registry, for the way VB loads components makes our components verify the licensing at compile. To resolve this issue, unregister the dll you installed manually, delete it, and install the package, which will set the registry properly.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How do I improve the performance of my zip file manipulation?</title><link>http://xceed.com/CS/forums/thread/28429.aspx</link><pubDate>Fri, 05 Sep 2008 18:52:40 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28429</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28429.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28429</wfw:commentRss><description>&lt;span&gt;When performing multiple operations on a zip file, you can increase performance by placing the code that accesses/ modifies the zip file between calls to the ZipArchive's BeginUpdate and EndUpdate methods.&lt;br/&gt;&lt;br/&gt;When BeginUpdate is called, all modifications to the zip file are "queued" until EndUpdate is called. This means that the zip file will be modified only once rather than once for each operation.&lt;/span&gt;</description></item><item><title>Images retrieved from an ImageList are not displayed properly.</title><link>http://xceed.com/CS/forums/thread/28428.aspx</link><pubDate>Fri, 05 Sep 2008 18:49:59 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28428</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28428.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28428</wfw:commentRss><description>&lt;span&gt;This is a known issue. The Microsoft ImageList does not support semi-transparent images.&lt;br/&gt;&lt;br/&gt;As a workaround, assign the image you want to use directly to the SmartItem's Image property.&lt;/span&gt;</description></item><item><title>No images with external imagelist with Windows XP.</title><link>http://xceed.com/CS/forums/thread/28423.aspx</link><pubDate>Fri, 05 Sep 2008 18:41:28 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28423</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28423.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28423</wfw:commentRss><description>&lt;span&gt;We have studied the problem regarding SmartUI images problem under Windows XP. The tests were completed with Windows XP Build 2600 (RTM).&lt;br/&gt;&lt;br/&gt;Here are our conclusions:&lt;br/&gt;* SmartUI works well when using it own images&lt;br/&gt;&lt;br/&gt;* SmartUI works well when using images from another SmartUI&lt;br/&gt;&lt;br/&gt;* SmartUI does not work well when using images from an MS ImageList version 5.0 (COMCTL32.OCX).&lt;a href="http://support.microsoft.com/default.aspx?scid=KB;EN-US;811415"&gt;Version 6.0&lt;/a&gt;of COMCTL32.OCX is confirmed by Microsoft to correct the issue.&lt;br/&gt;&lt;br/&gt;The problem is due to the ActiveX control provided with Windows XP (mscomctl.ocx). The handle returned by the imagelist (ImageList1.hImageList) is not correct.&lt;br/&gt;&lt;br/&gt;The possible workarounds are:&lt;br/&gt;&lt;br/&gt;* Use version 5.0 instead of version 6.0&lt;br/&gt;* Use SmartUI's own images&lt;/span&gt;</description></item><item><title>What programming languages are supported by SmartUI?</title><link>http://xceed.com/CS/forums/thread/28421.aspx</link><pubDate>Fri, 05 Sep 2008 18:40:45 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28421</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28421.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28421</wfw:commentRss><description>&lt;span&gt;Due to some specific problems linked to the Windowless and WYSIWYG features, SmartUI currently can only work with a Visual Basic 6 container.&lt;/span&gt;</description></item><item><title>I would like to know what combinations of SmartUI components are possible?</title><link>http://xceed.com/CS/forums/thread/28420.aspx</link><pubDate>Fri, 05 Sep 2008 18:40:20 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28420</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28420.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28420</wfw:commentRss><description>&lt;span&gt;In general, all combinations of SmartUIs are possible except in menus, where you can only add "standard" menu items&lt;/span&gt;</description></item><item><title>Adding a text box into a SmartUI menu.</title><link>http://xceed.com/CS/forums/thread/28419.aspx</link><pubDate>Fri, 05 Sep 2008 18:40:02 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28419</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28419.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28419</wfw:commentRss><description>&lt;span&gt;Unfortunately it is not possible to add a text box to a SmartUI menu.&lt;/span&gt;</description></item><item><title>Creating an outlook bar on a MDI form.</title><link>http://xceed.com/CS/forums/thread/28417.aspx</link><pubDate>Fri, 05 Sep 2008 18:37:02 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28417</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28417.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28417</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Put all SmartUI controls (Main SmartUI and children) in a PictureBox, and put the PictureBox inside the MDI Form. Please make sure to put the main SmartUI in the background and the children on top (ZOrder).&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Collapse/expand events do not fired when a (sub) menu is open</title><link>http://xceed.com/CS/forums/thread/28416.aspx</link><pubDate>Fri, 05 Sep 2008 18:36:34 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28416</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28416.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28416</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;You can dynamically create the menu (like in lesson #15) in the BeforeDropDown event. But you must create all menu items and children, as there are no events when sub-menus are opened.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>When subclassing a form containing a SmartUI the application crashes. Why?</title><link>http://xceed.com/CS/forums/thread/28415.aspx</link><pubDate>Fri, 05 Sep 2008 18:35:59 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28415</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28415.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28415</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;In order to be able to subclass the form, you must make your subclass after SmartUI is loaded, and then unsubclass before SmartUI is unloaded. For this, you can start subclassing in the Form_Paint event, and unsubclass in the Form_QueryUnload event.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Adding an icon to the caption of a SmartUI control</title><link>http://xceed.com/CS/forums/thread/28414.aspx</link><pubDate>Fri, 05 Sep 2008 18:35:17 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28414</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28414.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28414</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;To do this, you must use two SmartUI controls. One control configured as a Label positioned above the second control.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Handpointer property cannot be set on a MDI form</title><link>http://xceed.com/CS/forums/thread/28413.aspx</link><pubDate>Fri, 05 Sep 2008 18:34:50 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28413</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28413.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28413</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;First put the SmartUI inside a PictureBox. Next put the PictureBox inside the MDI Form. The Handpointer property should now work correctly&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How do I use the ProgressBar without calling DoEvents?</title><link>http://xceed.com/CS/forums/thread/28411.aspx</link><pubDate>Fri, 05 Sep 2008 18:33:43 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28411</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28411.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28411</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Put the SmartUI into a PictureBox and call Picture1.Refresh or Call Form1.Refresh if SmartUI is directly on the form.&lt;/span&gt;&lt;/body&gt;</description></item><item><title>How do I capture right click events?</title><link>http://xceed.com/CS/forums/thread/28410.aspx</link><pubDate>Fri, 05 Sep 2008 18:33:17 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28410</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28410.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28410</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;You can use either the MouseDown or MouseUp event to determine the button pressed. Inside these events, you can use the SmartUI.HotItem property to get the item selecte&lt;/span&gt;&lt;/body&gt;</description></item><item><title>Application has generated an exception that could not be handled</title><link>http://xceed.com/CS/forums/thread/28409.aspx</link><pubDate>Fri, 05 Sep 2008 17:45:47 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28409</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28409.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28409</wfw:commentRss><description>&lt;body&gt;&lt;p&gt;&lt;span&gt;You also need to register the DLL for the ActiveX component. You can set your installer to automatically register the DLL or use the "REGSVR32" command to manually register on the local machine.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;</description></item><item><title>How do I create an instance of my Xceed product and its subclasses in my ASP page.</title><link>http://xceed.com/CS/forums/thread/28408.aspx</link><pubDate>Fri, 05 Sep 2008 17:17:10 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28408</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28408.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28408</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;In order to create an instance of an Xceed product in ASP, you need to call the CreateObject function in the following manner using the appropriate ProgId:&lt;br/&gt;&lt;br/&gt;Dim xStreamComp&lt;br/&gt;Set xStreamComp = Server.CreateObject("Xceed.StreamingCompression.1")&lt;br/&gt;&lt;br/&gt;The following list provides the ProgId's of all Xceed products as well as any subclasses:&lt;br/&gt;&lt;br/&gt;XCEED ZIP COMPRESSION LIBRARY:&lt;br/&gt;&lt;br/&gt;XceedSoftware.XceedZip.5&lt;br/&gt;XceedSoftware.XceedCompression.5&lt;br/&gt;&lt;br/&gt;XCEED STREAMING COMPRESSION LIBRARY:&lt;br/&gt;&lt;br/&gt;Xceed.StreamingCompression.1&lt;br/&gt;Xceed.BZip2CompressionFormat.1&lt;br/&gt;Xceed.GZipCompressionFormat.1&lt;br/&gt;Xceed.StandardCompressionFormat.1&lt;br/&gt;Xceed.Zip3CompressionFormat.1&lt;br/&gt;Xceed.ZLibCompressionFormat.1&lt;br/&gt;Xceed.DeflateCompression.1&lt;br/&gt;Xceed.Deflate64Compression.1&lt;br/&gt;Xceed.BWTCompression.1&lt;br/&gt;Xceed.StoreCompression.1&lt;br/&gt;&lt;br/&gt;XCEED BINARY ENCODING LIBRARY:&lt;br/&gt;&lt;br/&gt;Xceed.BinaryEncoding.1&lt;br/&gt;Xceed.Base64Encoding.1&lt;br/&gt;Xceed.BinHexEncoding.1&lt;br/&gt;Xceed.HexaEncoding.1&lt;br/&gt;Xceed.QuotedPrintableEncoding.1&lt;br/&gt;Xceed.UUEncoding.1&lt;br/&gt;Xceed.XXEncoding.1&lt;br/&gt;&lt;br/&gt;XCEED ENCRYPTION LIBRARY :&lt;br/&gt;&lt;br/&gt;Xceed.Encryption.1&lt;br/&gt;Xceed.RijndaelEncryptionMethod.1&lt;br/&gt;Xceed.TwofishEncryptionMethod.1&lt;br/&gt;Xceed.RSAEncryptionMethod.1&lt;br/&gt;Xceed.Hashing.1&lt;br/&gt;Xceed.SHAHashingMethod.1&lt;br/&gt;Xceed.HavalHashingMethod.1&lt;br/&gt;Xceed.Signing.1&lt;br/&gt;Xceed.RSASigningMethod.1&lt;br/&gt;&lt;br/&gt;XCEED BACKUP LIBRARY :&lt;br/&gt;&lt;br/&gt;XceedSoftware.XceedBackup.BackupJob.1&lt;br/&gt;XceedSoftware.XceedBackup.FileSelection.1&lt;br/&gt;XceedSoftware.XceedBackup.RestoreJob.1&lt;br/&gt;XceedSoftware.XceedBackup.ScheduledJob.1&lt;br/&gt;XceedSoftware.XceedBackup.1&lt;br/&gt;&lt;br/&gt;XCEED FTP LIBRARY :&lt;br/&gt;&lt;br/&gt;XceedSoftware.XceedFtp.1&lt;br/&gt;XceedSoftware.XceedQuickFtp.1&lt;br/&gt;XceedSoftware.XceedFtp.XceedFtpFolderItems.1&lt;br/&gt;XceedSoftware.XceedFtp.XceedFtpFolderItem.1&lt;br/&gt;&lt;br/&gt;XCEED WINSOCK LIBRARY :&lt;br/&gt;&lt;br/&gt;XceedSoftware.XceedWinsock.AddressedByteTransferEvents.1&lt;br/&gt;XceedSoftware.XceedWinsock.AddressManager.1&lt;br/&gt;XceedSoftware.XceedWinsock.AppleTalkAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.AtmAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.ByteTransferEvents.1&lt;br/&gt;XceedSoftware.XceedWinsock.ConnectionEvents.1&lt;br/&gt;XceedSoftware.XceedWinsock.DECnetAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.FileTransferEvents.1&lt;br/&gt;XceedSoftware.XceedWinsock.FlowSpec.1&lt;br/&gt;XceedSoftware.XceedWinsock.IncomingConnectionEvents.1&lt;br/&gt;XceedSoftware.XceedWinsock.Inet6Address.1&lt;br/&gt;XceedSoftware.XceedWinsock.InetAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.IpxAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.IrdaAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.IsoTpAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.LicenseManager.1&lt;br/&gt;XceedSoftware.XceedWinsock.NameSpaceParam.1&lt;br/&gt;XceedSoftware.XceedWinsock.NameSpaceProviders.1&lt;br/&gt;XceedSoftware.XceedWinsock.NetBIOSAddress.1&lt;br/&gt;XceedSoftware.XceedWinsock.ProtocolFamily.1&lt;br/&gt;XceedSoftware.XceedWinsock.Protocols.1&lt;br/&gt;XceedSoftware.XceedWinsock.QualityOfServiceInfo.1&lt;br/&gt;XceedSoftware.XceedWinsock.ServiceAddressInfo.1&lt;br/&gt;XceedSoftware.XceedWinsock.ServiceManager.1&lt;br/&gt;XceedSoftware.XceedWinsock.SocketFactory.1&lt;br/&gt;XceedSoftware.XceedWinsock.StringTransferEvents.1&lt;/span&gt;&lt;/body&gt;</description></item><item><title>I am trying to instantiate my Xceed control, however Visual Basic is return an error saying "Invalid use of New keyword". Is it possible to instantiate the control?</title><link>http://xceed.com/CS/forums/thread/28407.aspx</link><pubDate>Fri, 05 Sep 2008 16:57:53 GMT</pubDate><guid isPermaLink="false">14592c03-f9d0-4f6b-b4cd-71e0e1b1f679:28407</guid><dc:creator>Xceed admin</dc:creator><slash:comments>0</slash:comments><comments>http://xceed.com/CS/forums/thread/28407.aspx</comments><wfw:commentRss>http://xceed.com/CS/forums/commentrss.aspx?SectionID=71&amp;PostID=28407</wfw:commentRss><description>&lt;body&gt;&lt;span&gt;Yes, it is possible to instantiate the control. Visual Basic is a bit "touchy" when it comes to adding references. What you will need to do is remove the Xceed Control from both your list of References and Components. Once this is done, add it ONLY to your list of references.&lt;/span&gt;&lt;/body&gt;</description></item></channel></rss>