Telerik Forums
UI for WinForms Forum
28 answers
397 views
I have a question.
I am using Ribbonbar q4 2006. I think that is free. It's correct ? I am user of VB2008 and i have download it from MS site.
I cant to have update or not ?
And if yes, my application can change the version
Thank and excuse me for my english.

AB
Nick
Telerik team
 answered on 08 Mar 2010
1 answer
164 views
Hi

We have a GridViewComboBoxColumn that's databound to about 5000 rows.  The first time I click the dropdown, it happens instantaneously, however, on subsequent attempts to click the dropdown, it takes quite a while before the list is dropped down to allow me to select a row.

Is there anything I can do to improve the performance?  If not, is there another way I can do this?

Thanks

Ralph
Deyan
Telerik team
 answered on 08 Mar 2010
1 answer
166 views
Hi

I would like to get an understanding as how your licensing mechanism works?
How does it work without entering License Keys? 

Regards
Lee

Deyan
Telerik team
 answered on 08 Mar 2010
3 answers
165 views

Hello,

I would like to bind the gridview control, on a VB.Net form, to an Oracle 11g database that has millions of records.
Can anybody tell what would be the performance in this case? Does grid a have 'pagination' or a buffering feature that would allow a fast load/scrolling?
I  have a Windows utility called Oracle SQL Developer (from ORACLE Corp.) that does a similar job, i.e. can be used to browse a table that has millions of records and it works super fast.
Does Telerik grid have a similar performance? I didn't install it yet because I would research for a different product in case the performance is slow. 

Regards,
M. R. - Toronto


Nick
Telerik team
 answered on 08 Mar 2010
1 answer
235 views
Hi,

in the Silverlight demos I have seen a TreeViewList demo.
That would be great for WinForms.

Best regards
Andreas
Victor
Telerik team
 answered on 08 Mar 2010
1 answer
152 views
I have successfully created the hierarchical grid and the sub-grid. I am now needing to allow the user to double click on the sub grid that is shown. How would I go about doing this?

I am creating the subgrid like this:
GridViewTemplate oppSubGrid = new GridViewTemplate(); 
// .. other code goes here to setup columns, etc. 
gridDupes.MasterGridViewTemplate.ChildGridViewTemplates.Add(oppSubGrid); 
GridViewRelation relation = new GridViewRelation(gridDupes.MasterGridViewTemplate); 
relation.ChildTemplate = oppSubGrid; 
relation.RelationName = "ContactsOpportunities"
relation.ParentColumnNames.Add("ID"); 
relation.ChildColumnNames.Add("ContactID"); 
gridDupes.Relations.Add(relation); 


Now I just need to know how to call a function with a double click. Any ideas?

Thanks!







Martin Vasilev
Telerik team
 answered on 08 Mar 2010
5 answers
157 views
I need dynamically add a context menu to radpanelbargroupelement.

the radpanelbargroupelement are created dynamically and I need to have it when you right click the groupelement the menu display and excepts only on the right click for that groupelement.  here is what I have but it is not fireing the event when right clicked.


 private void PopulatePanelBar()  
        {  
            RadPanelBarGroupElement ItemsGroupElement;  
            foreach (BEItems.ItemRow gcr in ItemsDataSet.Item.Rows)  
            {  
                ItemsGroupElement = new RadPanelBarGroupElement();  
                ItemsRadPanelBar.Items.Add(ItemsGroupElement);  
 
                ItemsGroupElement.Caption = gcr.Item_nm;  
                ItemsGroupElement.Tag = gcr.Item_id;  
                ItemsGroupElement.MouseDown += new MouseEventHandler(ItemsGroupElement_MouseDown);  
            }  
            foreach (RadPanelBarGroupElement element in this.ItemsRadPanelBar.Items)  
            {  
                RadPanelBarVisualElement visualElement = element.GetCaptionElement();  
                element.EnableHostControlMode = true;  
                visualElement.AutoToolTip = true;  
 
                ItemUserControl ItemUserControl = new ItemUserControl();  
                element.ContentPanel.Controls.Add(ItemUserControl);  
                ItemUserControl.ItemHeaderRow = (BEItems.Item_headerRow[])ItemsDataSet.Item_header.Select("Item_id = " + (int)element.Tag);  
                ItemUserControl.ItemValueRow = (BEItems.Item_valueRow[])ItemsDataSet.Item_value.Select("Item_id = " + (int)element.Tag);  
            }  
        }  
        void ItemsGroupElement_MouseDown(object sender, MouseEventArgs e)  
        {  
            if (e.Button == MouseButtons.Right)  
            {  
                ContextMenu myMenu = new ContextMenu();  
                if (sender != null)  
                {  
                    RadPanelBarGroupElement element = (RadPanelBarGroupElement)sender;  
                    element.ContentPanel.ContextMenu = myMenu;  
 
                    MenuItem AddItemRadMenuItem = new MenuItem();  
                    MenuItem UpdateItemRadMenuItem = new MenuItem();  
                    MenuItem InactivateItemRadMenuItem = new MenuItem();  
                    MenuItem ExpandPanelBarRadMenuItem = new MenuItem();  
                    MenuItem CollapsePanelBarRadMenuItem = new MenuItem();  
 
                    AddItemRadMenuItem.Click += new EventHandler(AddItemRadMenuItem_Click);  
                    UpdateItemRadMenuItem.Click += new EventHandler(UpdateRadMenuItem_Click);  
                    InactivateItemRadMenuItem.Click += new EventHandler(InactivateItemRadMenuItem_Click);  
                    ExpandPanelBarRadMenuItem.Click += new EventHandler(ExpandPanelBarRadMenuItem_Click);  
                    CollapsePanelBarRadMenuItem.Click += new EventHandler(CollapsePanelBarRadMenuItem_Click);  
 
                    myMenu.MenuItems.Add(AddItemRadMenuItem);  
                    myMenu.MenuItems.Add(UpdateItemRadMenuItem);  
                    myMenu.MenuItems.Add(InactivateItemRadMenuItem);  
                    myMenu.MenuItems.Add(ExpandPanelBarRadMenuItem);  
                    myMenu.MenuItems.Add(CollapsePanelBarRadMenuItem);  
                }  
            }  
        } 
steve
Top achievements
Rank 1
 answered on 05 Mar 2010
5 answers
209 views
i use a radlistbox to display a list of clients. i have set the DataSource, DisplayMember,ValueMember property. during the ItemBound event i set the DescriptionText property for each RadListBoxItem. when the app loads i can only see the DisplayMemebr. the DescriptionText doesn't appear. i have put the RadLisBox inside a RadPanelBar. after i switch to another RadPanelBarGroupElement and come back to the element which shows the client list box, everything is fine. RadPanelBar is set to outlook style.

how can i solve this issue?
Victor
Telerik team
 answered on 05 Mar 2010
5 answers
156 views
Hi
(There are multiple questions , iin this single question. )

I was understanding deployment process. I created a simple winforms application with couple of forms getting datafrom SQL into GridControl. I marked assembly as "Copy Local" and published it.    When i Installed it on a Fresh XP machine, it did get installed, but the form containing GRID did not open.   Why?

I recalled my experience of Crystal report with VS2003 or VS2005 where report runs fine on developer PC, but when deployed, it stops working and we need to add a key into deployment and setup project and then deploy it on client machines. 

In order to understand how deployment will work,  I came upon this link http://blogs.telerik.com/vassilterziev/posts/08-01-15/telerik_licensing_demystified.aspx and got more confused.

"Our products do NOT work with license keys and you can safely install them on any machine without worrying about license key errors"

Well this is fine and I understand the freedom behind it. but then how licensing works? 
Do I not to enter license key anywhere on PC?

Regards




Lee
Top achievements
Rank 1
 answered on 05 Mar 2010
2 answers
124 views
I am here trying to find if GridView has some solution to my problem.

I have a table 'Contacts' with has fields like
PresentAddress|CityID|StateID|CountryID|ZoneID
PermanentAddress|CityID|StateID|CountryID|ZoneID
DepartmentID
DesignationID
DivisionID.

Now all above fields are foreign keys in contacts table.  Currently i am retrieving data using Joins and displaying in Gridview.
One of my problem is that CityID|StateID|CountryID|ZoneID tables are used twice in joins with different alias to fill up their associated values for PresentAddress & PermanentAddress fields.  so overall 11 to 12 tables in a join.   I am sure performance will shout as no of records will increase.

I am thinking if i retrieve from database those Individual master tables (City,State,Country,Zone etc and Contact table) into DataSet (without joins) then CAN GridView help me to retrieve associate data and display.  which mean whereever it finds a column CityID, it brings CityName from CityMaster table and display in place of CityID column.  

Regards






Svett
Telerik team
 answered on 05 Mar 2010
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?