Telerik Forums
UI for WinForms Forum
2 answers
111 views
I had a look at the "community code library" article

export-gridview-to-html-for-copy-paste.aspx

1. Seems that the code needs to be updated a little to be compatible with  Q1 2011.

2. With Copy and Paste being such a basic and essential feature for many apps, is it not possible for Telerik to provide us with an example/demo project in VB.NET for this kind of functionality.   I've got a few "bugs" using the code in the example so a complete project with the relevant code would be most welcome.

3. Is there anyone who can help that has used copy (from RadGrid) and paste (to MS Word)  successfully?

Many thanks


Martin Vasilev
Telerik team
 answered on 19 Apr 2011
2 answers
165 views
Hello.
I insert MultiComboBoxColumn to radGridView and i want it auto complete = true.
Ex: I type "h" it will show "hello" from db

i used
GridViewMultiComboBoxColumn col = new GridViewMultiComboBoxColumn();
           col.DataSource = mh.ToList();
           col.DisplayMember = "ProductName";
           col.ValueMember = "ProductId";
           col.FieldName = "ProductId";
           col.HeaderText = "Product Name";
           col.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
           col.AutoCompleteMode = AutoCompleteMode.SuggestAppend;

or

FilterDescriptor descriptor = new FilterDescriptor(col.DisplayMember, FilterOperator.StartsWith, string.Empty);
col.FilterDescriptor = descriptor;

but it not work.

Any suggestions for me.
Sorry my english not well.


Thanks,
NLT
thien nluong
Top achievements
Rank 1
 answered on 18 Apr 2011
5 answers
125 views
The Help files for the Telerik WinForms Controls was supposed to become integrated into the Visual Studio help with the latest release. That does not seem to be the case for my coworkers and I in Visual Studio 2010 SP1. When trying to use the .chm file on its own I get both a .chm and a .chw on my desktop, neither of which is usable. Any suggestions or assistance would be greatly appreciated!
Stefan
Telerik team
 answered on 18 Apr 2011
1 answer
120 views
I have been testing out this article. http://www.telerik.com/support/kb/winforms/gridview/adding-custom-elements-inside-a-cell-when-it-is-in-edit-mode.aspx. It does almost everything i want, but the click event of the button is not firing.

Anyone who knows howto get the button click event to fire?

Svein Thomas

Ivan Petrov
Telerik team
 answered on 18 Apr 2011
3 answers
253 views
I have performed the following steps in trying to dock a radmenu.

1. Dock it to the top of a new RadForm with AutoSize set to true
2. Fill/dock another control (PageView, for example) on the form

There seems to be overlap that occurs between the controls, one of the controls will always hide (at least part of) the other.If I put a Windows menustrip in the same place, it behaves as expected and both controls coexist.  The radmenu looks like it is doing what is expected in design mode, but is completely covered/hidden at runtime. Putting the radmenu on a radpanel (that is set up to autosize/grow/shrink to its content) results in the panel shrinking down to zero 0 size (in the designer).  Is there a specific way to dock the menu with AutoSize enabled so the menu doesn't get overpowered by another docking control? 
Ivan Todorov
Telerik team
 answered on 18 Apr 2011
3 answers
187 views
I tried to uninstall RadControl for Winforms Q1 2008 SP1, but came up with this error message: "error 1325. VS2005P UBASM is not a valid short file name". I am runing Vista, Visual Studio 2008. Can anyone help?
Stefan
Telerik team
 answered on 18 Apr 2011
1 answer
181 views
I am looking for information on the exepriences of other users with regard to automation testing application using telerik controls.

I see that telerik does not support the UI Automation object included in the Microsoft .NET 3.5 framework.  How have other users approached this issue?  Has anyone used Accesibility successfully for this purpose?  Are there any other approaches? 

Thank you for your time and your response.

Peter
Telerik team
 answered on 18 Apr 2011
5 answers
305 views
Hi,

I need to add a combobox to the ribbon bar, and a label next to it @ the same time. But, I only manage to add ComboBox but not the label. May I know how?

Thanks.
Martin Vasilev
Telerik team
 answered on 18 Apr 2011
4 answers
462 views
Hi,
I have created a radiobutton control that inherits from RadRadioButton.
The problem I have is when I drop the control in a standard System.Windows.Forms.TabPage, the control doesn't keep the same background color of the TabPage. The operating system theme I'm using is Windows XP.
I attach an image that show the problem.
In the pic the part with white background is the TabPage, while the part with grey backcolor is the standard form.

It seems telerik RadControls doesn't care if the property TabPage.UseVisualStyleBackColor is true.
 
Thanks for any help

Alcide
Stefan
Telerik team
 answered on 18 Apr 2011
3 answers
158 views
Hello,

im trying to give the border of a row a custom color. I tried everything - but the border on the bottom and on the top does not change ( the border between 2 rows)

Here is my current RowFormatting Event
void _radGV_RowFormatting(object sender, RowFormattingEventArgs e)
{
    e.RowElement.BorderBoxStyle = BorderBoxStyle.SingleBorder;
    e.RowElement.BorderGradientStyle = GradientStyles.Solid;
 
    if (e.RowElement.IsCurrent)
    {
        System.Drawing.Color c = System.Drawing.Color.LightBlue;
 
        e.RowElement.BackColor = c;
        e.RowElement.BackColor2 = c;
        e.RowElement.BackColor3 = c;
        e.RowElement.BackColor4 = c;
 
        e.RowElement.GradientStyle = GradientStyles.Solid;
        e.RowElement.BorderColor = c;
        e.RowElement.BorderColor2 = c;
        e.RowElement.BorderColor3 = c;
        e.RowElement.BorderColor4 = c;
    }
}

Attached is a picture if my description was a little bit unclear.

I would be very happy if someone knows where my problem or mistake is.

Greetings,
Raimund

//edit .. just noticed that i spelled "separator" wrong
Raimund
Top achievements
Rank 1
 answered on 16 Apr 2011
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
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
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
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
Licensing
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?