flexgrid

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. The VB6 Application then read this data into a multi dimensional array which is then fed into a M...

How to correctly calculate the height of a table

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...

VSFlexgrid licensing issue in VB6

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...

Inline data representation

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...

MFC: Use a MSHFlexGrid with non-database data and still define the shape

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...

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, 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...

What's the best flexgrid in .NET?

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! ...

Remove gridheader rollover in flex

Is there a way to remove the grid header rollover in flex while still maintaining a sortable header? ...

applying paddingRight to flex grid column not to grid 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="...

how to embed image into flex grid column

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"/> ...

flex grid scrollbar pushing all columns to the left

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? ...

Change sort arrow position in flex grid

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? ...

Make only one row show after search. flexgrid vb6

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...

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 be caused by the KB960715 security update being applied, which sets killbits on variou...

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 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 ...

Flexigrid Jquery

I don't know how to use Flexigrid jQuery in my website, please answer me sir. ...

flexigrid -- fancybox

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', ...

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: ----------------------------- | 8/17/2010 | ----------------------------- | Column 1 | Column 2 | ----------------------------- ...

Using flexgrid plugin for jquery on html table, not on xml file

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 ...