Telerik Forums
UI for WinForms Forum
2 answers
157 views

hi, 

Is there a way to use html on the text on a RadPageViewPage (explorerBar mode).

I want the first part of the text in black,the end in red.

Thanks

OD
Top achievements
Rank 1
 answered on 28 Oct 2015
1 answer
1.0K+ views

Hello,

I open the window containing RadGridView as follows:

new System.Threading.Thread(delegate () {

  FormReports FormReports = new FormReports();
  FormReports.ShowDialog();
}).Start();

When trying to copy data from the grid (right click -> copy) error message pops up:

An unhandled exception of type 'System.Threading.ThreadStateException' occurred in System.Windows.Forms.dll
 
Additional information: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.

In this case I can't avoid new thread when calling new form.

How to solve it?​

 


new System.Threading.Thread(delegate () { 
  FormReports FormReports = new FormReports();
  FormReports.ShowDialog();
}).Start();
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Oct 2015
3 answers
115 views

Hi, I am currently using the trial version of Telerik Winform and I would like a code example on how to aggregate cells in my gridview with the following two examples.

 Example1:

1997     a                                           a

1997     b  ->  becomes  ->   1997     b

1997     c                                            c

 Where 1997 becomes a vertical aggregate field.

Example2:

1997     1997     1997 ->               1997

a            b           c               a          b          c

Where 1997 becomes a horizontal aggregate field

Hristo
Telerik team
 answered on 28 Oct 2015
1 answer
150 views
// Use the following code can only show the Html file, how to display the web page?
 
private void radListViewMarketBase_CellCreating(object sender, ListViewCellElementCreatingEventArgs e)
{
    var cell = e.CellElement as DetailListViewDataCellElement;
    if (cell != null && cell.Data.Name == "SN")
    {
        e.CellElement = new CustomDetailListViewDataCellElement(cell.RowElement, e.CellElement.Data);
    }
}
public class CustomDetailListViewDataCellElement : DetailListViewDataCellElement
{
    // private RadButtonElement _button;
    private RadWebBrowserElement webBrowserElement;
    public CustomDetailListViewDataCellElement(DetailListViewVisualItem owner, ListViewDetailColumn column) : base(owner, column)
    {
    }
    protected override void CreateChildElements()
    {
        base.CreateChildElements();
        // this._button = new RadButtonElement();
        // this.Children.Add(this._button);
        this.webBrowserElement = new RadWebBrowserElement
        {
            WebBrowserItem = { Url = new Uri(string.Format("http://www.abc.com.cn/include/map.shtml?d=10&code=000111")) },
        };
        this.Children.Add(this.webBrowserElement);
    }
    protected override Type ThemeEffectiveType
    {
        get { return typeof(DetailListViewHeaderCellElement); }
    }
    public override void Synchronize()
    {
        base.Synchronize();
        this.Text = "";
        // var rowView = this.Row.DataBoundItem as DataRowView;
        // if (rowView != null)
        //     this._button.Text = rowView.Row["序号"].ToString();
        // else
        //     this._button.Text = @"222";
    }
    public override bool IsCompatible(ListViewDetailColumn data, object context)
    {
        return data.Name == "SN" && base.IsCompatible(data, context);
    }
}

Dimitar
Telerik team
 answered on 28 Oct 2015
3 answers
105 views

We have a problem using the radDock.LoadFromXml() and radDock.SaveToXml() functionality. This is the case:

 1. We created an application some time ago, version 1.0. This application uses radDock.LoadFromXml() and radDock.SaveToXml() to save and restore the window settings.

2. We added new windows to this application in version 2.0.

3. People do use the original application (next to the new one) though, resulting in showing windows that do not exist in version 1.0 (!)

Is there a way to repair this? I know I can save and load the settings in a different file, but I am looking for a better solution (since we will have more new versions of our application).

 

Dimitar
Telerik team
 answered on 27 Oct 2015
4 answers
267 views

using this code  part to exclude summaryRows from Search loop. 

#code

public class SearchRow : GridViewSearchRowInfo
{
    public SearchRow(GridViewInfo viewInfo) : base(viewInfo)
    {
    }
 
    protected override bool MatchesSearchCriteria(string searchCriteria, GridViewRowInfo row, GridViewColumn col)
    {
        if (row is GridViewSummaryRowInfo)
        {
            return false;
        }
        return base.MatchesSearchCriteria(searchCriteria, row, col);
    }
}
 
private void radGridView1_CreateRowInfo(object sender, GridViewCreateRowInfoEventArgs e)
{
    if (e.RowInfo is GridViewSearchRowInfo)
    {
        e.RowInfo = new SearchRow(e.ViewInfo);
    }
}

#code

And now i cant itterate through search results, i can only choose the first one and the last one​.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Oct 2015
2 answers
196 views

I have problem when using currentrowchanging event,

 when first load the grid, when I change the row,, the event fire correctly, this is my event,

buf after sorting or grouping it appear not correct.....

this is the condition

1.  when I click the row in index 4  (ID = ROM and name = ROMA VATIKAN), buf after sorting the column country name, when I click the index   4  (ID = ​ALS and name = ALASKA),  the value is still (ID = ROM and name = ROMA VATIKAN) not  (ID = ​ALS and name = ALASKA)... how to get value ID = "ALS" in index for,, look for the attachment image (grid after order by.png)

2. when I click the row in index 1  (ID = ​BGR and name = ​BOGOR), buf after grouping the column country name, when I click the value  (ID = ​​ROM and name = ​ROMA VATIKAN),  the value is still (ID = ​BGR and name = ​BOGOR) not  (ID = ROM and name = ROM VATIKAN) cause it refer into index = 1... how to get value ID = "ROM" in index for,, look for the attachment image (grid after grouping.png)

this is my currenrowchanging event

  void gridData_CurrentRowChanging(object sender, CurrentRowChangingEventArgs e)
        {
            if (gridData.RowCount != 0)
            {
                int rowindex = 0;

                if (e.NewRow == null)
                {
                    ClearData();
                    return;
                }

                rowindex = e.NewRow.Index;
                //}

                txtID.Text = gridData.Rows[rowindex].Cells["ID"].Value.ToString();
                txtName.Text = gridData.Rows[rowindex].Cells["Name"].Value.ToString();
                cmbCountryID.Text = gridData.Rows[rowindex].Cells["CountryID"].Value.ToString();
                cmbCountryName.Text = gridData.Rows[rowindex].Cells["CountryName"].Value.ToString();

                if (gridData.Rows[rowindex].Cells["ActiveStatus"].Value.ToString() == "1")
                {
                    rbYes.IsChecked = true;
                }
                else
                {
                    rbNo.IsChecked = true;
                }
            }
        }

 


 
 
 
 
 
 
 
 
 
Adi
Top achievements
Rank 1
 answered on 27 Oct 2015
1 answer
284 views

Hello everyone,

We are using the RadRichTextEditor as a document creation tool for our users. Once the document is created, we export it to PDF using the standard pdf export provider. The issue here is that fonts used in the RadDocument do not get embedded into the PDF file.

I've already contacted support about this and a feedback item has been created, but we are really left dead in the water without the ability to embed fonts (since our clients often view the pdf on mobile devices). Has anyone found a workaround to this?

More detail here:

http://feedback.telerik.com/Project/154/Feedback/Details/171787-fix-radrichtexteditor-custom-fonts-are-not-embedded-to-the-exported-file-when

 ​

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Oct 2015
0 answers
52 views

Hello Telerik

I have a question about "Multicolumncobobox" I need to know is it possible to add a "RadLable" to multicolumncomboox?

because most of the time I need to show display member and value member of the Multicolumncombobox to users.so I decided to make a custom multicolumn

which has a lable to show value member.I have attached an image that shows what I exactly need.

please help me to make this custom multicolumn combo box

I'm waiting eagerly for your response

Mahsan
Top achievements
Rank 1
 asked on 26 Oct 2015
1 answer
136 views

Hello!

I have a problem that i need to generate an image from a radial gauge and then send it by e-mail as an attachment.

I don't know how to achieve this, is there something else i can work on? Since i have only seen the way of saving in xml format.

Stefan
Telerik team
 answered on 26 Oct 2015
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
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
VirtualKeyboard
DataLayout
Licensing
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
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?