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

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » combobox hidden column still appearing in text area

combobox hidden column still appearing in text area

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
The data in text column is wrong, but auto filter data is correct judyarroyo Information Technology 1 28-Jul-2006 08:27 AM
Connecting a column in one table to another column in another tabl jstuntz Information Technology 1 28-Jul-2006 08:25 AM
Pointer disappears in text area. Where to correct? Rickey Jones Information Technology 1 28-Jul-2006 08:21 AM
How do I enclose all text entries in a column with parentheses? Ray K Information Technology 6 28-Jul-2006 08:12 AM
Text to Column in Access H0MELY Information Technology 5 03-Nov-2005 11:35 AM


Tags
combobox, hidden, column, still, appearing, text, area
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:30 AM
mitenko's Avatar mitenko
Guest
 
Posts: n/a
   
   
combobox hidden column still appearing in text area

  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
Hi y'all,

I've got a form that switches between English and Nepali, so a user can
enter data in either language. Data is stored in separate fields
according to what language it is. The user clicks a button and the form
changes its fonts and control sources.

However, switching with a combo box doesn't seem to work. When the
button is clicked, I collapse the ColumnWidths of the English fields
and expand the Nepali fields. This works for when you click on the
combobox and the menu list drops down, however, the text area for the
combobox (the Value or Text property) is stuck on the first column even
though its width has been shrunk to 0. So even if a user makes a
selection from the dropdown, all they get is gibberish (english text
translated into a nepali font isn't pretty) in the text area.

According to VB help the combobox displays the first visible column,
and shrinking a columns width to 0 automatically makes it
hidden/invisible. Has anyone else encountered this? Is there a way to
fix it?

Here's a snippet of the code:

Public Sub LangSwitch(toNepali As Boolean)
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/12658-combobox-hidden-column-still-appearing-text.html
If (toNepali) Then
....
District_Label.FontName = "Preeti"
District_Label.FontSize = 13
District_Label.Caption = "lhNnf"

District.SetFocus
District.FontName = "Preeti"
District.FontSize = 13
District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
Else
....
District_Label.FontName = "MS Sans Serif"
District_Label.FontSize = 8
District_Label.Caption = "District"

'Debug.Print CStr(District.ColumnWidths)
District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
District.FontName = "MS Sans Serif"
District.FontSize = 8
End If
End Sub






 
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:31 AM
david epsom dot com dot au's Avatar david epsom dot com dot au
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

works for me, "0;", ";0", Access 2000.

Try it without the fixed width columns "1 in" in case
that is confusing it.

(david)



"mitenko" wrote in message
news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
> Hi y'all,
>
> I've got a form that switches between English and Nepali, so a user can
> enter data in either language. Data is stored in separate fields
> according to what language it is. The user clicks a button and the form
> changes its fonts and control sources.
>
> However, switching with a combo box doesn't seem to work. When the
> button is clicked, I collapse the ColumnWidths of the English fields
> and expand the Nepali fields. This works for when you click on the
> combobox and the menu list drops down, however, the text area for the
> combobox (the Value or Text property) is stuck on the first column even
> though its width has been shrunk to 0. So even if a user makes a
> selection from the dropdown, all they get is gibberish (english text
> translated into a nepali font isn't pretty) in the text area.
>
> According to VB help the combobox displays the first visible column,
> and shrinking a columns width to 0 automatically makes it
> hidden/invisible. Has anyone else encountered this? Is there a way to
> fix it?
>
> Here's a snippet of the code:
>
> Public Sub LangSwitch(toNepali As Boolean)
> If (toNepali) Then
> ....
> District_Label.FontName = "Preeti"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> District_Label.FontSize = 13
> District_Label.Caption = "lhNnf"
>
> District.SetFocus
> District.FontName = "Preeti"
> District.FontSize = 13
> District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
> Else
> ....
> District_Label.FontName = "MS Sans Serif"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> District_Label.FontSize = 8
> District_Label.Caption = "District"
>
> 'Debug.Print CStr(District.ColumnWidths)
> District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
> District.FontName = "MS Sans Serif"
> District.FontSize = 8
> End If
> End Sub
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:31 AM
mitenko's Avatar mitenko
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

Hi David,

thanks for the reply. I tried what you suggested but it didn't work.

I'm using Access 2003 SP2.

david epsom dot com dot au wrote:
> works for me, "0;", ";0", Access 2000.
>
> Try it without the fixed width columns "1 in" in case
> that is confusing it.
>
> (david)
>
>
>
> "mitenko" wrote in message
> news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> > Hi y'all,
> >
> > I've got a form that switches between English and Nepali, so a user can
> > enter data in either language. Data is stored in separate fields
> > according to what language it is. The user clicks a button and the form
> > changes its fonts and control sources.
> >
> > However, switching with a combo box doesn't seem to work. When the
> > button is clicked, I collapse the ColumnWidths of the English fields
> > and expand the Nepali fields. This works for when you click on the
> > combobox and the menu list drops down, however, the text area for the
> > combobox (the Value or Text property) is stuck on the first column even
> > though its width has been shrunk to 0. So even if a user makes a
> > selection from the dropdown, all they get is gibberish (english text
> > translated into a nepali font isn't pretty) in the text area.
> >
> > According to VB help the combobox displays the first visible column,
> > and shrinking a columns width to 0 automatically makes it
> > hidden/invisible. Has anyone else encountered this? Is there a way to
> > fix it?
> >
> > Here's a snippet of the code:
> >
> > Public Sub LangSwitch(toNepali As Boolean)
> > If (toNepali) Then
> > ....
> > District_Label.FontName = "Preeti"
> > District_Label.FontSize = 13
> > District_Label.Caption = "lhNnf"
> >
> > District.SetFocus
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> > District.FontName = "Preeti"
> > District.FontSize = 13
> > District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
> > Else
> > ....
> > District_Label.FontName = "MS Sans Serif"
> > District_Label.FontSize = 8
> > District_Label.Caption = "District"
> >
> > 'Debug.Print CStr(District.ColumnWidths)
> > District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
> > District.FontName = "MS Sans Serif"
> > District.FontSize = 8
> > End If
> > End Sub
> >


Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:31 AM
david epsom dot com dot au's Avatar david epsom dot com dot au
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

I'll try it again with 2003 on Monday, sorry can't do more till then.

(david)

"mitenko" wrote in message
news:1152259748.895871.322980@p79g2000cwp.googlegr oups.com...
> Hi David,
>
> thanks for the reply. I tried what you suggested but it didn't work.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>
> I'm using Access 2003 SP2.
>
> david epsom dot com dot au wrote:
>> works for me, "0;", ";0", Access 2000.
>>
>> Try it without the fixed width columns "1 in" in case
>> that is confusing it.
>>
>> (david)
>>
>>
>>
>> "mitenko" wrote in message
>> news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
>> > Hi y'all,
>> >
>> > I've got a form that switches between English and Nepali, so a user can
>> > enter data in either language. Data is stored in separate fields
>> > according to what language it is. The user clicks a button and the form
>> > changes its fonts and control sources.
>> >
>> > However, switching with a combo box doesn't seem to work. When the
>> > button is clicked, I collapse the ColumnWidths of the English fields
>> > and expand the Nepali fields. This works for when you click on the
>> > combobox and the menu list drops down, however, the text area for the
>> > combobox (the Value or Text property) is stuck on the first column even
>> > though its width has been shrunk to 0. So even if a user makes a
>> > selection from the dropdown, all they get is gibberish (english text
>> > translated into a nepali font isn't pretty) in the text area.
>> >
>> > According to VB help the combobox displays the first visible column,
>> > and shrinking a columns width to 0 automatically makes it
>> > hidden/invisible. Has anyone else encountered this? Is there a way to
>> > fix it?
>> >
>> > Here's a snippet of the code:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>> >
>> > Public Sub LangSwitch(toNepali As Boolean)
>> > If (toNepali) Then
>> > ....
>> > District_Label.FontName = "Preeti"
>> > District_Label.FontSize = 13
>> > District_Label.Caption = "lhNnf"
>> >
>> > District.SetFocus
>> > District.FontName = "Preeti"
>> > District.FontSize = 13
>> > District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
>> > Else
>> > ....
>> > District_Label.FontName = "MS Sans Serif"
>> > District_Label.FontSize = 8
>> > District_Label.Caption = "District"
>> >
>> > 'Debug.Print CStr(District.ColumnWidths)
>> > District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
>> > District.FontName = "MS Sans Serif"
>> > District.FontSize = 8
>> > End If
>> > End Sub
>> >

>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:35 AM
david epsom dot com dot au's Avatar david epsom dot com dot au
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

Use
Me.Recalc

or
Me.District.Requery


(david)


"david epsom dot com dot au" wrote in message
news:ORpI8GaoGHA.4504@TK2MSFTNGP04.phx.gbl...
> I'll try it again with 2003 on Monday, sorry can't do more till then.
>
> (david)
>
> "mitenko" wrote in message
> news:1152259748.895871.322980@p79g2000cwp.googlegr oups.com...
>> Hi David,
>>
>> thanks for the reply. I tried what you suggested but it didn't work.
>>
>> I'm using Access 2003 SP2.
>>
>> david epsom dot com dot au wrote:
>>> works for me, "0;", ";0", Access 2000.
>>>
>>> Try it without the fixed width columns "1 in" in case
>>> that is confusing it.
>>>
>>> (david)
>>>
>>>
>>>
>>> "mitenko" wrote in message
>>> news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
>>> > Hi y'all,
>>> >
>>> > I've got a form that switches between English and Nepali, so a user
>>> > can
>>> > enter data in either language. Data is stored in separate fields
>>> > according to what language it is. The user clicks a button and the
>>> > form
>>> > changes its fonts and control sources.
>>> >
>>> > However, switching with a combo box doesn't seem to work. When the
>>> > button is clicked, I collapse the ColumnWidths of the English fields
>>> > and expand the Nepali fields. This works for when you click on the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>>> > combobox and the menu list drops down, however, the text area for the
>>> > combobox (the Value or Text property) is stuck on the first column
>>> > even
>>> > though its width has been shrunk to 0. So even if a user makes a
>>> > selection from the dropdown, all they get is gibberish (english text
>>> > translated into a nepali font isn't pretty) in the text area.
>>> >
>>> > According to VB help the combobox displays the first visible column,
>>> > and shrinking a columns width to 0 automatically makes it
>>> > hidden/invisible. Has anyone else encountered this? Is there a way to
>>> > fix it?
>>> >
>>> > Here's a snippet of the code:
>>> >
>>> > Public Sub LangSwitch(toNepali As Boolean)
>>> > If (toNepali) Then
>>> > ....
>>> > District_Label.FontName = "Preeti"
>>> > District_Label.FontSize = 13
>>> > District_Label.Caption = "lhNnf"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>>> >
>>> > District.SetFocus
>>> > District.FontName = "Preeti"
>>> > District.FontSize = 13
>>> > District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
>>> > Else
>>> > ....
>>> > District_Label.FontName = "MS Sans Serif"
>>> > District_Label.FontSize = 8
>>> > District_Label.Caption = "District"
>>> >
>>> > 'Debug.Print CStr(District.ColumnWidths)
>>> > District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
>>> > District.FontName = "MS Sans Serif"
>>> > District.FontSize = 8
>>> > End If
>>> > End Sub
>>> >

>>

>
>



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:40 AM
mitenko's Avatar mitenko
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

Hi David,

I tried the Requery some time back, with no success. Unfortunately the
Recalc doesn't seem to produce any change either. Thanks for the help,
but I guess I'll have to come up with some way to work around this.

david epsom dot com dot au wrote:
> Use
> Me.Recalc
>
> or
> Me.District.Requery
>
>
> (david)
>
>
> "david epsom dot com dot au" wrote in message
> news:ORpI8GaoGHA.4504@TK2MSFTNGP04.phx.gbl...
> > I'll try it again with 2003 on Monday, sorry can't do more till then.
> >
> > (david)
> >
> > "mitenko" wrote in message
> > news:1152259748.895871.322980@p79g2000cwp.googlegr oups.com...
> >> Hi David,
> >>
> >> thanks for the reply. I tried what you suggested but it didn't work.
> >>
> >> I'm using Access 2003 SP2.
> >>
> >> david epsom dot com dot au wrote:
> >>> works for me, "0;", ";0", Access 2000.
> >>>
> >>> Try it without the fixed width columns "1 in" in case
> >>> that is confusing it.
> >>>
> >>> (david)
> >>>
> >>>
> >>>
> >>> "mitenko" wrote in message
> >>> news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
> >>> > Hi y'all,
> >>> >
> >>> > I've got a form that switches between English and Nepali, so a user
> >>> > can
> >>> > enter data in either language. Data is stored in separate fields
> >>> > according to what language it is. The user clicks a button and the
> >>> > form
> >>> > changes its fonts and control sources.
> >>> >
> >>> > However, switching with a combo box doesn't seem to work. When the
> >>> > button is clicked, I collapse the ColumnWidths of the English fields
> >>> > and expand the Nepali fields. This works for when you click on the
> >>> > combobox and the menu list drops down, however, the text area for the
> >>> > combobox (the Value or Text property) is stuck on the first column
> >>> > even
> >>> > though its width has been shrunk to 0. So even if a user makes a
> >>> > selection from the dropdown, all they get is gibberish (english text
> >>> > translated into a nepali font isn't pretty) in the text area.
> >>> >
> >>> > According to VB help the combobox displays the first visible column,
> >>> > and shrinking a columns width to 0 automatically makes it
> >>> > hidden/invisible. Has anyone else encountered this? Is there a way to
> >>> > fix it?
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> >>> >
> >>> > Here's a snippet of the code:
> >>> >
> >>> > Public Sub LangSwitch(toNepali As Boolean)
> >>> > If (toNepali) Then
> >>> > ....
> >>> > District_Label.FontName = "Preeti"
> >>> > District_Label.FontSize = 13
> >>> > District_Label.Caption = "lhNnf"
> >>> >
> >>> > District.SetFocus
> >>> > District.FontName = "Preeti"
> >>> > District.FontSize = 13
> >>> > District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
> >>> > Else
> >>> > ....
> >>> > District_Label.FontName = "MS Sans Serif"
> >>> > District_Label.FontSize = 8
> >>> > District_Label.Caption = "District"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
> >>> >
> >>> > 'Debug.Print CStr(District.ColumnWidths)
> >>> > District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
> >>> > District.FontName = "MS Sans Serif"
> >>> > District.FontSize = 8
> >>> > End If
> >>> > End Sub
> >>> >
> >>

> >
> >


Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:40 AM
david epsom dot com dot au's Avatar david epsom dot com dot au
Guest
 
Posts: n/a
   
   
Re: combobox hidden column still appearing in text area

  Donate Today!  
Both worked for me, Access 2003

(david)

"mitenko" wrote in message
news:1153716588.558153.159250@i42g2000cwa.googlegr oups.com...
> Hi David,
>
> I tried the Requery some time back, with no success. Unfortunately the
> Recalc doesn't seem to produce any change either. Thanks for the help,
> but I guess I'll have to come up with some way to work around this.
>
> david epsom dot com dot au wrote:
>> Use
>> Me.Recalc
>>
>> or
>> Me.District.Requery
>>
>>
>> (david)
>>
>>
>> "david epsom dot com dot au" wrote in message
>> news:ORpI8GaoGHA.4504@TK2MSFTNGP04.phx.gbl...
>> > I'll try it again with 2003 on Monday, sorry can't do more till then.
>> >
>> > (david)
>> >
>> > "mitenko" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>> > news:1152259748.895871.322980@p79g2000cwp.googlegr oups.com...
>> >> Hi David,
>> >>
>> >> thanks for the reply. I tried what you suggested but it didn't work.
>> >>
>> >> I'm using Access 2003 SP2.
>> >>
>> >> david epsom dot com dot au wrote:
>> >>> works for me, "0;", ";0", Access 2000.
>> >>>
>> >>> Try it without the fixed width columns "1 in" in case
>> >>> that is confusing it.
>> >>>
>> >>> (david)
>> >>>
>> >>>
>> >>>
>> >>> "mitenko" wrote in message
>> >>> news:1152166487.296141.270130@p79g2000cwp.googlegr oups.com...
>> >>> > Hi y'all,
>> >>> >
>> >>> > I've got a form that switches between English and Nepali, so a user
>> >>> > can
>> >>> > enter data in either language. Data is stored in separate fields
>> >>> > according to what language it is. The user clicks a button and the
>> >>> > form
>> >>> > changes its fonts and control sources.
>> >>> >
>> >>> > However, switching with a combo box doesn't seem to work. When the
>> >>> > button is clicked, I collapse the ColumnWidths of the English
>> >>> > fields
>> >>> > and expand the Nepali fields. This works for when you click on the
>> >>> > combobox and the menu list drops down, however, the text area for
>> >>> > the
>> >>> > combobox (the Value or Text property) is stuck on the first column
>> >>> > even
>> >>> > though its width has been shrunk to 0. So even if a user makes a
>> >>> > selection from the dropdown, all they get is gibberish (english
>> >>> > text
>> >>> > translated into a nepali font isn't pretty) in the text area.
>> >>> >
>> >>> > According to VB help the combobox displays the first visible
>> >>> > column,
>> >>> > and shrinking a columns width to 0 automatically makes it
>> >>> > hidden/invisible. Has anyone else encountered this? Is there a way
>> >>> > to
>> >>> > fix it?
>> >>> >
>> >>> > Here's a snippet of the code:
>> >>> >
>> >>> > Public Sub LangSwitch(toNepali As Boolean)
>> >>> > If (toNepali) Then
>> >>> > ....
>> >>> > District_Label.FontName = "Preeti"
>> >>> > District_Label.FontSize = 13
>> >>> > District_Label.Caption = "lhNnf"
>> >>> >
>> >>> > District.SetFocus
>> >>> > District.FontName = "Preeti"
>> >>> > District.FontSize = 13
>> >>> > District.ColumnWidths = "0;0;0;0;1.5 in;1.5 in;"
>> >>> > Else
>> >>> > ....
>> >>> > District_Label.FontName = "MS Sans Serif"
>> >>> > District_Label.FontSize = 8
>> >>> > District_Label.Caption = "District"
>> >>> >
>> >>> > 'Debug.Print CStr(District.ColumnWidths)
>> >>> > District.ColumnWidths = "0;1 in;1 in;1 in;0;0;"
>> >>> > District.FontName = "MS Sans Serif"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12658
>> >>> > District.FontSize = 8
>> >>> > End If
>> >>> > End Sub
>> >>> >
>> >>
>> >
>> >

>



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:08 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.78542 seconds with 30 queries