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

Search:

Type: Posts; User: timostag

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    6,533

    Re: Excel sheets or MsflexGrid

    Ok I've answered my last question, No it adds another row below the existing one.

    Private Sub saveCmd_Click()
    GridHistory.Rows = GridHistory.Rows + 1
    Dim col, r
    r = 0
    For col = 0 To 5
    ...
  2. Replies
    5
    Views
    6,533

    Re: Excel sheets or MsflexGrid

    thank you, my idea with the 0 rows was to make it so when "save to history" was clicked it would add a row.
    ie.
    Private Sub CmdSave_Click()
    GridHistory.Rows = GridHistory.Rows + 1

    Are the...
  3. Replies
    5
    Views
    6,533

    Excel sheets or MsflexGrid

    Im trying to write a code, at the moment I have numbers being generated into 6 labels I then have a "save to history" cmd button with the idea that the captions of the labels are added onto a...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured