While dragging rows using the RadDragDropService between the rows a line is shown which indicates the the dropping position.
Is there a simple way to get the same behavior by OLE drag and drop?
Hi
Can you tell me how to hide the Close (X) button on a floating window?
I can hide the minimize and maximize buttons but not the close button.
As a workaround I tried to cancel the FloatingWindowClosing event with 'e:Cancel = true' but it stills closes.
Thanks
Tung
Hi,
i would like to override the hottracking's color of my rows in runtime.
Can i use the SetThemeValueOverride method and how to do this ?
thanks
Hi,
I am using a drop down button on the command bar. The number of main menu items unknown in advance, it depends on the number of year of records are stored in the local database. On each main menu item, there are fixed amount of submenu items representing 12 months of a year as shown in the attached image.
My question is how can I know a user has pressed the submenu item from its corresponding parent? Let's say user pressed the submenu item 'January' from the the main menu item '2017', hence, I can show each record stored in the database related to January not January 2016 or January 2018 and vice versa.
I have these line of codes in my application which me to detech which month a user has click a subitem. I just can't figuer out how to detech the click is from which parten..
menuItem[j].Items[m].Click += WonderingRecordsForm_MouseDown;
RadMenuItem clickedMenuItem = (RadMenuItem) sender;
Console.WriteLine(clickedMenuItem.Text);
Hi, I have a problem with a document, here is what it's going on:
I copy some text from MS Word (THIS TEXT HAS SOME BULLETS) and paste it to the richtexteditor, then I save the content of the document into the database, in a byte array field (this I do it with RTFFORMATPROVIDER).
RtfFormatProvider rtf =
new
RtfFormatProvider();<br>
string
rtfS = rtf.Export(rtfEditor.Document);<br>
byte
[] bytes = System.Text.Encoding.Default.GetBytes(rtfS);
Next when I want to show in another screen the document I saved, I show it with RTFFORMATPROVIDER, here what it happens is that I lost the format of the bullets, the bullets are still there but they have a different size and family.
<p>
byte
[] _doc;</p><p>String eTexto = System.Text.Encoding.Default.GetString(_doc);</p><p>RtfFormatProvider rtf =
new
RtfFormatProvider();<br> rtfEditor.Document = rtf.Import(eTexto);</p>
I know that this is probably because of the way I save the document since the one in MS Word is in .DOC format, and I am saving it in .RTF format.
What I need, is that to find all bullets after the richTextEditor.Import, so I can set the family and size that I want(which is always the same one, TimesNewRoman Size10).
Is there a way to achieve this?
Thanks in advanced.
How can this be done without looping over all the appointments in the appointments collection? Is there a method like "GetAppointmentsInRange"?
Thanks.