So how about this ? 
    
    
    type
        ListBox*= ref object of Control
            items* : ItemsList   # all type members are starting at lower case
        ItemsList = object
            iList* = seq[string]
    
    proc createListBox(me : ListBox) : HWND =   # procs starting at lowercase.
    
    
    Run

Is it ok ?

Reply via email to