Questions tagged [componentone]

ComponentOne, a division of GrapeCity, provide customers with the premier studio of innovative UI controls, tools, and solutions including deep functionality reporting, analysis, and spreadsheet platforms. Develop rich Windows Forms, WPF, ASP.NET, MVC, Silverlight, Windows Phone, Mobile, or ActiveX applications.

ComponentOne, a division of GrapeCity, has been providing the widest range of Microsoft Visual Studio components, IDE platform development tools, and applications. This includes ComponentOne Studio Enterprise, which represents a broad and complete set of tools and solutions for Microsoft Windows, Web, and Mobile application developers. ComponentOne has continued leadership in the Microsoft Visual Studio component industry and is a premiere partner of Microsoft.

Please note: Questions with this tag include issues/walkthrough/queries regarding UI controls, libraries and tools produced under the banner of ComponentOne:

  1. Studio For WinForms
  2. Studio For WPF
  3. Studio For ASP.NET Wijmo
  4. Studio For IPhone
  5. Studio For SilverLight
  6. Studio For Windows Phone
  7. Studio For WinRT XAML
  8. Studio For LightSwitch
  9. Studio For ActiveX 10.Studio For SharePoint 11.Active Reports 12.Active Analysis

Related Tags on StackOverFlow are :

214 questions
1
vote
2 answers

ComponentOne WinRT finding route on map

I would like to ask how to show routes on my map using WinRT ComponentOne map. I am no able to show map and connect the points together by lines but lines are not following the routes. It shows only a straight line between points. Does anybody have…
1
vote
2 answers

ComponentOne MVC Flexgrid Databinding

I have a Flexgrid on a page. I want to do some custom filtering. I created a Filter ActonResult. In it I have created the filtered dataset. How do I send the data back to the page? If I return a view I don't get any updated data. Is there a way…
kereberos
  • 1,253
  • 1
  • 10
  • 20
1
vote
1 answer

Apply behaviour to WPF DataGrid Row

I'd like to attach a behaviour to a (Component One) data grid row. The problem is: I can't get to the DataContext of the actual row. In the style my data context is the data grid.. how can I get to the row's data context?
cacau
  • 3,606
  • 3
  • 21
  • 42
1
vote
2 answers

drag drop in c1datgrid from desktop

I have an application in silverlight 5. I use c1datagrid in our application. I want to drag and drop items from Desktop to our c1datagrid rows and while doing that I want to highlight that particular row in which I am dropping.
Pushpendra
  • 1,694
  • 14
  • 27
1
vote
1 answer

C1HierarchicalDataTemplate / C1TreeView Problem

I've a problem building up a ComponentOne TreeView in Silverlight (C1TreeView) with a C1HierarchicalDataTemplate. In detail the Tree only shows 2 levels (H1 and H2), although 3 levels are defined through HierarchicalDataTemplates…
1
vote
0 answers

Enable scroll when user scroll by placing finger on richtextbox in winrt phone application

I have a page with too many richtext boxes and when scrolling if user place his finger on top of rtb form doesn't scroll, user has to place his finger on empty place. Is there any possible way to stop that behavior? I am working on a winrt universal…
1
vote
2 answers

Hyperlink C1Flexgrid Column Data in silverlight

I am using Component one FlexGrid in my silverlight Application and it is autogenerating columns in the grid. I want to make one of the column's data behave as a clickable hyperlink. Any help on this problem would be greatly appreciated.
Pushpendra
  • 1,694
  • 14
  • 27
1
vote
1 answer

C1TrueDbGrid / how to find column and row index at point?

I need to handle some behaviour requiring to identify the grid's row and column index for a given point on the screen (like mouse coordinates). Given a System.Drawing.Point corresponding to mouse coordinates, how can I retrieve the grid's row and…
1
vote
2 answers

List of Windows in vb.net application

I have an MDI application where I'm trying to get a list of open windows for a ComponentOne Ribbon Menu. Using VB .NET. I have this sub for instantiating a new child form within the MDI container: Private Sub newButton_Click(sender As Object, e As…
Andy
  • 616
  • 11
  • 32
1
vote
1 answer

Save PDF to Isolated Storage and retrieve Windows Phone app

I want to save PDF file to the Isolated Storage of Windows Phone and retrive it from Isolated Storage and show it in Windows phone app screen, not use launcher. So as per Google result I found link and as specified on the link I followed the steps…
Aditya Patil
  • 146
  • 9
1
vote
0 answers

How to restrict adding duplicate item in VB6

I have an application written in VB6. This application contain a file with snippet containing a foreach loop. In this loop a method is adding controls to a section (section is a region in report). I am trying to implement a functionality where: when…
Amit Kumar
  • 1,059
  • 3
  • 22
  • 43
1
vote
1 answer

How can I adjust the area into which e.Graphics will be drawing (viewport)?

I am using PrintDocument.Print() to start a print process, in which I print a data grid (C1FlexGrid) and some header and footer information. It's a somewhat complicated printing process. I'm using standard PrintDocument methods but because of what…
DonBoitnott
  • 10,787
  • 6
  • 49
  • 68
1
vote
1 answer

C1FlexGrid - How to update grid from BindingSource when underlying IEnumerable changes values

I have the following POCO object: internal class StationEntity : INotifyPropertyChanged { private int _id; private string _stationType; private string _stationName; [Obfuscation(Exclude = true)] public int ID { …
Payton Byrd
  • 956
  • 1
  • 12
  • 27
1
vote
2 answers

Moving the column of RenderTable

I have a renderTable and I am adding rows and columns to the table as follows- RenderTable renderTable = new RenderTable(); DataTable dt = GetData(); foreach (DataRow row in dt.Rows) { var header =…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
1
vote
1 answer

combobox's value item(checkbox) checkstate is neutral,how to correct it?

I am using component one's C1Combobox for filling products. This ComboBox contains 3 columns namely productid,product,select. The select column contains value item checkbox which is used to select products. My problem is after filling this…
user3462653