Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Suite Pro
  New Posts New Posts RSS Feed - TaskPanel: Control Items & Animation
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

TaskPanel: Control Items & Animation

 Post Reply Post Reply
Author
Message
ianp View Drop Down
Moderator Group
Moderator Group
Avatar

Joined: 19 December 2003
Location: United Kingdom
Status: Offline
Points: 119
Post Options Post Options   Thanks (0) Thanks(0)   Quote ianp Quote  Post ReplyReply Direct Link To This Post Topic: TaskPanel: Control Items & Animation
    Posted: 23 February 2005 at 5:29am

Using the following code extracted from the Task Panel sample, The text box controls are only displayed in the task panel if the animation type is set to xtpTaskPanelAnimationYes. Is this behaviour expected, because I couldn't find any reference in the documentation?

Private Sub Form_Load()
    Dim Group As TaskPanelGroup
    Dim Item As TaskPanelGroupItem
    Set Group = wndTaskPanel.Groups.Add(0, "Search by any or all of the criteria below.")
   
    Group.Items.Add 0, "All or part of the file name:", xtpTaskItemTypeText
    Set Item = Group.Items.Add(0, "", xtpTaskItemTypeControl)
    Set Item.Control = txtFileName
   
    Group.Items.Add 0, "A word or phrase in the file:", xtpTaskItemTypeText
    Set Item = Group.Items.Add(0, "", xtpTaskItemTypeControl)
    Set Item.Control = txtContains
   
    Group.Items.Add 0, "Look in:", xtpTaskItemTypeText
    Set Item = Group.Items.Add(0, "", xtpTaskItemTypeControl)
    Set Item.Control = txtLookIn
   
    Group.Expandable = False

End Sub

Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.125 seconds.