I'm exporting/importing my appointments using the iCal import/export.
It appears that the resource is not saved as part of that? So basically I lose all resources in all appointments. Any suggestions as a work around, other than saving the resource data elsewhere?
private void frmMapping_Load(object sender, EventArgs e)
{
string cacheFolder = @"..\..\cache";
bingProvider.UseSession = true;
bingProvider.BingKey = "MyKey";
LocalFileCacheProvider cache = new LocalFileCacheProvider(cacheFolder);
bingProvider.CacheProvider = cache;
bingProvider.ImagerySet = Telerik.WinControls.UI.Map.Bing.ImagerySet.Road;
this.radMap1.Providers.Add(bingProvider);
PointG racheer = new PointG(38.595592, -90.429629);
MapPin racheerPin = new MapPin(racheer);
racheerPin.Text = "Right Here Man!!!";
racheerPin.BackColor = Color.AliceBlue;
Hi,
I am using a RadGridView in a window .
I am using RadDropDownListEditor for editing one of the cells in the column that has one element as list.
I want it to be able to set as empty on editingBut the change isn't persisting when I provide empty string.
According to the documentation, the change only persists when we select one of the other items in the list.
Is there any way I can set it as blank on providing empty string.
Hi Telerik team
I just use the radganttview replacing our old GanttOCX. I have a question about links between tasks. We don't want to use links.
Is it possible that links are invisible in the GanttViewGraphicalviewElement ?
Thanks in advance for your answer.
Hi ,
I am using a RadGridView along with a button in a Form window. When button is clicked , it shows some hidden rows in RadGridView.
I want the hidden rows to be showed when the Form window is maximized.
How do I go on about doing this?
This is how I am trying it:
If Me.WindowState =2 Then
'Raise an event here
thanks.
Hi.
I wonder if it is possible to put the video in a shape, like a circle. I also want to know if it is possible to hide all the controls at the bottom.?
Regards
Hi,
I am using Telerik UI for Winforms 2020 to create a grid and when I hit the maximize button on title bar, the grid remains the same size but the window maximizes , like the attachment below.
How can I make sure that the Grid uses the full size of window on maximizing ?
Hi,
I want to enable drop shadow for the floating windows in RadDock. I tried the below code but it didn't work.
window.RootElement.EnableElementShadow = true;
window.RootElement.ShadowColor = Color.GreenYellow;
window.RootElement.ShadowDepth = 10;
Is there a way to enable it?
Thanks