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.
The VB6 Application then read this data into a multi dimensional array which is then fed into a M...
How do you calculate the height of a flexgrid table in VB6 so that it only contains the number of filled rows.
Currently
myFlexGrid.Height = (myFlexGrid.CellHeight * myFlexGrid.Rows) ' paraphrased from code
comes out at about 3 pixels short per line. Adding in the magic number is a bit hackish and would like to accomplish this witho...
I am having a licensing issue with our VideoSoft VSFlexGrid 7.0 in VB6. When I create a new FlexGrid it triggers a message box with a licensing/about message. We have a license but it appears that VB does not quite keep it. Is there a way to get rid of this message?
I currently use a workaround: instead of creating a new FlexGrid I copy...
I would like to represent data that gives an overview but allows them to drill down in an inline fashion - so if you had a grouping of say 6 objects the user could expand the data and it would show the 6 objects immeadiately below it before any more high level data.
It would appear that MSHFlexgrid gives this ability but I can't find an...
I am trying to use the Microsoft Hierarchical FlexGrid (MSHFlexGrid) in a Visual C++ (VS 2005). I have the grid shown, and I can manually add data to the individual cells. However, according to online documentation I've read, I should be able to show the hierarchical nature of the data (hence MSHFlexGrid instead of MSFlexGrid) by defin...
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, and territories, assignments. When you click in a column, let's say under the Territory column, another userform opens to show a list of T...
Hi,
I found a few flexgrid in VS2008. What's the best?
I'm looking for the following capabilities:
Hierarchic
Sorting (primary and secondary)
context menu
Colorize the fields and add an icon to fields
If you think I'd better find some 3rd-party component for this requirements, please let me know.
Thanks!
...
Is there a way to remove the grid header rollover in flex while still maintaining a sortable header?
...
Whenever I add paddingRight to a column in the flex grid, it adds the padding to the header as well.
Is anyone familiar with how I can add paddingRight just to the column and not to the header? Below is the column code where I was specifying the padding.
<mx:DataGridColumn width="60" headerText="Type" dataField="Grade" headerStyleName="...
Is there an easy way to embed an image into a flex grid column? Something similar to:
<mx:DataGridColumn width="23" src="images/testimage.jpg"/>
...
I have a flex grid where I have the verticalScrollPolicy="auto".But every time when the scrollbar appears all the columns get pushed to the left, making the columns not align as they should. I tried setting minWidth on all the columns to prevent this, but that doesn't seem to work. Any ideas?
...
Currently when sorting in a flex grid, the sort arrow that shows whether the column is sorted ascending or descending is right aligned to the column. Is there anyway to change the position of the sort arrow, such as applying padding?
...
So i have flexgrid in my vb6 project I'm working on. It has names on each row, and I have a drop down so the user can select what name they want to see more info for, here is what I have.
Dim target_name As String
Dim r As Integer
' Get the name.
target_name = Combo1
If Len(target_name) = 0 Then Exit Sub
' Search for the name, skipp...
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 be caused by the KB960715 security update being applied, which sets killbits on variou...
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 key is pressed the cursor is placed at the end of the text in the next row, but when the Up arrow key is pressed the cursor is placed in the ...
I don't know how to use Flexigrid jQuery in my website, please answer me sir.
...
im using flexigrid.. having two button like add , delete on toolbar. want to create a input form as fancybox when click the add button
how to create it?
plz help me..
my code is below..
<script type="text/javascript">
$(document).ready(function(){
$("#flex1").flexigrid({
url: 'post2.php',
dataType: 'json',
...
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:
-----------------------------
| 8/17/2010 |
-----------------------------
| Column 1 | Column 2 |
-----------------------------
...
I trying to use this plugin for jquery which seems perfect for what I am being asked to do to do.
http://flexigrid.info/
Now what I'm working with is an HTML table, and I don't have the ability to change it. The above site has three examples. The first two seem to apply the flex grid to existing tables, which is what I need, but they ...