Microsoft FlexGrid control displays and operates on tabular data.
Questions tagged [msflexgrid]
60 questions
0
votes
1 answer
Wijmo dual formatting of one column
In my Wijmo FlexGrid, in one Dropdown Column having dropdown values (decimal, Percentage). I need to show percentage symbol if I choose percentage as dropdown values, and decimal (n2) if Dropdown value is selected decimal

S.L.
- 23
- 5
0
votes
1 answer
Why is VB6 FlexGrid throwing a run-time error 381 'Subscript out of range'?
I don't really know much about VB6, but I am currently having a problem with double clicking a cell in a FlexGrid. I can see that this is a popular question that has been asked many times, but most of the users are looping around the grid. Mine is…

Apostrofix
- 2,140
- 8
- 44
- 71
0
votes
1 answer
Paging page size in wijmo flexgrid not working in IE 7
In My Wijmo FlexGrid I have applied Paging (Grid height changing on page size changes).Its working fine in Chrome but not working In IE 7.
I have written the below code.
function PageSizing(pagerId, gridId, gridDataCollection) {
var value =…

S.L.
- 23
- 5
0
votes
1 answer
Memory consumption by two dimensional array of strings and msflexgrid
Two dimensional array of string takes 2 times more memory than msflexgrid with same text, how?
Is there any other efficient method in vb6 to save string ?

IT researcher
- 3,274
- 17
- 79
- 143
0
votes
2 answers
populating flexgrid with a file vb6
So I need to put all the names in a file into column 1 on flexgird, each name should go on its own row. here is what I have but i just get "invalid row value"
namefile = App.Path & "\names.dat"
Open namefile For Input As #1
While Not EOF(1)
…

Andeeh
- 99
- 1
- 4
- 12
0
votes
1 answer
ColData, RowData, ColSel, RowSel DataGridView
I'm trying to convert some VB6 codes to C#, but I got stuck on some MSFlexGrid keyword to translate them to equivalent DataGridView.
Could anyone tell me the DataGridView equivalent for the keywords below?
ColData, RowData, ColSel, RowSel.

Auguste
- 2,007
- 2
- 17
- 25
0
votes
1 answer
MS Access Tables with MSFlexgrid
How can one display two tables in a single MSFlexgrid control in VB6?

shanks
- 1
- 2
0
votes
1 answer
Determine how wide a textbox or text area should be to hold three lines
I'm trying to figure out how to size a text box to closely fit three lines of wrapped text. I'm working in vb6, but I'll accept an answer in any language if I can understand it.
The problem is that I have a flexgrid with long headings and room for…

sawme
- 51
- 1
- 5
0
votes
1 answer
Checking the background colour of the selected cell in a FlexGrid
I need to do something in the MyFlexGrid_DblClick(), but only if the back color is NOT set to vbInactiveBorder, I tried the folowing code but had no succes
Private Sub MyFlexGrid_DblClick()
If Not MyFlexGrid.BackColor = vbInactiveBorder Then …

Andres Weber
- 1
- 1
0
votes
1 answer
vb6 and msflexgrid, how to count columns and rows in clipboard text
Back to vb6 and msflexgrid, there is a weakness in pasting text to this control. If the user wanted for example to paste a 2*3 array in msflexgrid he should select 2 rows and 3 columns to paste the data, otherwise only one cell will fill in the…

David Peterson
- 552
- 14
- 31
0
votes
1 answer
European number conversion on redraw
I have a flexgrid cell that is not handling European number formatting how I want. Some details may be abstracted away from me in the code.
Currently, my control panel "local region" is set to the target location (Danish/Denmark).
I can successfully…

Ponml
- 2,917
- 5
- 20
- 17
0
votes
1 answer
How to solve MSFlexGrid Error 30006 in VB6
MSFlexGrid gives this 30006 Error each time it reaches ~350,000 cells.
Error Definition:
Run-time error '30006':
Unable to Allocate Memory For FlexGrid
My Code Sample:
Do While Not rs.EOF
With MSFlexGrid1
.Rows = .Rows + 1
…

Berker Yüceer
- 7,026
- 18
- 68
- 102
0
votes
1 answer
Call msflexgrid click event in vb6
I've got to call the click event for an MsFlexGrid object.
Private Sub MSFlexGridboxcodelist_Click()
box_code = Trim(Me.MSFlexGridboxcodelist.TextMatrix(Me.MSFlexGridboxcodelist.RowSel, 1))
box_type =…

Joe88
- 441
- 1
- 5
- 15
0
votes
1 answer
How to get a total of column value
Using flexgrid.
flexgrid row
id value
001 200
003 400
002 600
...
I want to sum the value column, sum(value) in flex grid,
Flexgrid rows are populating from the table, at last right side i want to show the
total of value column in flex grid…

JetJack
- 978
- 8
- 26
- 51
0
votes
1 answer
FlexGrid dll registration during install?? Maybe?
As the title suggests, I am at a loss and I'm hoping to get a little help from someone in here...
I am trying to create an installer package using VS2010 setup and deployment for a colleague's winforms app that uses a flexgrid. The project builds…

user10001110101
- 301
- 1
- 8
- 20