Telerik Forums
UI for WinForms Forum
1 answer
97 views
is it just me or is this missing? when i click on it from the online manual overview.. it goes back to the first page.
Victor
Telerik team
 answered on 26 May 2009
1 answer
125 views
Is there a way I can make an update to the Default Vista theme? 

forgive me if this is a dumb question. I am new at this. 

I have made some nice changes to the drop down button element for the toolstrip that goes nicely with the toolstripbutton element and I wanted that scheme applied whenever adding more dropdownbuttonelements to the toolstrip. 

Thanks!

Nikolay
Telerik team
 answered on 25 May 2009
3 answers
145 views
Is there any eta or plans for the Aqua and Desert themes on the ribbonbar ?

I find the ribbonbar is pretty much a staple part of the interface for some time now and while I really
like both themes , I am unable to use either on any form I use a ribbonbar on as it is impossible
to provide unity across the form with them.

Pretty much all our apps allow the user to set what theme they want to use but since the desert
and aqua theme releases we are still unable to supply them as options because of this 1 missing component
theme.

Also , while the breeze theme is still relatively new , will that be receiving a ribbonbar style soon ?
I realise themes are a last priority but without ribbonbar theming , a theme has limitations on a form.
Vassil Petev
Telerik team
 answered on 25 May 2009
7 answers
572 views
More information:  I found the problem to be when the radTextbox is set to multiline.  It works for a single line, but multiline set to true causes it to not display anything. 
----------------------------------------------------------------------------------------------------------------------------------------
I have the following line of code which works for a standard Windows textbox, but not for a radTextbox, which sets DataBindings at run-time (via a business object):

radTxtDesc.DataBindings.Add(

"Text", this.ProTemp.Elements, "Desc");

I do not get an error at runtime, but the radTextbox shows nothing.  I even set the NullText property, but it doesn't show up either.   I am using the textbox within the new DataRepeater ItemTemplate which is part of the Visual Basic Powerpack 3.0.  And as mentioned, the standard windows textbox works, but I really would like to be able to use the radTextbox instead of standard Windows textbox due to the extra features the radTextbox has which I really need.  Any thoughts?

 

 

Nikolay
Telerik team
 answered on 25 May 2009
1 answer
234 views
Is there a simple way of making a simple dropdown combo- or listbox in the StatusStrip control? 

Thank you in advance.
Peter
Telerik team
 answered on 25 May 2009
3 answers
156 views
I apologize if I am missing something obvious but, I would like to have an individual cell change its backcolor when the mouse is over it not the entire row.  How can I do this with the theme builder or in the cellformatting event?

Thank you
Deyan
Telerik team
 answered on 25 May 2009
1 answer
160 views
Hello there,

I  am using "Radgridview export to excel" feature,  by ExcelML method....

My alignment of the grid columns is not exported the xml/excel file format.

Which means if a column in grid say "ContactName" is Left aligned then in the excel file it is exported to as right aligned..

I am exporting the grid with Visualsettings as TRUE flag, my grid theme is still exported but alignment is getting altered.

Please send me response at savan@i2m.com.au; sorry for the trouble but there is no option for Email-ID updation in Account Settings, Which I reckon because email-Id is the login ID.

Quick response shall be appreciated.

Many Thanks in advance.........
Savan
savan@i2m.com.au
Martin Vasilev
Telerik team
 answered on 25 May 2009
1 answer
221 views

HI,

I am using VS2008/C#/XP proffesional win application with MS Access DB.

I not sure what version i want to download to work perfectly(i have downloaded Telerik DLLs from Telerik site "RadControls for WinForms Q3 2008 SP2.zip".


I am getting lots of problem in RadScheduler control for winform integration. I have downloaded some samply aplication in Telerik site but its giving error.

 

Can anybody please guide me what is the problem in below code.

Error List:

  • I am not able to get the “Resource” propertly in appointmentMappingInfo
  • If I comment below 5 lines means its working but recurrence part will not work

          //appointmentMappingInfo.Resources = "Appointments_AppointmentsResources";

            //appointmentMappingInfo.ResourceId = "ResourceID";

         //appointmentMappingInfo.RecurrenceRule = "RecurrenceRule";

 

ResourceMappingInfo resourceMappingInfo = new ResourceMappingInfo();

            //resourceMappingInfo.Id = "ID";

         //resourceMappingInfo.Name = "ResourceName";

 

I am getting error like “Object reference not set to an instance of an object”.

 

 

 

 

CODE

 

private void BindToDataSet()

        {

            if (this.schedulerDataSet == null)

            {

                this.schedulerDataSet = new SchedulerDataDataSet();

 

                AppointmentsTableAdapter appointmentsAdapter = new AppointmentsTableAdapter();

                appointmentsAdapter.Fill(this.schedulerDataSet.Appointments);

 

                ResourcesTableAdapter resourcesAdapter = new ResourcesTableAdapter();

                resourcesAdapter.Fill(this.schedulerDataSet.Resources);

 

                AppointmentsResourcesTableAdapter appointmentsResourcesAdapter = new AppointmentsResourcesTableAdapter();

                appointmentsResourcesAdapter.Fill(this.schedulerDataSet.AppointmentsResources);

            }

 

            SchedulerBindingDataSource dataSource = new SchedulerBindingDataSource();

            AppointmentMappingInfo appointmentMappingInfo = new AppointmentMappingInfo();

            appointmentMappingInfo.Start = "Start";

            appointmentMappingInfo.End = "End";

            appointmentMappingInfo.Summary = "Summary";

            appointmentMappingInfo.Description = "Description";

            appointmentMappingInfo.Location = "Location";

            appointmentMappingInfo.BackgroundId = "BackgroundID";

            appointmentMappingInfo.StatusId = "StatusID";

            appointmentMappingInfo.Resource = "Appointments_AppointmentsResources";

            appointmentMappingInfo.ResourceId = "ResourceID";

            appointmentMappingInfo.RecurrenceRule = "RecurrenceRule";

 

            dataSource.EventProvider.Mapping = appointmentMappingInfo;

            dataSource.EventProvider.DataSource = this.schedulerDataSet.Appointments;

 

            ResourceMappingInfo resourceMappingInfo = new ResourceMappingInfo();

            resourceMappingInfo.Id = "ID";

            resourceMappingInfo.Name = "ResourceName";

 

            dataSource.ResourceProvider.Mapping = resourceMappingInfo;

            dataSource.ResourceProvider.DataSource = this.schedulerDataSet.Resources;

 

            this.radSchedulerDemo.DataSource = dataSource;

}

 

 

 

 

Can anybody please provide the code for saving scheduler appointment,resource and recurrence in MS Access DB?

Below code I have used but not able to get or save the recurrence details.

 

CODE

 

private void btnSave_Click(object sender, EventArgs e)

        {

            AppointmentsTableAdapter appointmentsAdapter = new AppointmentsTableAdapter();

            appointmentsAdapter.Update(this.schedulerDataSet.Appointments);

 

            AppointmentsResourcesTableAdapter appointmentsResourcesAdapter = new AppointmentsResourcesTableAdapter();

            appointmentsResourcesAdapter.Update(this.schedulerDataSet.AppointmentsResources);

        }

 

 

 

 

Yesterday I got email from Telerik team and they are telling like I need to download new version of sample application. So Can Anybody please send me the sample working(Appointment,recurrence) application to me? Or Tell me the URL where exactly I want to go for download that samply working application

 

 

Awaiting your reaply….

 

Advance thanks

Mahesh

Jordan
Telerik team
 answered on 21 May 2009
1 answer
230 views
HI,
Need Help :)

I am doing the RADscheduler integration with one of my Win application using VS2008/C#.
Below is my code for Bind the scheduler data.
***************************************************************************************************************************
CODE:

 

private void BindToDataSet()

 

{

 

if (this.schedulerDataSet == null)

 

{

 

this.schedulerDataSet = new SchedulerDataDataSet();

 

 

 

AppointmentsTableAdapter appointmentsAdapter = new AppointmentsTableAdapter();

 

appointmentsAdapter.Fill(

this.schedulerDataSet.Appointments);

 

 

ResourcesTableAdapter resourcesAdapter = new ResourcesTableAdapter();

 

resourcesAdapter.Fill(

this.schedulerDataSet.Resources);

 

 

 

AppointmentsResourcesTableAdapter appointmentsResourcesAdapter = new AppointmentsResourcesTableAdapter();

 

appointmentsResourcesAdapter.Fill(

this.schedulerDataSet.AppointmentsResources);

 

}

 

SchedulerBindingDataSource dataSource = new SchedulerBindingDataSource();

 

 

 

 

 

AppointmentMappingInfo appointmentMappingInfo = new AppointmentMappingInfo();

 

appointmentMappingInfo.Start =

"Start";

 

appointmentMappingInfo.End =

"End";

 

appointmentMappingInfo.Summary =

"Summary";

 

appointmentMappingInfo.Description =

"Description";

 

appointmentMappingInfo.Location =

"Location";

 

appointmentMappingInfo.BackgroundId =

"BackgroundID";

 

appointmentMappingInfo.StatusId =

"StatusID";

 

appointmentMappingInfo.Resources =

"Appointments_AppointmentsResources";

 

appointmentMappingInfo.ResourceId =

"ResourceID";

 

appointmentMappingInfo.RecurrenceRule =

"RecurrenceRule";

 

dataSource.EventProvider.Mapping = appointmentMappingInfo;

dataSource.EventProvider.DataSource =

this.schedulerDataSet.Appointments;

 

 

ResourceMappingInfo resourceMappingInfo = new ResourceMappingInfo();

 

resourceMappingInfo.Id =

"ID";

 

resourceMappingInfo.Name =

"ResourceName";

 

dataSource.ResourceProvider.Mapping = resourceMappingInfo;

dataSource.ResourceProvider.DataSource =

this.schedulerDataSet.Resources;

 

 

this.radSchedulerDemo.DataSource = dataSource;

 

}

**************************************************************************************************************
In this above code, i am not able to get the "Resources" property in "appointmentMappingInfo" (appointmentMappingInfo.? not comming). But i can get all other properties except "Resources" property.

I have declared the all namespace like
**************************************************************************************************************

using

System;

 

using

System.Collections.Generic;

 

using

System.ComponentModel;

 

using

System.Drawing;

 

using

System.Data;

 

using

System.Text;

 

using

System.Windows.Forms;

 

using

Telerik.WinControls.UI;

 

using

Telerik.WinControls;

 

using

Telerik.WinControls.Enumerations;

 

using

RadSchedulerBinding.SchedulerDataDataSetTableAdapters;

 


********************************************************************************************
Can anybody help me on this issue?
Advance Thanks
Mahesh

Jordan
Telerik team
 answered on 21 May 2009
2 answers
193 views
What is the easy way to do this with the scheduler? Anyone have a sample project or any ideas on how to go about this? 

I want an "alert" to go out about 15 minutes before the start of the appointment...

an email to be sent out or even a msgbox pop up. it can even be at the time of the appointment. 

I am sure i am making this problem harder than it has to be. 

TwoLaJit
Top achievements
Rank 2
 answered on 21 May 2009
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)
Chart (obsolete as of Q1 2013)
Form
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
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?