Hi,
Im trying to customize a ShapeForm, but I dont see on the VisualStyleBuilder.
Is there ShapeForm on VisualStyleBuilder?
Thank you!
How's one do this?
I tried a function that looped thru the cols and did the following;
//objTheGrid.Columns[intIDX].Width = 1000;
objTheGrid.MasterTemplate.Columns[intIDX].Width = 1000
Neither worked.
Also did a similar thing for Rows, but for height, and that didn't do anything either.
THanks
Hello,
I need to set the background color of each row.
I have a function that exports a grids rows to excel document.
I need to remove any colours on the grids rows to be no colors.
Hows this done exactly? I see from reading the forums that I somehow must use the rowformatting event.
Need to know how I would call that and loop thru the rows to clear the background color.
Thanks in advance.
Hello
I am trying to make a custom Menu Item in the style builder, and its looks like I want.
I make menu in Visutal Studio.
And when running.
What could be the problem?
thank you!
Hello,
I had a question in regards to how you need to bind/set the data type of a GridView. When I'm doing column creation, you need to set the data type of the column to all be of one type (i.e. text, date, drop down list, etc). Is there a way around this? Basically I want to have one column be of a general Data type and have each row determine what to put into the cell.
I've attached an image of the "gridview" that I'm trying to recreate in winforms. Any and all help is very much appreciated!
Thanks
Hi
I am finally converting some RadChart controls to the newer RadChartView.
One of the chart I have to reproduce is a 3D barchart.
In the former control, I was able to add properties like this:
With MyChart.ChartArea
With .PlotArea.View3D
.Depth = 5
.Elevation = 10
.Rotation = 30
End With
End With
How can I get 3D bar chart with the newer control?
hi guys
in my app, need to add some data, and calculate sum of some cell. the user insert new data and again calculate sum.
in level 1 no problem, when user add new data (New Row) must be insert after Summary Row but add this add upper summary :-|
see the picture:
row 1 insert. some data add with a button, then by click on an other button, Summary row add and work perfectly.
now, user can add new data and must add below, but Row 2 insert up.
Hello,
I want to binding some properties to gridview programmatically. I have object hierarchy like that:
public
class
CLASS_A
{
String propA;
int
propB;
CLASS_B propC;
}
public
class
CLASS_B
{
String propA;
int
propB;
bool
propC;
}
The datasource will be a list of CLASS_A, and i want to bind propA from CLASS_A and some properties of CLASS_B.
There is no problem to binding properties from CLASS_A with field name, but I try same doing something like "propC.propA" but doesnt work.
What I am doing wrong?
Thank you and Regards!!!