Tagged Questions
The msflexgrid tag has no wiki summary.
2
votes
1answer
1k views
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 ...
1
vote
2answers
57 views
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 ...
1
vote
2answers
352 views
flexgrid custom data binding
Is it possible to bind a msflexgrid/mshflexgrid to a custom datasource in vb6?
1
vote
1answer
752 views
VB6 MSFlexGrid - ColPos of Merged Columns
I'm working with a MSFlexGrid control in VB6, but I'm also having some problems retrieving the ColPos property for merged columns. The grid that I've generated looks something like this:
...
1
vote
1answer
253 views
Why does vbkeyup produce different results than vbkeydown does in this Code
I have a VB6 app which consists of a flexgrid, two command buttons, and a text box. I have code to allow the user to press the up or down arrow key to switch rows in the grid. When the down arrow ...
0
votes
1answer
73 views
How to focus the next cell while clicking tab key and cell coloring
I am new to vb
Flexgrid
Header 01 .... 31
Values .........
I am entering the values at run time in flexgrid cell, if i click tab button, the focus will move to next cell on the same row.
Code for ...
0
votes
0answers
32 views
runtime error when saving into MSFlexGrid
I use MSFlexGrid control for saving sub item under a meun item.
I added ComboBoxes in flexgrid for selecting values but these valuse are not saved in MSFlexGrid.
I use this code:
Private Sub ...
0
votes
1answer
88 views
Cannot open modal dialog containing MS FlexGrid activex control
I am trying to open dialog containing MS FlexGrid ActiveX control using DoModal() from an ActiveX control project(OCX). I added member variable for the FlexGrid control and generated a wrapper class ...
0
votes
1answer
142 views
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
0
votes
0answers
71 views
MSFLEXGRID in c++ GUI and optimization
We have some old code using MSflexgrid as a list grid in which we take an array of data and stuff it in the MSFlexgrid, then draw it to the UI. The issue occurs when the system handles 1500 items and ...
0
votes
0answers
133 views
Populating mshflexgrid in c#.net
i in my c# program i used dataSet and dataAdpater.How i can populate mshflexgrid to show the data from dataSet.In my dataset the data comes from a table.I can show data in dataGridView.But i want to ...
0
votes
0answers
76 views
Enable Mouse scrolling in MSHflexgrid
Does anyone know how to enable scrolling using a mouse in a MSHFlexgrid?
I can't seem to find out how to do it...
0
votes
1answer
220 views
Why is my code Selecting & Hightlighting more than 1 row in my MshFlexgrid?
I have a VB6 project that is using a SQL2008 database. The project consists of two Combo Boxes , a MSHFlexGrid, and Two Command Buttons(cmdLoadSeries & cmdExit). The user will make a selection ...
0
votes
1answer
483 views
print msflexgrid with picture in cell in vb6
how do i print msflexgrid with picture in some of its cells in vb6
0
votes
3answers
533 views
text orientation flexgrid
Is there anyway to align the text in msflexgrid in vertical orientation like excel does?
thanks
0
votes
2answers
408 views
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 ...
0
votes
1answer
530 views
0
votes
1answer
277 views
Can't close userform
Let me set up the environment.
This is VBA code running in Excel.
I have a userform that contains a mxflexgrid. This flexgrid shows a list of customers and the customer', salesperson, csr, mfg rep, ...
0
votes
1answer
2k views
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 ...
0
votes
1answer
633 views
msflexgrid Unicode
I have an old project that I am trying to Unicode enable. I am trying to put Unicode data into an msflexgrid, but it comes out as question marks.
Is there some trick to getting MSFlexGrid to work ...