Telerik Forums
UI for WinForms Forum
3 answers
127 views
When we new up a DocuemntSpellChecker it loads several of our binaries into memory and we don't know why?

We create one like this:

DocumentSpellChecker sp = new DocumentSpellChecker();

As soon as we hit that code all of the binaries that are using a control with a DocumentSpellChecker are loaded into memory. This causes problems because we do a check on those binaries later in the app when we attempt to load a form from them. We check if the binary is up to date and if not replace it. We can't do that, however, because the documentSpellChecker has already loaded them into memory.

Any ideas?
Julian Benkov
Telerik team
 answered on 16 Jan 2013
4 answers
237 views
Hi,
I've got a grid with 22 columns, I want to be able to show the columns with a horizontal scroll bar,
so I've set autosizecolumnmode to 'none' and used 'bestfitcolumns' method.

the problem is that all the content got corrupted and is not showing properly (I've attached a screenshot to this thread),

even when I don't use the 'bestfitcolumns' method the content is corrupted (only when I set 'autosizecolumnmode' to 'fill' the content shows right - but then I can't use the horizontal scroll bar)

how can I achieve the desired result?

Plamen
Telerik team
 answered on 16 Jan 2013
1 answer
142 views
Hello Team
i used Gridview excel export to some xxxx.xls , Export is done, but instead of exporting the gridview columns to excel columns, it is exporting everything to one single excel column, is there any setting to be done with the gridview,

Can you please help me

my Code is

var exporter = new ExportToExcelML(this.radgridview1);
               
                string fileName = "C:\\ACDV.xls";   
                exporter.SheetName = "Sheet";
                exporter.SheetMaxRows = ExcelMaxRows._65536 ;      
                exporter.RunExport(fileName);

the same export function to .csv is working fine, but the data is coming in enclosed quotes, which exported to database table showing data in enclosed quotes something like

"1"  "2.5"  "3"  "5"  "6"
"2"  "7.1"  "0"  "6"  "7"

i need data without enclosed quotes, there is an option in ajax gridview with option enclosedquotes=true/false but in winforms rad gridview there is no such option , please help me in achieving either of one method stated above

Regards
Lakshmi
               

Ivan Petrov
Telerik team
 answered on 16 Jan 2013
5 answers
139 views
Hi,

I attached an image of the top left corner of my app. I have a round image which i use as StartButtonImage.
However, the background is disturbing me. How can i remove it?

Best regards,
Darko
Ivan Petrov
Telerik team
 answered on 16 Jan 2013
9 answers
554 views
I've tried following the documentation at http://www.telerik.com/help/winforms/vsb_thememanagerloadresource.html to find a solution to thie following problem, but without any luck, so I hope someone can help.

I have a MyTheme.xml file, which I've added to Resources and set Build action to Embedded Resource.

I use the radThemeManager to load it, and I've tried loading it both as file and as resource, but I experience problems in both cases.

If I load the theme as a file, I get an error at startup, but it looks like the theme is applied correctly to my controls.

If I load the theme as a resource, I don't get the error, but the theme is not applied correctly, and my controls have weird shapes and colours. This only appear at run time, at design time everything looks fine.

I suspect there is something wrong in my theme location. My UserContol project is in a namespace called MyCompany.MyControls. Is the name of the theme location 
        MyCompany.MyContols.MyUserControl.MyTheme.xml
or     MyCompany.MyContols.MyTheme.xml
or something else?

In which folder do I place the MyTheme.xml file? Does it matter, as long as it is added as a resource?

Thank you!

Regards, Jill-Connie Lorentsen
   
Nikolay
Telerik team
 answered on 16 Jan 2013
3 answers
319 views
I am using a multicolumncombobox inside a datagridview. I would like to set a filter on the combobox so that when the user types a letter, the combobox filters the available options.

Is this possible?
Plamen
Telerik team
 answered on 16 Jan 2013
1 answer
123 views
I am trying to get my Expander control to appear on top of my Windows Forms Host on my main page and have the Windows Forms Host Fill all remaining area.

However, the Expander appears to the side of it, not on top.  

Here is, basically, what I have so far.  I left out the extra stuff.

   
<telerik:RadDockPanel x:Name="LaunchScreenDockPanel" LastChildFill="True">
        <telerik:RadExpander x:Name="UserInfo" ExpandDirection="Up" IsExpanded="True"></telerik:RadExpander>
        <WindowsFormsHost HorizontalAlignment="Stretch" Name="windowsFormsHost1" VerticalAlignment="Stretch" >          
            <wincontrols:RadPanorama x:Name="LaunchPadPanorama" Size="200,400" RowsCount="2" MinimumColumns="2" ShowGroups="True" Dock="Fill">
George
Telerik team
 answered on 15 Jan 2013
1 answer
101 views
Umm im almost sure that this is not supposed to happen 

There is a section above the top of the time periods on the scheduler

You can drag an appointment to this section of the scheduler?
The times for the appointment are reset when this happens and the save well seems to be happy that it is still an appointment object.

Can this be disabled, as im sure the users are gona do this just for fun to get me.... :(

Ivan Petrov
Telerik team
 answered on 15 Jan 2013
4 answers
243 views
Hello,
   I am using RADScheduler Q3-2012 and find the text color of the resource headers hard to read on the dark background when grouped. I found the code to change the color of the header on timeline view in this forum(thanks) and figured out how to change day, week and month but I would also like to change the header that shows the name of the weekdays in monthview since that is also too dark to read when grouped.
Any help in how to address these colors would be greatly appreciated.
Here is what I have so far: 
Private Sub adjustGroupHeader()
    If RadScheduler1.GroupType = GroupType.Resource And RadScheduler1.ActiveViewType = SchedulerViewType.Timeline Then
        Dim element As TimelineGroupingByResourcesElement = TryCast(Me.RadScheduler1.SchedulerElement.ViewElement, TimelineGroupingByResourcesElement)
        element.Font = New Font("Arial", 22)
        element.ForeColor = Color.Yellow
    End If
    If RadScheduler1.GroupType = GroupType.Resource And RadScheduler1.ActiveViewType = SchedulerViewType.Day Then
        Dim element As SchedulerDayViewGroupedByResourceElement = TryCast(Me.RadScheduler1.SchedulerElement.ViewElement, SchedulerDayViewGroupedByResourceElement)
        element.Font = New Font("Arial", 16)
        element.ForeColor = Color.Yellow
    End If
    If RadScheduler1.GroupType = GroupType.Resource And RadScheduler1.ActiveViewType = SchedulerViewType.Week Then
        Dim element As SchedulerDayViewGroupedByResourceElement = TryCast(Me.RadScheduler1.SchedulerElement.ViewElement, SchedulerDayViewGroupedByResourceElement)
        element.Font = New Font("Arial", 16)
        element.ForeColor = Color.Yellow
    End If
    If RadScheduler1.GroupType = GroupType.Resource And RadScheduler1.ActiveViewType = SchedulerViewType.Month Then
        Dim element As SchedulerMonthViewGroupedByResourceElement = TryCast(Me.RadScheduler1.SchedulerElement.ViewElement, SchedulerMonthViewGroupedByResourceElement)
        element.Font = New Font("Arial", 16)
        element.ForeColor = Color.Yellow
        'code needed to change forecolor/backcolor of weekday names
    End If
End Sub
Stephen
Top achievements
Rank 1
 answered on 15 Jan 2013
2 answers
150 views
Hi,

I have downloaded the Winforms Controls Trial.

Where can I find the examples?

Thanks.
Stefan
Telerik team
 answered on 15 Jan 2013
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
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
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?