Telerik Forums
UI for WinForms Forum
1 answer
170 views
Hello everyone ,

I am trying to select a line series (NOT A POINT) using the mouse .In fact I want to create two cursor to show the distance of two points by using two line series .  These  cursors should be dragged and moved by the mouse , something like select the line first , and the drag it to other position. I don't know how to select the line. 
I have found something like that but it's for Rad Chart not for ChartView.
http://blogs.telerik.com/automated-testing-tools/posts/09-10-01/draggable-series-items-in-radchart-for-winforms

Can some one tell me how to do that ?

Thanks a  lot.


George
Telerik team
 answered on 02 Jun 2014
1 answer
217 views
Hi...
I have downloaded the Telerik UI for WinForms, and then Try to install it on my machine.

But Installation Setup Doesn't DETECT the Visual Studio Extension for Visual C# and VB.NET (Express Edition)

Why this happens...???

I have Registered Copy of Visual Studio Express Edition for 2010 & 2008

I have attached the Screenshot of Installation Setup.
Yana
Telerik team
 answered on 02 Jun 2014
5 answers
79 views
Hi I have a friend looked at the trail version and now we have a question to the panorama .

We have DemoHub 2-3 creates new tile and these assigned with Row and Column . Then we have saved with a button click event the values ​​of each Radtileelement in the registry .
example:
RegistryKey name = ( Radtileelement.Name )
Value ( group = GroupName )
Value ( row = Radtileelement.row )
Value (Column = Radtileelement.Column )

Now we want to read the registry and then adjust the RadTileElements so with the values ​​of the registry when starting the Winforms .

e.g.
 For Each item As RadTileElement In radPanorama1.Items
                    If item.Name RegistryKey = Name Then
                        item.Column = Column
                        item.Row = row
                    end If
                Next

Unfortunately we did not get it back .

PS: The aim should be that each user as he has relocated with a button we write it in his tile the regedit and then the positions are taken when starting saved it .


Sorry for my bad English
Dimitar
Telerik team
 answered on 02 Jun 2014
3 answers
248 views
Hey I have recently installed Telerik UI for WinForm, I have used the Chart control of Visual Studio just fine using this code on FormLoad, It is working fine and I am attaching screenshots:

            DataSet dataSet;
            ConnectionClass.GetInstance().connection_string = Properties.Settings.Default.MindMuscleConnectionString;
            ConnectionClass.GetInstance().Sql = "Select Count(MemberInfo.memberName) as 'Members', CompetitionName as 'Competition' FROM MemberInfo, MemberBodyInfo, Competition WHERE MemberInfo.memberID = MemberBodyInfo.memberID AND MemberBodyInfo.weight >= Competition.CompetitionCategory and MemberBodyInfo.weight <= Competition.CompetitionCategory + 5 group by CompetitionName;";
            dataSet = ConnectionClass.GetInstance().GetConnection;
            chart1.Series["Series1"].Name = "Members";
            chart1.Series["Members"].YValueMembers = "Members";
            chart1.Series["Members"].XValueMember = "Competition";

            this.chart1.Titles.Add("Competition Participants");   // Set the chart title
            chart1.Series["Members"].ChartType = SeriesChartType.Pie;
            chart1.Series["Members"].IsValueShownAsLabel = true;  // To show chart value 
            chart1.DataSource = dataSet;
            chart1.DataBind();
I can not do the same thing on Telerik ChartView. How can I do this ? So far I have tried setting the datasource and datamember and got this so far... 

Please help





Stefan
Telerik team
 answered on 02 Jun 2014
1 answer
84 views
Hi,

I just wonder whether it would be directly possible to have certains rows not exported based on a condition I set or whether I need to exclude them manually.

Ueli
Stefan
Telerik team
 answered on 31 May 2014
1 answer
107 views

Hi,

I am wondering if the Teleric gridview supports paging by fetching the data from a web service each time the page index is changed.

I have tried to enable paging in the gridview but it seems that the gridview applies pagination on the data that has been set as the datasource.

Is there a way to achieve remote paging in the Teleric gridview, since I don't want all the data in memory at once?

Regards,
Arfan Baig
Ivan Petrov
Telerik team
 answered on 30 May 2014
6 answers
127 views
I've read all the Methods, Properties, etc. and have now given up.

How do I "force" the AutoCompleteBox to process the last remaining text in the text box as if the user had actually typed in a ";" at the end.  Specifically, when loosing focus, my users are not always entering in the delimiter ";" that then causes the control to tokenize the last word(s) they entered into the control.  On loss of focus, I would like to see if there is any non-tokenized text in the control and then process/tokenize it.

I have tried hacking around by sending the control a ";" via SendKeys.Send(";") but that simply did not work (it was a horrible hack anyway).  Any great ideas would be appreciated.

Dimitar
Telerik team
 answered on 30 May 2014
2 answers
195 views
  1. Step 1:  I created the CustomAppointment.

     
      public class CustomAppointment : Appointment, IDisposable
        {
            public CustomAppointment();      
            public string  Birthday      
            public string Dr_id       
            public string Dr_name           
            public int EventID      
            public string User_id     
            public string User_name      
            public void Dispose();
            protected virtual void Dispose(bool disposing);
        }


    Step 2:  I created the list<CustomAppointment>to read data from Visual FoxProDB.

     
    Setp3:  I added list<CustomAppointment>to schedule.Appointment.addRange.
     

    Question:  How to improve the performance when list<CustomAppointment>
    added to schedule.addRange?


       
    private void bindRadSchedule1(stringstrStartDay, string strEndDay, int intDutyIndex, string[] strFirstDuty, string[]strSecondDuty, string[] strLastDuty)
            {
                try
                {
                    List<CustomAppointment> liCustomAppointments = new List<CustomAppointment>();
     
             switch (intDutyIndex)
                    {
                        case 1:                       
                            liCustomAppointments =reloadAppointUsers(hidden_dr_id.Text.ToString().Trim(), strStartDay,strEndDay, strFirstDuty[0].ToString().PadLeft(2, '0'), strFirstDuty[1].ToString().PadLeft(2, '0'));
                            break;                
                        default:                       
                            liCustomAppointments = reloadAppointUsers(hidden_dr_id.Text.ToString().Trim(),strStartDay, strEndDay, "", "");
                            break;
                    }
     
                    this.radScheduler1.Appointments.Clear();               

                    radScheduler1.Appointments.AddRange(liCustomAppointments.ToArray());  
      
                    dtHoilday =boundAppointmentObj.listDoctorOffTime(hidden_dr_id.Text.Trim(), strStartDay,strEndDay);               
                    radScheduler1.SchedulerElement.Refresh();
                }
                catch (Exception ex)
                {
                     writeObj.writeToFile(DateTime.Today.ToString("yyyyMMdd") + "_scheduleError", Directory.GetCurrentDirectory(),
                    "bindRadSchedule1  函式錯誤  輸入參數區間" + strStartDay + "~" + strEndDay + "班別" + intDutyIndex + " 錯誤訊息" + ex.Message);
                }
            }




     
Cooper
Top achievements
Rank 1
 answered on 30 May 2014
6 answers
399 views
If the current row is a childrow, how do you get a value of a cell of its parentrow?
thanks
karl
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 29 May 2014
1 answer
197 views
After binding MultiColumnComboBox, SelectedValueChanged excute.
But if i try to select (using keyboard or mouse) the First record which is on the Top (index 0) SelectedValueChanged doesnt work.
Then i tried to select the 2nd record and SelectedValueChanged runs. and try to select the 1st record again and SelectedValueChanged runs.

Please check this scenario.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 29 May 2014
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?