Flexgrid Box Equilivant In VB?
Nov 14, 2011
I'm in the process of rewriting some old VB6 projects in VB.Net which are still in use in my office. One project I'm having trouble with is one that displays a flexigrid which contains data from an SQL database, I know I can use Datagridview and this will fill most of my needs, but there is one characteristic of the flexigrid is the ability to "freeze" the far left column which hold peoples names and scroll all the other columns to see the data to the left, is there a way I can get Datagridview to do the same?
View 2 Replies
Sep 8, 2010
I am Using VB.NET 08 code for Creating FlexGrid Control.Now i am showing the data table in the FlexGrid.But now i want to put a Button Control on the FlexGrid Cells.The Button acts like When i click button some of the Rows in the Flexgrid should be Hide/UnHide.So how can i write a code for Creating control on the Flexgrid and applay the above criteria?
View 1 Replies
Aug 18, 2010
I recently worked in Flexgrid vb6.0.In the ouput there are 10 to 12 columns are there.In the Flexgrid i changed the columns as i need. For this i used my logic as below.But i want to know how can i do this same logic in DataGridView?For example one of the Flexgrid Property .Cols using to rearrange and modify the columns.But in the Datagrid view wht is the property i can use to apply same logic??? There is property Columns , it is Readonly Property.some articals i studied that their is property like DataGridColumnStyle.Is this property is suitable for generating vb6.0 to vb.net.I am sending my vb6.0 code where i used FlexGrid.
[Code]...
View 7 Replies
Oct 6, 2011
how to add a row on a flexgrid because i have a new table that i created and the table has nothing on it.
[Code]...
View 2 Replies
Oct 13, 2009
I installed a dot.NET FrameWork 2.0.exe to open my vb.net code. when i open the file. i cannot compile the program because of C1.Win1.Flexgrid error and some report errors. what is?
ComponentOne FlexGrid for .NET
ComponentOne REports for .NET
do i need this in the system? is it the same with the installer ComponentOne for studio?
View 1 Replies
Jun 7, 2011
I have installed VB2008 EXPRESS EDITION.
i have added com component msflexgrid ,but Getting error with this component
An error occurred creating the form. See Exception.InnerException for details. The error is: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
View 1 Replies
Sep 24, 2009
public class form 1
private dim row as integer
private num() as integer
[Code]....
View 1 Replies
Sep 10, 2009
i can't found flexgrid for .NET on standard control.
what other control for flexgrid ? datagrid ?
can use vb6 com control to use flexgrid control ?
View 6 Replies
Jun 25, 2009
I have a VB form and want to add a flexgrid control during runtime to a tabpage I am creating during runtime. how do go about this?
View 1 Replies
Aug 14, 2009
I�m having trouble accessing a flexgrid from a different thread.Basically in my main mdiParent I have some code like this, this code is triddered when the aplication receives a message from a remote client
Public Delegate Sub UpdateActionsGridStatusDelegate()
Me.Invoke(New UpdateActionsGridStatusDelegate(AddressOf frmActions.UpdateActionsGridStatus))
I also have a form called frmActions, which contains the function �UpdateActionsGridStatus�
Public Sub UpdateActionsGridStatus()
MsgBox("Actions row cnt = " & Me.flxActions.Rows.Count - 1)
End sub
If I run it from a button on the flxActions form it works fine.When I run this function from a thread it returns 0 rows!
View 5 Replies
Mar 10, 2011
In Visual basic 6 I often use Flexgrid component, I see that in VB.NET these components are not available. Component should I use instead of Flexgrid. What do I need to call Flexgrid componet (VB6 Version) into the project. NET from COM.
View 4 Replies
Jan 19, 2010
I have this code in vb6 the result of this query is bond in flexgrid how can i do this in vb .net using data grid.
Dim SQL As String
Dim rs As ADODB.Recordset
'SQL = "SELECT PO_Header.OrderID, PO_Header.RefNo AS [PO Num], PO_Header.OrderDate AS [Order Date],Category.Description + ' ' + SubCategory.Description as Department, " & _
[CODE]...
View 1 Replies
Sep 8, 2010
I am trying to send Flexgrid Data to Excel By using below Code,But it gives Error:
[Code]...
View 1 Replies
Dec 11, 2009
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 registered. I've found out that this class is the Microsoft Flex Grid Control 6.0.
Where can I find the control and how can I register it on machines so that the application will run?
View 1 Replies
Apr 9, 2008
A portion of my code is below. I am making a database application using FlexGrid and an ADO Control. I get errors on the statements following .saying that "Overload resolution failed because no accessible 'Fields' accepts this number of Arguments". Can someone explain this error and also a fix for it? I am using Visual Basic 2008.
[Code]...
View 1 Replies
Nov 5, 2009
Which one is more faster between DataTable and SqlDataReader while I'm trying to fill Data into FlexGrid with VB.NET?
View 3 Replies