ComponentOne FlexGrid for .NET - Support

by ComponentOne - Product Type: Component / .NET WinForms / 100% Managed Code

Support Forum

ComponentOne FlexGrid for .NET ck5317 [India] 02-Aug-2008 13:48:23

Hi friends,
i m using C1 FlexGrid, i want to update the entire row without any looping in vb.net
can any1 help me
Reply


ComponentOne FlexGrid for .NET congnghiakhiem [Viet Nam] 01-Aug-2008 09:02:51

When I assign a List for flexgrid's datasource,
eg: grid.DataSource=list;
I can update, delete on the grid, but I can't add a new row on it.
I have already set grid.AllowAddNew=true
Reply


ComponentOne FlexGrid for .NET mafpinedo [Spain] 15-Jul-2008 13:17:53

Hello, i'm having a trouble with C1FlexGrid, and i dont find a easy solution.

I´ve a Panel with a C1FlexGrid, and the problem is that, when i set in the properties of the screen in XP, choose appearance, and after set the Color Scheme to Silver, then the background of the FlexGrid becomes Black!
I would like to know if is an easy way to solve this and make the background White as in normal way (Color Scheme = Default(Blue)).

I have uploaded some pictures to make you able to see what I mean.

picasaweb.google.com/mafpinedo/C1FlexGrid


Thanks a lot.
Regards.
Miguel Angel
Reply


ComponentOne FlexGrid for .NET David 18-Jan-2008 10:53:11

Can anyone tell me if there is a limit to the number of cells that can be displayed in a Flexgrid 8.0 object?

A report displaying 60 columns and more than 25,000 rows hangs IE at 100%, any idea if i'm hitting a limit?

Thanks!
Reply

RE: ComponentOne FlexGrid for .NET cemu [Turkey] 26-Mar-2008 13:03:46

Cols * Rows <= 350000
Reply


FlexGrid .NET-grab the double click on the + sign cicimici [United Kingdom] 26-Oct-2007 11:13:29

Is it possible to grab the double click event on the "+" sign where i have row with at least one child row?
Thanks
Reply

RE: FlexGrid .NET-grab the double click on... cicimici [United Kingdom] 26-Oct-2007 13:01:16

Found it:

flexGrid.HitTest(Mouse.X, MouseY) == HitTestEnum.OutlineTree.
Reply


ComponentOne FlexGrid for .NET c1flexgrid [USA] 17-Oct-2007 01:38:10

Questions on speed and events.
I am using a vb2003 environment
It takes ~ 30sec to load a 41000 grid from csv using .LoadGrid(m_fileName, C1.Win.C1FlexGrid.FileFormatEnum.TextComma, True)
but it takes ~9min to load the same file iterating nd adding a row using
Dim rc As C1.Win.C1FlexGrid.RowCollection = fgResults.Rows
Dim newRow As C1.Win.C1FlexGrid.Row
newRow = rc.Add()
looping through each row in the grid, is there a quicker way to do this?

Alsoif I use the loadgrid method is there a way to receive working events so I can update the GUI whilst the data is being loaded?

Regards
C1FlexGrid User
Reply

RE: ComponentOne FlexGrid for .NET kapadiatrushar [India] 28-Aug-2008 09:28:16

you can use data table as a datasource of the grid
example
dim dt as a datatable = new datatable
dt.columns.add("name",gettype(string)
...........
..........
then bind it to grid
grid.datasource=dt

then add csv values to dt, while adding simply say
grid.redraw=false
and after adding loop completes, re-enable redraw
grid.redraw=true

you will get very good performance
Reply


cannot see ComponentOne FlexGrid for .NET in toolb jim.hynan [Ireland] 01-Oct-2007 12:34:10

Hi,
I'm using vb.net 2003, framework 1.1 and my problem is view the flexGrid control in the toolbox in visual studio.
I've created a new project and added a reference from solution explorer to the C1.common AND C1.Win.C1FlexGrid control. However there is no icon in the toolbox for the flexgrid.
Interestingly if I click add/remove from the toolbox itself I can see many references to C1 components including Truegrid but no reference to the flexgrid.
Ideas appreciated !
Jim
Reply

RE: cannot see ComponentOne FlexGrid for .... jim.hynan [Ireland] 01-Oct-2007 14:41:12

RESOLVED OK Deinstalled, rebooted, installed, rebooted Now Works beautifully :)
Reply


ComponentOne FlexGrid for .NET Deva [Singapore] 25-Sep-2007 07:37:34

Hi,

I have a flex grid bound to a datasource. One of the data columns is custom type and so when I edit this column on the flex grid the data being set is string.
How can I ensure that the underlying data is being set with the correct type ?
Reply


ComponentOne FlexGrid for .NET zac [USA] 17-Sep-2007 23:16:49

Does FlexGrid support images in a Column header?
Reply


ComponentOne FlexGrid for .NET kieron.flynn [United Kingdom] 03-Sep-2007 10:50:50

HI there,

I'm working on some bug fixes to some code that uses the FlexGrid. I am new to the control and have a very simple question which is hopefully very easy to answer.

The column headings are all built in runtime from meta data but they are not displaying as I would wish. The problem is some headings are quite long (i.e. Gross Premium Share written) so they need to be split over more than one line in the header. This it is doing but it is putting too much padding from the left and right of the text to the cloumn grid line.

Even though there is adequate space if I make the column width even slightly smaller then the text goes to another line. I've tried setting the .HeadingStyle.Padding to zero but it still seems to be 'padded'.

Any ideas
Many Thanks
Kieron Flynn
Reply

RE: ComponentOne FlexGrid for .NET kieron.flynn [United Kingdom] 03-Sep-2007 11:01:41

Apologies, I am using the TrueDBGrid, not the Flex Grid....
Reply


ComponentOne FlexGrid for .NET matthew.mark.ctr [USA] 16-Aug-2007 17:57:30

Using C#.
After setting datasource of flexgrid[fg]:
fg.datasource = ds.Tables[0];

After Changing value in one row, ds.HasChanged() value does not register.

If you change values on more than one row, it registers a change has occured.

My data is getting corrupted due to this mess.

Anyone know how to fix this?
Reply


ComponentOne FlexGrid for .NET charu.palia [India] 23-Jul-2007 06:52:37

Hi All

I want to ask something about the save functionality of the flexgrid..I ve data already binded with my flex. Now if i edit one row or add a new row to my flex with some data and want to save only that particular row or a particular column in which the change was made..can i do that...instead of reading the flexgrid data from top to bottom irrespective of the fact that the change was made in that particular cell or a new was added or not.

Please reply ASAP!!

Thanks & Regards
Charu
Reply


ComponentOne FlexGrid for .NET MKokoska [USA] 20-Jun-2007 14:29:16

I am currently developing a solution using the C1 flex grid for .net, I’ve been working in J# up until this point.
As a part of the usage of my flex grid I need to update visually the information in some of the cells frequently (several times a second).
Currently I am using
theFlexGrid.set_Item(inputRow,inputColumn,DataString)
In order to set the information each time.

What I observe is that if I comment out this line, the screen does not update and memory usage stays stable. However, if I have this line, additional memory appears to be allocated each time. I have notice though that it only appears to use more if the value in DataString is different then the current value in the cell.

I think I am correct to say this is the cause of my memory issue, is there something you recommend to explicitly release the memory in question, or is there a different call I should be using to set the visual contents of the cell that is more memory usage friendly?

Thanks
Reply


ComponentOne FlexGrid for .NET rpsharma [India] 12-Dec-2006 05:56:37

Hi,

I have a query regarding the Checkbox functionality in Flexgrid. The flexgrid gives us the checkbox functionality only at column level, not at cell level. Now, my query is that, i want to show few cells, in a column, with check boxes in them and few cells, in same column, without any checkbox or checkbox with greyout functionality(so that they appears like non-editable). Is it possible in flexgrid (in any version)? please help me out as it is very important requirement. Thanks in advance.
Reply

RE: ComponentOne FlexGrid for .NET vanisree_anilkumar [India] 04-Jan-2007 09:35:53

i wish to use flexgrid control in vb.net project, how can it link to sql table and entering values
pls give me instructions
Reply

RE: ComponentOne FlexGrid for .NET vanisree_anilkumar [India] 04-Jan-2007 09:36:18

i wish to use flexgrid control in vb.net project, how can it link to sql table and entering values
pls give me instructions
Reply

RE: ComponentOne FlexGrid for .NET vanisree_anilkumar [India] 04-Jan-2007 09:36:43

i wish to use flexgrid control in vb.net project, how can it link to sql table and entering values
pls give me instructions
Reply

RE: ComponentOne FlexGrid for .NET vanisree_anilkumar [India] 04-Jan-2007 09:37:08

i wish to use flexgrid control in vb.net project, how can it link to sql table and entering values
pls give me instructions
Reply

RE: ComponentOne FlexGrid for .NET vanisree_anilkumar [India] 04-Jan-2007 09:37:32

i wish to use flexgrid control in vb.net project, how can it link to sql table and entering values
pls give me instructions
Reply

RE: ComponentOne FlexGrid for .NET byoungdo [Korea, Republic Of] 02-Sep-2008 08:28:07

.
Reply


ComponentOne FlexGrid for .NET - FlexGroup Control rohitsethi007 [United Kingdom] 08-Dec-2006 16:03:24

Hi,

I've got a question on the Flexgroup control.

I want to change the color of the Rows based on the values of some column within the row. Everytime i group the grid by a column, the color stlye's are no longer applicable. Is there an event which is raised when i group by a column so that i can again apply the row settings!

Thanks
Rohit
Reply


ComponentOne FlexGrid for VB6 viveksingh44 [India] 27-Nov-2006 11:52:32

I would like to know how can I use the subtotal method of the flexgrid in VB6 to show negative values? It shows the negative values when the tree is expanded, but does not when it is collapsed. Is there any property in the grid I can set?
Reply

RE: ComponentOne FlexGrid for VB6 support [USA] 18-Dec-2006 16:35:14

Hello,

Please try an updated build of VSFlexGrid, which you can find here prerelease.componentone.com/activex/C1FlexGrid/C1FlexGrid%208.0/ (no www). Click on the link that corresponds to the latest trimester version that you are entitled to under your subscription, and download the latest build listed. If this does not help, you should contact ComponentOne support for assistance at support@componentone.com.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET viveksingh44 [India] 27-Nov-2006 11:52:08

I would like to know how can I use the subtotal method of the flexgrid in VB6 to show negative values? It shows the negative values when the tree is expanded, but does not when it is collapsed. Is there any property in the grid I can set?
Reply


ComponentOne FlexGrid for .NET karl.tittley [United Kingdom] 14-Nov-2006 14:03:05

I have two questions, I am using VB.NET (Visual Studio 2005 ).

1st Question, I am currently adding rows of data for a datagridview and need a sort option to sort numbers but the automatic sorting does not sort the column data correctly, if I have data in columns 1,2.24.3.35. This is how it sorts the data and not in numerical order. Does this flexgird sort correctly?

2nd Question, there does not seem to be an option to buy this component for the first time in .NET the options are for newals or upgrades, how can I buy this for .NET

Many Thanks
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 18-Dec-2006 16:26:46

Hello Karl,

1st Question, I am currently adding rows of data for a datagridview and need a sort option to sort numbers but the automatic sorting does not sort the column data correctly, if I have data in columns 1,2.24.3.35. This is how it sorts the data and not in numerical order. Does this flexgird sort correctly?
--Set the DataType of the column to a numeric format. If you do that, it will sort in numeric order. For example:

Column c = fg.Cols["Sales"];
c.DataType = typeof(Decimal);


2nd Question, there does not seem to be an option to buy this component for the first time in .NET the options are for newals or upgrades, how can I buy this for .NET
--There is an explanation in the ComponentOne FlexGrid for .NET "Pricing & Licensing" section, just click the link to the section above and read after the red text "*Important Notice". ComponentOne no longer sells individual products, only the Studio Enterprise suite, which includes all of our products. There should be a link to the ComponentOne Studio Enterprise page in the Quick Links nav panel to the left of this page.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET liam.mayo [United Kingdom] 21-Oct-2006 23:52:55

I have the flexgrid for .NET 2003, and i am having trouble getting the MANUAL DRAGDROP to work. If i set it to automatic i get the drop to work but on manual i can't seem to drop anything on the control it gives me the no drop sign. Anybody have ani ideas on what i need to do.

Thanks
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 04-Dec-2006 15:03:27

Hello,

There is a sample, DragImages, which should have been installed with your FlexGrid for .NET. If it is not installed on your computer, you can download it and other samples here helpcentral.componentone.com/Samples.aspx (no www). The DragMode in this sample is set to automatic, but the DropMode is set to manual in this sample. There is another sample that demonstrates manual drag and drop, DragRow, which should be installed already but you can download this from the above address also.

To do a manual drag, drag operations must be handled in the DoDragDrop event. If the DropMode is set to manual, you can handle dropping manually through the DragOver and DragDrop events.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


C1FlexGrid.SaveExcel dake.zhou [Singapore] 02-Oct-2006 04:52:26

I was trying to use C1FlexGrid.SaveExcel to save my grid data to an Excel file. When opening the generated file in MS Excel 2002/03, I keep getting the following error: "File Error: Some formatting may have been lost". We have a few columns which is supposed to display data in red colour when they are negative values, and this does not happen to some cells (i.e. negative values displayed in black colour). There might be other problems but that is what I could tell immediately was wrong.

A few points that might help address the problem:
1- We use OwnerDrawCell to paint the grids, the above-mentioned conditional formatting is done in OwnerDrawCell event handler, among other things.
2- The resulting Excel file could contain multiple wroksheets. The one I tested on had 6.
3- Each worksheet could contain a few hundreds of rows, with less than 30 columns.

Thanks.
Reply

RE: C1FlexGrid.SaveExcel support [USA] 12-Oct-2006 15:10:44

Hello,

Please try the latest build, available on prerelease.componentone.com, and see if that helps. If you continue to have problems, you can email ComponentOne support at support@componentone.com.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET virtualizer 27-Sep-2006 10:46:34

Regarding the support flexgrid has for embedding treeviews/group-by functionality in columns:

1. Is this embedded treeview improved over the Windows Forms treeview?

2. If so, does it support displaying images for some nodes but not for others? (A known limitation of the existing Windows Forms treeview).

3. Finally, does the treeview expose expand/collapse events, as I need to be able to change formatting style for a given node depending on whether it's expanded or collapsed.

Thanks very much!
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 12-Oct-2006 14:43:19

Hello,

1) Is this embedded treeview improved over the Windows Forms treeview?
Yes, you can add images to certain nodes or all of them. You can also add a custom editor to a tree column, like you can for a normal FlexGrid column. For example:
flex.Cols(1).Editor = comboBox1;

2) If so, does it support displaying images for some nodes but not for others? (A known limitation of the existing Windows Forms treeview).
Yes. For example if you want to only set an image for the first row of the FlexGrid Tree:
flex.Rows(1).Node.Image = System.Drawing.Image.FromFile("app.ico")

3) Finally, does the treeview expose expand/collapse events, as I need to be able to change formatting style for a given node depending on whether it's expanded or collapsed.
There are collapse events, BeforeCollapse and AfterCollapse.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET todd.peterson [USA] 31-Jul-2006 19:28:21

How do I get a checkbox to display a true or false value in a flexgrid if the grid is not editable?
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 02-Aug-2006 14:47:57

Hello Todd,

The FlexGrid will automatically display Boolean values as checkboxes, even if the grid is not editable. There is a checkbox sample that installs with FlexGrid, TriStateBound, that you can take a look at as an example.


-Suelinda
Reply


ComponentOne FlexGrid for .NET swapnilsays [India] 27-Jun-2006 11:54:43

Need to have column with two controls inside the cell. the first one is Combo and second one is Button.

Need the solution for this
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 19-Jul-2006 14:18:03

Hello,

It looks like you can only have one or the other, because even if you set an external editor through the Editor property and set a button, the external editor takes precedence and will be the only one to show up. Please contact ComponentOne support at support@componentone.com to see if there is a work around.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply

RE: ComponentOne FlexGrid for .NET vahagnahapetyan [Armenia] 25-Sep-2007 11:04:02

aaa
Reply


ComponentOne FlexGrid for .NET drewj_98 [USA] 05-Jun-2006 20:32:49

I want the user to be able to move rows up or down in the flex grid by clicking on up and down arrow buttons. I cannot figure out how to do this seemingly simple task.
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 18-Jul-2006 21:23:27

Hello Drew,

You would use the Move method of c1FlexGrid1.Rows to move a row to another position. The move method accepts the index of the row to be moved and the index of the row's new position, like this c1FlexGrid1.Rows.Move(MoveThisRow, ToThatPosition). You could call this in the event handler for your up button and down button. For example, to move the current row up and down with two buttons:

//Move row DOWN
private void button1_Click(object sender, System.EventArgs e)
{
if (c1FlexGrid1.Row + 1 <= c1FlexGrid1.Rows.Count - 1)
{
//Moves the current row down one
c1FlexGrid1.Rows.Move(c1FlexGrid1.Row, c1FlexGrid1.Row + 1);
}
}

//Move row UP
private void button2_Click(object sender, System.EventArgs e)
{
if (c1FlexGrid1.Row - 1 >= 1)
{
//Moves the current row up one
c1FlexGrid1.Rows.Move(c1FlexGrid1.Row, c1FlexGrid1.Row - 1);
}
}

The if statements prevent the row from being moved to a row that does not exist. An error will result if you move to a row that does not exist.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply

RE: RE: ComponentOne FlexGrid for .NET tuanpm3000 [Viet Nam] 04-Apr-2007 05:12:22

I have trying your code in VB.NET
But i received an error message : "cannot insert external object to this list"
Can you help me.
Thanks for support
Reply

RE: RE: RE: ComponentOne FlexGrid for .NET 23-May-2008 07:02:15

If you use follow method to show data ,You will received the error message : "cannot insert external object to this list" When you move rows

Dim dt As DataTable = New DataTable("testdata")

dt.Columns.Add("aaa", System.Type.GetType("System.Int32"))
dt.Columns.Add("bbb", System.Type.GetType("System.String"))
dt.Columns.Add("ccc", System.Type.GetType("System.String"))

Dim dr As DataRow = dt.NewRow()
dr(0) = 1
dr(1) = "aaa"
dr(2) = "1"
dt.Rows.Add(dr)

C1FlexGrid1.DataSource = dt

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''''''''follow method is right

C1FlexGrid1.Rows.Count = 10
C1FlexGrid1.Cols.Count = 10

C1FlexGrid1(1, 1) = 1
C1FlexGrid1(1, 2) = 1
C1FlexGrid1(1, 3) = "aaa"

C1FlexGrid1(2, 1) = 2
C1FlexGrid1(2, 2) = 2
C1FlexGrid1(2, 3) = "bbb"

C1FlexGrid1(3, 1) = 3
C1FlexGrid1(3, 2) = 3
C1FlexGrid1(3, 3) = "ccc"
Reply


ComponentOne FlexGrid for .NET clark7476 [Philippines] 03-May-2006 05:29:10

Hi, I would like to ask if there is a limit to the number of rows that the Flexgrid can have, if there are no limits, how can i set the maximum number of rows?
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 18-Jul-2006 20:21:12

Hello Clark,

There is no limit to the number of rows that the FlexGrid can have. If you would like to limit the number of rows, assuming that you want to prevent an end user from adding too many rows, you can check to see if your limit has been released in the AftertEdit event and cancel the editing if it has. For example:

private void C1FlexGrid1_AfterEdit(object sender, C1.Win.C1FlexGrid.RowColEventArgs e)
{
int RowLimit;
RowLimit = 5;
if (e.Row >= RowLimit)
{
c1FlexGrid1.AllowAddNew = false;
e.Cancel = true;
}
}


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply

RE: RE: ComponentOne FlexGrid for .NET XZ[USA] 10-Oct-2006 21:07:11

Is there a limit on the number of columns in FlexGrid? My program crashes after 175 columns.

Error message:
Description: "Exception from HRESULT: 0x800A7536."
Erl: 0
HelpContext: 0
HelpFile: ""
LastDllError: 0
Number: 30006
Source: "Interop.MSFlexGridLib"

Thanks.
Reply

RE: RE: RE: ComponentOne FlexGri... cemu [Turkey] 26-Mar-2008 13:00:54

i also have the same problem.
Maximum row * col = Cell count is 350.000

try

grd.col = 1
grd.row = 350000
--> No error

grd.col = 1
grd.row = 350001
--> ERROR.
Reply


ComponentOne FlexGrid for .NET problems! JT [Canada] 08-Mar-2006 17:02:12

Hello,

I am currently developing an application using VB .NET (Visual Studio 2003). I was using the evaluation FlexGrid for the development process, but now the time has come for me to distribute the application.

This morning, I purchased the FlexGrid for .NET, and installed it.

Now, when I try to open ANY form that has the FlexGrid on it, in runtime, I get an error: "File or assembly name C1.Win.C1FlexGrid, or one of its dependencies, was not found."

HELP!

I should also point out that the grid installation worked flawlessly, and when I open a form in design mode, I can see the grid with no problems. I can even use the C1FlexGrid Column Editor, etc with no problems. I am not getting the "Evaluation Copy" nag screen anymore.

Jess
Reply

RE: ComponentOne FlexGrid for .NET problems! jtakken21 [Canada] 23-Mar-2006 20:38:07

This was actually not difficult to fix, once I figured out what I needed to do.

Basically I removed all of the C1 (grid) references from my VB .NET application, saved the Solution, closed it and re-opened it. At this point, all of my forms were gridless since there was no grid reference.

I simply re-added the references, saved & re-opened the Solution again, and everything worked fine.

Jess
Reply

RE: RE: ComponentOne FlexGrid for .NET pro... support [USA] 03-Apr-2006 16:30:11

Hello Jess,

I am happy to hear that you were able to resolve the issue. Typically though, that message will pop up if C1.Common is missing from your list of references. Some of our controls, such as FlexGrid, use C1.Common in addition to the main control dll. It should be added automatically when you add the FlexGrid control to your form though. If you see the problem in the future, try adding the reference to C1.Common first. To add the C1.Common reference manually, please follow these steps:

1) Right-Click on the References file in your project explorer, and select "Add Reference"
2) Browse to C:\Program Files\ComponentOne Studio.NET\bin and select "C1.Common.dll" from the file list. Click OK.
3) Now, the reference C1.Common should exist. Rebuild and run your project.

If this does not work, repeat the steps for the C1.Win.C1FlexGrid.dll and see if that takes care of it. I apologize for the inconvenience of your reference problem.


Suelinda Webster
Customer Engagement, ComponentOne LLC
Reply


Unmaned code in Visual Studio .NET shashas [Botswana] 15-Aug-2005 11:10:13

does it support unmanaged code using c++ in visual studio .NET.

becouse now FlexGrid Pro 8.0 supports only to Visual Studio 6.0. And FlexGrid for .NET already uses 100 proc. pure Managed code (as i read in your site).

The problems is that i'm using visual studio 7.0 ide and unmaged c++. And now i have no support for this situation witch ever version i buy. now i have 8.0 but when i had problems (it crashes time to time) i was anwsered that 8.0 was not tested using my configuration.

any solutions for this situation?maybe upgrades solved this problem? (as i said it crashes unpredictably so i can't test by myself)

thank's.
Reply


ComponentOne FlexGrid for .NET savinpaul [USA] 27-Jul-2005 14:29:06

I installed the renewal and it is behaving like I installed the evaluation. I have a serial number but for some reason I can't seem to find how to register it again. Looking for some sort of instructions, but have found nothing.
Reply


ComponentOne FlexGrid for .NET mcupryk [Canada] 10-Jul-2005 07:31:17

When I am selecting a row on the datagrid I was double clicking before and then my application was taking me to an edit form. Now when I single click it takes me to the edit form right away. Any suggestions Thanks.
I am using 2004 Components
Reply


ComponentOne FlexGrid for .NET yesrajeshind [India] 07-Apr-2005 06:18:56

We came to know that FlexGrid of ComponentOne has the feature to contain in a cell a custom control that implements the interface IC1EmbeddedEditor (contained in the C1Common.dll).
But is there any samples or piece of code to implement this by placing dotnet textbox in the Flexgrid?

Please provide us the sample or mail to yesrajeshind@yahoo.com.
Reply


ComponentOne FlexGrid for .NET din_wwf2000 [Pakistan] 02-Sep-2004 09:14:25

i want to add CheckBox in FlexGrid' particular column, while FG contain values retrived from database and also want to make selection on the basis of CheckBox. I can place checkBoxes by setting the datatype of column as Boolean but when i reterived data from database it does't show checkBox column. If i place checkBoxes using "SetCellCheck" function then i can't track which row of grid is Checked or Unchecked.

Please responde me as soon as possible.
din_wwf2000@yahoo.com
Reply

RE: ComponentOne FlexGrid for .NET scucj [China] 21-May-2007 12:54:55

nothing
Reply


ComponentOne FlexGrid for .NET cr2000 [USA] 20-Jul-2004 17:27:39

Hi,
I want to set a image in Component Flexgrid control particular column,, Any body can help me in that?
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 04-Aug-2004 16:19:18

You can use the ImageMap property of the FlexGrid to set images for a particular column. You can use the property to assign certain pictures to cells according to their data. Do a search for ImageMap in the FlexGrid.NET help file for more information. Is this what you want to do?


Suelinda W
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET bjornsarah [Belgium] 20-Jul-2004 17:27:39

Hello,


I'm experimenting with the Flexgrid.

I want just to group a query in my Flexgrid.
This is my datamodel :

table Clients :
ClientId
ClientName
ClientCatId

table Categories :
CatId
CatName

I just want to group them on the catName.

Can anyone please post me a sample ? I've been playing around with the subtotals but can't find a solution.

Thanks in advance !


Bjorn
Reply

RE: ComponentOne FlexGrid for .NET flight21 [Korea, Republic Of] 21-Jul-2004 00:00:00

hi
Reply

RE: ComponentOne FlexGrid for .NET support [USA] 04-Aug-2004 16:24:19

The FlexGrid.NET control has two samples with it that can help you out. Please take a look at the FlexGroup and Analyze samples.

Suelinda W
Customer Engagement, ComponentOne LLC
Reply


ComponentOne FlexGrid for .NET Problems waqasdotnet [Pakistan] 20-Jul-2004 17:27:39

Hello To All

I want to know that is there any online discussion forum where i can post my problems regarding the .NET Flex Grid and discuss and share the issues with others.
Any link for any such Forum is appreciated.

Regards
Waqas
Reply

RE: ComponentOne FlexGrid for .NET Problems support [USA] 04-Aug-2004 15:03:39

There is a list of ComponentOne's newsgroups at componentone.com/pages.aspx?pagesid=52. If you have issues that need immediate attention, you can also email our support department at support.flexgrid.net@compontntone.com.


Suelinda W
Customer Engagement, ComponentOne LLC
Reply


Product Search

Enter search words:

Screenshot Gallery

Award Award