CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: robertalis

Search: Search took 0.07 seconds.

  1. Re: how to bind more that one table with datasource property in dgv

    Hello

    you can bind to one or multiple data sources with Grid.DataSource property with simultaneous adding of objects with Grid.Rows.Add() / Row.Add() methods.
    ...
  2. Replies
    9
    Views
    13,941

    Re: Need help with data binding

    Hello

    May be this code help you


    //Basket class
    public class Basket
    {
    //Private fields
    private readonly BindingList<Order> _orders = new BindingList<Order>();
  3. Replies
    1
    Views
    3,854

    Re: save and restore grid state

    According to me, You have to use binary data serialization method to save and restore the grid's state.You can get detailed explanation of this on...
  4. Replies
    2
    Views
    692

    Re: Data updations

    Real-time updating and sorting is the heart of trading applications. Sorry for your online application but I go through a website which providing the solutions for Real-time data updating, Real-time...
  5. Re: How to build a hierarchy with binding list

    Hello,

    To build a hierarchy, it is enough to call the Row.Add(object dataObject) method, which in turn returns a new Row object. This way we can build almost any data hierarchy in the .Net Grid....
  6. Replies
    2
    Views
    876

    Re: Showing filtered rows in a data grid

    Hi,

    You are doing great practice. I don't know how to complete this by ordinary .net components. I came to know about a component which can complete your requirement of repaint the grid and...
  7. Replies
    2
    Views
    742

    Re: Need help with RTB RTF indexing...

    Hi,

    Its related to performance, but to convert the index of the keyword from the richtextbox to the RTF file, this may help you a little

    Private Sub checkforlinks(ByVal text As String)
    ...
  8. Replies
    4
    Views
    794

    Re: Table data into Array

    Hello

    This can also help you, try this

    Dim rst As DAO.Recordset
    Dim lngNum As Long

    Set rst = CurrentDb.Open("TableNameHere")

    For 1 to UBound(YourArray)
  9. Replies
    5
    Views
    3,463

    Re: Moving to Current Record in Data grid

    Hello

    Thanks for giving resources, these helps me a lot.
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured