Results 1 to 2 of 2

Thread: New to ActiveX - Plz Help!

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Mar 2001
    Location
    Southern California
    Posts
    733
    Hi,

    I am new to making ActiveX controls. I need to create a property such as below but I'm not exactly sure what Kind of code goes into these procedures.


    Private Property Get GridCol() As Variant

    End Property


    Private Property Let GridCol(ByVal vNewValue As Variant)

    End Property


    Thanks in advance,
    Jeff

  2. #2
    Lively Member chrisgaddy's Avatar
    Join Date
    Mar 2001
    Location
    Olive Branch, MS
    Posts
    71
    Code:
    Private mvNewValue As Variant
    
    Private Property Get GridCol() As Variant 
      GridCol = mvNewValue
    End Property 
    
    
    Private Property Let GridCol(ByVal vNewValue As Variant) 
      mvNewValue = vNewValue
    End Property

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width