Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,790| Members 17,820, Newest waheguruhelpme| Online 206
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Count check boxes set to true

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
HOW DO I UNCHECK A COLUMN OF CHECK BOXES? mommyone Information Technology 3 28-Jul-2006 08:40 AM
Count ticked check boxes on form Barry Information Technology 0 28-Jul-2006 08:28 AM
Mutually Exclusive Check Boxes charles.kendricks@charter.net Information Technology 2 28-Jul-2006 08:25 AM
Shaded Check Boxes Matt W. Information Technology 3 16-Nov-2005 14:50 PM
how do i set up check boxes to print word documents in access Rfranzi Information Technology 0 11-Nov-2005 20:09 PM


Tags
count, check, boxes, set, true
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:29 AM
Barry's Avatar Barry
Guest
 
Posts: n/a
   
   
Count check boxes set to true

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I have a form which makes check boxes visible depending on a value selected
by the user as a start and finish value. the check boxes are split into
colums from A-C and in rows from 0-30. This works fine but what i now need to
do is count all the check boxes ticked in column A and a count of all the
check boxes ticked in column B etc..

can anyone please please help me with this??

Here is the code i have used to make the check boxes visible

Dim a As Integer
Dim b As Integer
Dim c As Integer
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/12486-count-check-boxes-set-to-true.html
Dim CheckA As String
Dim CheckB As String
Dim CheckC As String

StartLevel = Me.txtStartLevel.Value
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1

For a = StartLevel To FinishLevel
CheckA = "chkLevela" & Format$(a)
Me(CheckA).Enabled = False
Me(CheckA).Visible = False
Next a

For b = StartLevel To FinishLevel
CheckB = "chkLevelb" & Format$(b)
Me(CheckB).Enabled = False
Me(CheckB).Visible = False
Next b

For c = StartLevel To FinishLevel
CheckC = "chkLevelc" & Format$(c)
Me(CheckC).Enabled = False
Me(CheckC).Visible = False
Next c



 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:29 AM
Douglas J. Steele's Avatar Douglas J. Steele
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true

You need essentially the same code to check them afterwords:

Dim a As Integer
Dim b As Integer
Dim c As Integer
Dim TotalA As Integer
Dim TotalB As Integer
Dim TotalC As Integer
Dim CheckA As String
Dim CheckB As String
Dim CheckC As String

StartLevel = Me.txtStartLevel.Value
FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1

For a = StartLevel To FinishLevel
CheckA = "chkLevela" & Format$(a)
If Me(CheckA) Then
TotalA = TotalA + 1
End If
Next a

For b = StartLevel To FinishLevel
CheckB = "chkLevelb" & Format$(b)

If Me(CheckB) Then
TotalB = TotalB + 1
End If
Next b

For c = StartLevel To FinishLevel
CheckC = "chkLevelc" & Format$(c)

If Me(CheckC) Then
TotalC = TotalC + 1
End If
Next c

Note that you are making it a little more difficult that it need be. The
following could replace what you already have:

Dim ctlCurr As Control
Dim intLoop As Integer
Dim StartLevel As Integer
Dim FinishLevel As Integer

StartLevel = Me.txtStartLevel.Value
FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1

For intLoop = StartLevel To FinishLevel
Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
ctlCurr.Enabled = False
ctlCurr.Visible = False
Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
ctlCurr.Enabled = False
ctlCurr.Visible = False
Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
ctlCurr.Enabled = False
ctlCurr.Visible = False
Next intLoop

and what I suggested could be

Dim intLoop As Integer
Dim intTotalA As Integer
Dim intTotalB As Integer
Dim intTotalC As Integer
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
Dim StartLevel As Integer
Dim FinishLevel As Integer

StartLevel = Me.txtStartLevel.Value
FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1

For intLoop = StartLevel To FinishLevel
intTotalA = intTotalA + IIf(Me.Controls("chkLevela" & Format$(intLoop)),
1, 0)
intTotalB = intTotalB + IIf(Me.Controls("chkLevelb" & Format$(intLoop)),
1, 0)
intTotalC = intTotalC + IIf(Me.Controls("chkLevelc" & Format$(intLoop)),
1, 0)
Next intLoop


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"Barry" wrote in message
news:E8F1BB1F-2C28-414D-8EC6-D50F63FE98AA@microsoft.com...
>I have a form which makes check boxes visible depending on a value selected
> by the user as a start and finish value. the check boxes are split into
> colums from A-C and in rows from 0-30. This works fine but what i now need
> to
> do is count all the check boxes ticked in column A and a count of all the
> check boxes ticked in column B etc..
>
> can anyone please please help me with this??
>
> Here is the code i have used to make the check boxes visible
>
> Dim a As Integer
> Dim b As Integer
> Dim c As Integer
> Dim CheckA As String
> Dim CheckB As String
> Dim CheckC As String
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For a = StartLevel To FinishLevel
> CheckA = "chkLevela" & Format$(a)
> Me(CheckA).Enabled = False
> Me(CheckA).Visible = False
> Next a
>
> For b = StartLevel To FinishLevel
> CheckB = "chkLevelb" & Format$(b)
> Me(CheckB).Enabled = False
> Me(CheckB).Visible = False
> Next b
>
> For c = StartLevel To FinishLevel
> CheckC = "chkLevelc" & Format$(c)
> Me(CheckC).Enabled = False
> Me(CheckC).Visible = False
> Next c



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:29 AM
Barry's Avatar Barry
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true


Hi Douglas, this works perfect. Thanks for taking the time to answer my
question and my appologies for not cross-posting this question

"Douglas J. Steele" wrote:

> You need essentially the same code to check them afterwords:
>
> Dim a As Integer
> Dim b As Integer
> Dim c As Integer
> Dim TotalA As Integer
> Dim TotalB As Integer
> Dim TotalC As Integer
> Dim CheckA As String
> Dim CheckB As String
> Dim CheckC As String
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For a = StartLevel To FinishLevel
> CheckA = "chkLevela" & Format$(a)
> If Me(CheckA) Then
> TotalA = TotalA + 1
> End If
> Next a
>
> For b = StartLevel To FinishLevel
> CheckB = "chkLevelb" & Format$(b)
>
> If Me(CheckB) Then
> TotalB = TotalB + 1
> End If
> Next b
>
> For c = StartLevel To FinishLevel
> CheckC = "chkLevelc" & Format$(c)
>
> If Me(CheckC) Then
> TotalC = TotalC + 1
> End If
> Next c
>
> Note that you are making it a little more difficult that it need be. The
> following could replace what you already have:
>
> Dim ctlCurr As Control
> Dim intLoop As Integer
> Dim StartLevel As Integer
> Dim FinishLevel As Integer
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For intLoop = StartLevel To FinishLevel
> Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
> ctlCurr.Enabled = False
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Next intLoop
>
> and what I suggested could be
>
> Dim intLoop As Integer
> Dim intTotalA As Integer
> Dim intTotalB As Integer
> Dim intTotalC As Integer
> Dim StartLevel As Integer
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> Dim FinishLevel As Integer
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For intLoop = StartLevel To FinishLevel
> intTotalA = intTotalA + IIf(Me.Controls("chkLevela" & Format$(intLoop)),
> 1, 0)
> intTotalB = intTotalB + IIf(Me.Controls("chkLevelb" & Format$(intLoop)),
> 1, 0)
> intTotalC = intTotalC + IIf(Me.Controls("chkLevelc" & Format$(intLoop)),
> 1, 0)
> Next intLoop
>
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no private e-mails, please)
>
>
> "Barry" wrote in message
> news:E8F1BB1F-2C28-414D-8EC6-D50F63FE98AA@microsoft.com...
> >I have a form which makes check boxes visible depending on a value selected
> > by the user as a start and finish value. the check boxes are split into
> > colums from A-C and in rows from 0-30. This works fine but what i now need
> > to
> > do is count all the check boxes ticked in column A and a count of all the
> > check boxes ticked in column B etc..
> >
> > can anyone please please help me with this??
> >
> > Here is the code i have used to make the check boxes visible
> >
> > Dim a As Integer
> > Dim b As Integer
> > Dim c As Integer
> > Dim CheckA As String
> > Dim CheckB As String
> > Dim CheckC As String
> >
> > StartLevel = Me.txtStartLevel.Value
> > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> >
> > For a = StartLevel To FinishLevel
> > CheckA = "chkLevela" & Format$(a)
> > Me(CheckA).Enabled = False
> > Me(CheckA).Visible = False
> > Next a
> >
> > For b = StartLevel To FinishLevel
> > CheckB = "chkLevelb" & Format$(b)
> > Me(CheckB).Enabled = False
> > Me(CheckB).Visible = False
> > Next b
> >
> > For c = StartLevel To FinishLevel
> > CheckC = "chkLevelc" & Format$(c)
> > Me(CheckC).Enabled = False
> > Me(CheckC).Visible = False
> > Next c

>
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:30 AM
Barry's Avatar Barry
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true

the first procedure seems to work for me but when i try the second it is
giving ctlCurr a value of Null

"Douglas J. Steele" wrote:

> You need essentially the same code to check them afterwords:
>
> Dim a As Integer
> Dim b As Integer
> Dim c As Integer
> Dim TotalA As Integer
> Dim TotalB As Integer
> Dim TotalC As Integer
> Dim CheckA As String
> Dim CheckB As String
> Dim CheckC As String
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For a = StartLevel To FinishLevel
> CheckA = "chkLevela" & Format$(a)
> If Me(CheckA) Then
> TotalA = TotalA + 1
> End If
> Next a
>
> For b = StartLevel To FinishLevel
> CheckB = "chkLevelb" & Format$(b)
>
> If Me(CheckB) Then
> TotalB = TotalB + 1
> End If
> Next b
>
> For c = StartLevel To FinishLevel
> CheckC = "chkLevelc" & Format$(c)
>
> If Me(CheckC) Then
> TotalC = TotalC + 1
> End If
> Next c
>
> Note that you are making it a little more difficult that it need be. The
> following could replace what you already have:
>
> Dim ctlCurr As Control
> Dim intLoop As Integer
> Dim StartLevel As Integer
> Dim FinishLevel As Integer
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For intLoop = StartLevel To FinishLevel
> Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Next intLoop
>
> and what I suggested could be
>
> Dim intLoop As Integer
> Dim intTotalA As Integer
> Dim intTotalB As Integer
> Dim intTotalC As Integer
> Dim StartLevel As Integer
> Dim FinishLevel As Integer
>
> StartLevel = Me.txtStartLevel.Value
> FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
>
> For intLoop = StartLevel To FinishLevel
> intTotalA = intTotalA + IIf(Me.Controls("chkLevela" & Format$(intLoop)),
> 1, 0)
> intTotalB = intTotalB + IIf(Me.Controls("chkLevelb" & Format$(intLoop)),
> 1, 0)
> intTotalC = intTotalC + IIf(Me.Controls("chkLevelc" & Format$(intLoop)),
> 1, 0)
> Next intLoop
>
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no private e-mails, please)
>
>
> "Barry" wrote in message
> news:E8F1BB1F-2C28-414D-8EC6-D50F63FE98AA@microsoft.com...
> >I have a form which makes check boxes visible depending on a value selected
> > by the user as a start and finish value. the check boxes are split into
> > colums from A-C and in rows from 0-30. This works fine but what i now need
> > to
> > do is count all the check boxes ticked in column A and a count of all the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> > check boxes ticked in column B etc..
> >
> > can anyone please please help me with this??
> >
> > Here is the code i have used to make the check boxes visible
> >
> > Dim a As Integer
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> > Dim b As Integer
> > Dim c As Integer
> > Dim CheckA As String
> > Dim CheckB As String
> > Dim CheckC As String
> >
> > StartLevel = Me.txtStartLevel.Value
> > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> >
> > For a = StartLevel To FinishLevel
> > CheckA = "chkLevela" & Format$(a)
> > Me(CheckA).Enabled = False
> > Me(CheckA).Visible = False
> > Next a
> >
> > For b = StartLevel To FinishLevel
> > CheckB = "chkLevelb" & Format$(b)
> > Me(CheckB).Enabled = False
> > Me(CheckB).Visible = False
> > Next b
> >
> > For c = StartLevel To FinishLevel
> > CheckC = "chkLevelc" & Format$(c)
> > Me(CheckC).Enabled = False
> > Me(CheckC).Visible = False
> > Next c

>
>
>

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:30 AM
Douglas J Steele's Avatar Douglas J Steele
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true

What line, specifically, is giving you a value of Null?

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Barry" wrote in message
news:A50F4822-3214-4B19-96F8-98A0185A7B1D@microsoft.com...
> the first procedure seems to work for me but when i try the second it is
> giving ctlCurr a value of Null
>
> "Douglas J. Steele" wrote:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
>
> > You need essentially the same code to check them afterwords:
> >
> > Dim a As Integer
> > Dim b As Integer
> > Dim c As Integer
> > Dim TotalA As Integer
> > Dim TotalB As Integer
> > Dim TotalC As Integer
> > Dim CheckA As String
> > Dim CheckB As String
> > Dim CheckC As String
> >
> > StartLevel = Me.txtStartLevel.Value
> > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> >
> > For a = StartLevel To FinishLevel
> > CheckA = "chkLevela" & Format$(a)
> > If Me(CheckA) Then
> > TotalA = TotalA + 1
> > End If
> > Next a
> >
> > For b = StartLevel To FinishLevel
> > CheckB = "chkLevelb" & Format$(b)
> >
> > If Me(CheckB) Then
> > TotalB = TotalB + 1
> > End If
> > Next b
> >
> > For c = StartLevel To FinishLevel
> > CheckC = "chkLevelc" & Format$(c)
> >
> > If Me(CheckC) Then
> > TotalC = TotalC + 1
> > End If
> > Next c
> >
> > Note that you are making it a little more difficult that it need be. The
> > following could replace what you already have:
> >
> > Dim ctlCurr As Control
> > Dim intLoop As Integer
> > Dim StartLevel As Integer
> > Dim FinishLevel As Integer
> >
> > StartLevel = Me.txtStartLevel.Value
> > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> >
> > For intLoop = StartLevel To FinishLevel
> > Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
> > ctlCurr.Enabled = False
> > ctlCurr.Visible = False
> > Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
> > ctlCurr.Enabled = False
> > ctlCurr.Visible = False
> > Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
> > ctlCurr.Enabled = False
> > ctlCurr.Visible = False
> > Next intLoop
> >
> > and what I suggested could be
> >
> > Dim intLoop As Integer
> > Dim intTotalA As Integer
> > Dim intTotalB As Integer
> > Dim intTotalC As Integer
> > Dim StartLevel As Integer
> > Dim FinishLevel As Integer
> >
> > StartLevel = Me.txtStartLevel.Value
> > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> >
> > For intLoop = StartLevel To FinishLevel
> > intTotalA = intTotalA + IIf(Me.Controls("chkLevela" &

Format$(intLoop)),
> > 1, 0)
> > intTotalB = intTotalB + IIf(Me.Controls("chkLevelb" &

Format$(intLoop)),
> > 1, 0)
> > intTotalC = intTotalC + IIf(Me.Controls("chkLevelc" &

Format$(intLoop)),
> > 1, 0)
> > Next intLoop
> >
> >
> > --
> > Doug Steele, Microsoft Access MVP
> > http://I.Am/DougSteele
> > (no private e-mails, please)
> >
> >
> > "Barry" wrote in message
> > news:E8F1BB1F-2C28-414D-8EC6-D50F63FE98AA@microsoft.com...
> > >I have a form which makes check boxes visible depending on a value

selected
> > > by the user as a start and finish value. the check boxes are split

into
> > > colums from A-C and in rows from 0-30. This works fine but what i now

need
> > > to
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> > > do is count all the check boxes ticked in column A and a count of all

the
> > > check boxes ticked in column B etc..
> > >
> > > can anyone please please help me with this??
> > >
> > > Here is the code i have used to make the check boxes visible
> > >
> > > Dim a As Integer
> > > Dim b As Integer
> > > Dim c As Integer
> > > Dim CheckA As String
> > > Dim CheckB As String
> > > Dim CheckC As String
> > >
> > > StartLevel = Me.txtStartLevel.Value
> > > FinishLevel = StartLevel + Me.txtNoOfLevels.Value - 1
> > >
> > > For a = StartLevel To FinishLevel
> > > CheckA = "chkLevela" & Format$(a)
> > > Me(CheckA).Enabled = False
> > > Me(CheckA).Visible = False
> > > Next a
> > >
> > > For b = StartLevel To FinishLevel
> > > CheckB = "chkLevelb" & Format$(b)
> > > Me(CheckB).Enabled = False
> > > Me(CheckB).Visible = False
> > > Next b
> > >
> > > For c = StartLevel To FinishLevel
> > > CheckC = "chkLevelc" & Format$(c)
> > > Me(CheckC).Enabled = False
> > > Me(CheckC).Visible = False
> > > Next c

> >
> >
> >



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:30 AM
Barry's Avatar Barry
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true

When i use the following code i get a null value for very occurance of Set
ctlCurr. This does not happen when i use the line CheckA = "chkLevela" &
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
Format$(a), is there a reson for this

For intLoop = StartLevel To FinishLevel
Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
ctlCurr.Enabled = False
ctlCurr.Visible = False
Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
ctlCurr.Enabled = False
ctlCurr.Visible = False
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
ctlCurr.Enabled = False
ctlCurr.Visible = False
Next intLoop
Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:30 AM
Douglas J Steele's Avatar Douglas J Steele
Guest
 
Posts: n/a
   
   
Re: Count check boxes set to true

  Donate Today!  
No reason that I can think of.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486

Might there be a typo somewhere?

Do you have Option Explicit at the top of the module? If not, put it there,
then Compile your module. That should help identify any problems with
variable names being mistyped somewhere.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Barry" wrote in message
news:B134A84C-76FE-4A78-92F5-673CD06858E4@microsoft.com...
> When i use the following code i get a null value for very occurance of Set
> ctlCurr. This does not happen when i use the line CheckA = "chkLevela" &
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12486
> Format$(a), is there a reson for this
>
> For intLoop = StartLevel To FinishLevel
> Set ctlCurr = Me.Controls("chkLevela" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelb" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Set ctlCurr = Me.Controls("chkLevelc" & Format$(intLoop))
> ctlCurr.Enabled = False
> ctlCurr.Visible = False
> Next intLoop



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 335 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,038 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 81 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 116 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 229 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 44 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 414 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 09:03 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.59865 seconds with 30 queries