Announcement

Collapse
No announcement yet.

Display dynamic number of textboxes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Michael Mattias
    replied
    Same principle....includes reading controls as well as writing ...

    Leave a comment:


  • Eric Folbrecht
    replied
    Thanks Chris! I spent way too long trying to figure this out and you saved the day.

    Leave a comment:


  • Chris Holbrook
    replied
    Originally posted by Eric Folbrecht View Post
    I need to display a number of textboxes with their labels
    Code:
            case %wm_initdialog
                for i = 1 to 10
                     control add label, cb.hndl, %IDC_LABEL1 + i, "Label" + format$(i), 48, (i-1)*12, 92, 12
                next

    Leave a comment:


  • Eric Folbrecht
    started a topic Display dynamic number of textboxes

    Display dynamic number of textboxes

    I need to display a number of textboxes with their labels (contained in multidimensional array). I can not figure out how to get around the constant variable in the ADD CONTROL TEXTBOX statement. I want to use a FOR..NEXT looping for the number of variables and then display them on the screen for editing, but the because of the constant Windows control number or equates, I can't figure out the coding for it to be dynamic.

    Any help will be very helpful!
Working...
X