Telerik Forums
UI for WinForms Forum
7 answers
484 views
Hi,

I need to place a checkbox in a header of a gridviewcheckboxcolumn of radgridview. for obvious reason. how can i do it in rad gridview?

Thanks
Trinh
Top achievements
Rank 1
 answered on 09 Oct 2012
3 answers
780 views
I installed the ASP.NET AJAX, Windows Forms, Reporting and OpenAccess ORM on my laptop that already had Visual Studio 2010 installed.  I recently installed Visual Studio 2012.  When I launch VS2010, I see Telerik project types as an option for getting started, but I don't see those in VS2012.  I assume that I need to add the VS extensions, but how?  When I look in C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q2 2012 SP1\VSExtensions, I have a directory for VS2008 and for VS2012. 

How do I update VS2012 to also have these project types and to update the toolbox accordingly?

Thank you!
Chavdar Dimitrov
Telerik team
 answered on 09 Oct 2012
2 answers
209 views
Hi.
I encounter with problem for RadDropDownList, with DropDownStyle = DropDownList.
I'm trying to select first element by typing first letter of the element in active control, but it don't work. It works for other elements in list, except first.

Is there any solution for this problem?
Michael
Top achievements
Rank 1
 answered on 09 Oct 2012
1 answer
155 views

I want to drag an ui element from another part of the screen to only the selected row of a gridview. The workflow is that use selects one row on the gridview (row multiselection is disabled) and then drags something on that row.
So only if the mouse cursor is on top of the selected row the cursor should change to DragDropEffects.Link. Any other row, column header, filter header, grouping are etc. should show DragDropEffects.None. I also want to change the row border od the selected row ro green color if possible to indicate that this drop is allowed.

Then I have some business logic to with the AddressBase object in the gridviewinfo.tag of the selected row and the data in the DragEventArgs. So far I have managed to do this in the grid's DragOver event handler. But how do I check that the element at mouse location is within the border of the selected row.

private void PersonMailingGridOnDragOver(object sender, DragEventArgs e)
{
 Point location = PersonMailingGrid.PointToClient(new Point(e.X, e.Y));

 GridDataCellElement element = PersonMailingGrid.ElementTree.GetElementAtPoint(location) as GridDataCellElement;
 
 // check that the element is inside the selected row
 
 if (element != null && !(element is GridFilterCheckBoxCellElement))
 {
  AddressEventArgs data = (AddressEventArgs)e.Data.GetData(typeof(AddressEventArgs));
  AddressBase dragAddress = data.Address;
  AddressBase rowAddress = element.GridViewElement.CurrentRow.Tag as AddressBase;

  _lastDragElement = element.GridViewElement;
  _lastDragElementBackColor = element.RowElement.BackColor;

  if (rowAddress != null && rowAddress.AddressContactType == dragAddress.AddressContactType)
  {
   e.Effect = DragDropEffects.Link;
   element.RowElement.BackColor = _dragStateBorderColourAllowed;
  }
  else
  {
   e.Effect = DragDropEffects.None;
   element.RowElement.BackColor = _dragStateBorderColourNotAllowed;
  }
 }
}

 

 

Svett
Telerik team
 answered on 08 Oct 2012
1 answer
100 views
Hello,

This week we migrated our software from Visual Studio 2008 to 2010. We have a treeview (few places) and it contains an imagelist. Which worked perfectly in VS2008. But now in VS2010 the images are gone and we go back to the basic view with the + and - before a node.

We did not change anything but our own images are not shown anymore. We did not upgrade our Telerik DLL or anything. Just migrated to 2010.

We hope anyone knows a solution.

Thanks,

Niels den Otter
Jack
Telerik team
 answered on 08 Oct 2012
1 answer
318 views
Q1 2012
VS 2010

The following snippet does not run.

private void HightlightText(string textToHighlight)
{
    DocumentTextSearch search = new DocumentTextSearch(this.radRichTextBox.Document);
    foreach (var textRange in search.FindAll(textToHighlight))
    {
        this.radRichTextBox.Document.Selection.AddSelectionStart(textRange.StartPosition);
        this.radRichTextBox.Document.Selection.AddSelectionStart(textRange.EndPosition);
        this.radRichTextBox.ChangeTextHighlightColor(Color.Red);
    }
}


How can I highlight with red color all the occurrences of the text?

Tommaso
Svett
Telerik team
 answered on 08 Oct 2012
1 answer
106 views
I am trying to install my vs2010 windows program on a user's computer.  I have enabled the app to copy over the bin files but I still get a dependency error during installation.  The app also complains about versions.  When I try to install it on a user's computer, I get the following installer error:

http://screencast.com/t/1MEpc4Tr8PQ9

Please assist.
Stefan
Telerik team
 answered on 08 Oct 2012
2 answers
199 views
hello
I use messagebox and set the Rtl=Yes,the text message language is in persian or arabic,then
I want to change the font of messagebox  so I use html in message text
(RadMessageBox.Show(this, "<html><font=Tahoma>سلام دوست من</html>", "title",
            MessageBoxButtons.OK, RadMessageIcon.Info, MessageBoxDefaultButton.Button1, RightToLeft.Yes);)
but when the messagebox is showDialog the Text is  displayed in reverse.
for example i write "سلام دوست من" in textmessage but its shown "من دوست سلام" .
please help me to solve this problem.

Behin
Top achievements
Rank 1
 answered on 06 Oct 2012
1 answer
109 views
Hi

We have a self referencing hierarchical radgrid and would like to make it easier for our users to use it in our application.

Currently we have the following set which crams all the columns into the current view:

grid.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;

What we'd like to do is to change this parameter to GridViewAutoSizeColumnsMode.None and allow the user to scroll horizontally but to still keep the hierarchy on the left visible (i.e. freeze the left most column).  Is there a way to do this?

Thanks
Clinton Smyth
Top achievements
Rank 1
 answered on 05 Oct 2012
2 answers
140 views
Hi Telerik team, I working with RadPageView in strip view mode. I this mode the button More show the tooltip “Add New Page”. How I can change this tooltip by another? For example “Add  new playlist” . Thank you ahead of time and sorry for my English
Miguel
Top achievements
Rank 1
 answered on 05 Oct 2012
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
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?