Microsoft FlexGrid control displays and operates on tabular data.
Questions tagged [msflexgrid]
60 questions
8
votes
1 answer
VB6/VBA MSFlexGrid to VB.NET DataGridView
Yet again, more fantastic VB6 to VB.NET migration.
Okay sure, this isn't necessarily a "Question" in definition, but it will answer many questions that users will have in the future, and will hopefully answer my questions as well.
I am trying to…

Logan B. Lehman
- 4,867
- 7
- 32
- 45
4
votes
2 answers
MSFlexGrid Edit VB6
Currently I am working on vb6 application. I want to show data in MSFlexgrid But there is no edit Facility in MSFlexgrid Control.
Is there Any way to Edit MSFlexgrid?

chotai.mit
- 253
- 2
- 4
- 17
3
votes
1 answer
How do I install Microsoft FlexGrid Control 6.0 on a computer without VS 6.0?
My VB.NET application uses Microsoft Flex Grid Control 6.0. This is a legacy application which has been ported from VB6 with the Visual Studio conversion wizard. Although I can compile the assembly, I get a COMException because some class is not…

Oliver Hanappi
- 12,046
- 7
- 51
- 68
3
votes
1 answer
Alternatives for datagridview,msflexgrid
For storing data in a grid i can use datagridview or msflexgrid. But is there any other object is there which can be used as an alternative for this.

IT researcher
- 3,274
- 17
- 79
- 143
3
votes
1 answer
run-time error '3704' operation is not allowed when the object is closed in VB6 while using SP using temp tables
I am using the Stored procedure "sp_Missingdata" to get the data and to display in the MSFlexGrid, But i am getting the error as -
run-time error '3704' operation is not allowed when the object is closed
I searched in google a lot and changed these…

Teju MB
- 1,333
- 5
- 20
- 37
2
votes
2 answers
Tooltip only shows when running from source
I have a hierarchical flexgrid control with the ToolTipText property set, and when I run from source the tooltip displays as it should. But when I compile it and run that way, the tooltip doesn't display.
I've tried to remove anything listening to…

Xodarap
- 11,581
- 11
- 56
- 94
2
votes
1 answer
vb6 how to know msflexgrid_scroll up down click
when clicking on the msflexgrid scroll bar on the down arrow, how can i know that i have clicked on the down arrow. give me sample code if possible.
Thanks

Anil
- 21
- 1
- 4
2
votes
0 answers
Microsoft flexgrid Control : Run-time error '438' Object doesnt support this property or method
I am maintaining a legacy Microsoft Access application that is using the Microsoft Flexgrid 6.0. It recently started causing the following error:
Run-time error '438' Object doesn't
support this property or method
People say that this error can…

Dan
- 29,100
- 43
- 148
- 207
1
vote
2 answers
Can't use vba flex grid msflxgrd.ocx in ms-access
I wish to use a flex grid in my access form. I downloaded and registered msflxgrd.ocx successfully. It now appears in the list of insertable ActiveX controls in forms design, so all seems OK. But when I select the control named "Microsoft FlexGrid…

Maestro13
- 3,656
- 8
- 42
- 72
1
vote
2 answers
How to find the cell background color
Using Flexgrid
I want to check the background color of the particular cell...
Code
if flexgrid1.TextMatrix(1, 2).CellBackColor = vbCyan then
msgbox vbcyan
else
msgbox vbwhite
End if
The above code is showing error as "Invalid Qualifier"
Other…

Gopal
- 11,712
- 52
- 154
- 229
1
vote
1 answer
VB6 - How to do a multi level sort with MSFlexGrid?
I currently have a VB6 program that essential reads data from an excel worksheet and spits it out into a MSFlexGrid.
Below is the excel sheet data that is read in. Data is filled into the occurence column for the left half of the table.
(source:…

darudude
- 541
- 5
- 9
- 21
1
vote
1 answer
Primeflex Flexgrid support for IE11? any workaround to get the flexgrid working on IE?
The columns alignment using "p-dir-col" does not display as expected in IE11.
To reproduce, check out the demo page opened in Internet Explorer 11:
https://www.primefaces.org/primeng/#/flexgrid
=> There are no space between each row in IE, while the…

patchy
- 19
- 5
1
vote
1 answer
Why are all rows selected in MSFlexGrid when I select the last row?
I have an MSFlexGrid control with 2 columns and all of my data is displayed on this grid. When I click on the Add button, I add a new row, and I select my new row.
The problem is that all the rows get selected and I need to select only my new row.…

Jimmy Tremblay
- 11
- 2
1
vote
1 answer
flexgrid custom data binding
Is it possible to bind a msflexgrid/mshflexgrid to a custom datasource in vb6?

ramu
- 1,019
- 3
- 15
- 41
1
vote
3 answers
Late binding with COM objects (flexgrid) is 2 times slower than early binding
Public Function gridloop(MSFG1 As Object) As Long
For i= 0 To MSFG1.rows - 1
A = MSFG1.TextMatrix(i,1)
Next
End Function
The above code is 2 times slower than below
Public Function gridloop(MSFG1 As MSHFlexGrid) As…

IT researcher
- 3,274
- 17
- 79
- 143