Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,791| Members 17,821, Newest cdotkhn| Online 213
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

informative Messagebox!

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
Close App. with a MessageBox AFSSkier Information Technology 6 28-Jul-2006 08:34 AM
Query results in messagebox Wendy Information Technology 5 28-Jul-2006 08:19 AM
A Spiritually Informative and Inspiring Blog TeraRoop11 Spiritual Articles 1 27-Dec-2005 18:36 PM


Tags
informative, messagebox
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 08-Nov-2005, 12:52 PM
JOM's Avatar JOM
Guest
 
Posts: n/a
   
   
informative Messagebox!

  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 field that a employee enters an item. and another field that the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/6852-informative-messagebox.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
employee enters the user of that item....
What I would to see is when a user enter enters an item, a popup will appear
and inform the user that there are several users of that item and list the
users e.g., if the employee enters printer xyz the following will appear!

printer xyz has 4 users
user1's name
user2's name
user3's name
user4's name

*








 
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 08-Nov-2005, 12:52 PM
Ofer's Avatar Ofer
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

Try this code

Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
Set MyDb = currentdb
Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
Me.Item & "'")
If not MyRec.Eof then
Myrec.MoveLast
MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
MyRec.movefirst
While Not MyRec.Eof
MyStr = MyStr & vbCrLf
MyStr = MyStr & MyRec.[User_Name]
MyRec.MoveNext
Wend
End If

I didn't try the code, so you might get an erorr, also change the fields and
table name according to your data
This code need to be on the after update event of the Item field

--
The next line is only relevant to Microsoft''s web-based interface users.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"JOM" wrote:

> I have a field that a employee enters an item. and another field that the
> employee enters the user of that item....
> What I would to see is when a user enter enters an item, a popup will appear
> and inform the user that there are several users of that item and list the
> users e.g., if the employee enters printer xyz the following will appear!
>
> printer xyz has 4 users
> user1's name
> user2's name
> user3's name
> user4's name

Reply With Quote
  #3 (permalink)  
Old 08-Nov-2005, 12:52 PM
Ofer's Avatar Ofer
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

I forgot to put the message box before the End if

MsgBox MyStr


--
The next line is only relevant to Microsoft''s web-based interface users.
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"Ofer" wrote:

> Try this code
>
> Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> Set MyDb = currentdb
> Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> Me.Item & "'")
> If not MyRec.Eof then
> Myrec.MoveLast
> MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> MyRec.movefirst
> While Not MyRec.Eof
> MyStr = MyStr & vbCrLf
> MyStr = MyStr & MyRec.[User_Name]
> MyRec.MoveNext
> Wend
> End If
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
>
> I didn't try the code, so you might get an erorr, also change the fields and
> table name according to your data
> This code need to be on the after update event of the Item field
>
> --
> The next line is only relevant to Microsoft''s web-based interface users.
> If I answered your question, please mark it as an answer. It''s useful to
> know that my answer was helpful
> HTH, good luck
>
>
> "JOM" wrote:
>
> > I have a field that a employee enters an item. and another field that the
> > employee enters the user of that item....
> > What I would to see is when a user enter enters an item, a popup will appear
> > and inform the user that there are several users of that item and list the
> > users e.g., if the employee enters printer xyz the following will appear!
> >
> > printer xyz has 4 users
> > user1's name
> > user2's name
> > user3's name
> > user4's name

Reply With Quote
  #4 (permalink)  
Old 08-Nov-2005, 12:52 PM
JOM's Avatar JOM
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

I have tried it but am having an error in the following line
Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
Me.Item & "'")

its saying that I need a list separator or )





"Ofer" wrote:

> Try this code
>
> Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> Set MyDb = currentdb
> Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> Me.Item & "'")
> If not MyRec.Eof then
> Myrec.MoveLast
> MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> MyRec.movefirst
> While Not MyRec.Eof
> MyStr = MyStr & vbCrLf
> MyStr = MyStr & MyRec.[User_Name]
> MyRec.MoveNext
> Wend
> End If
>
> I didn't try the code, so you might get an erorr, also change the fields and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> table name according to your data
> This code need to be on the after update event of the Item field
>
> --
> The next line is only relevant to Microsoft''s web-based interface users.
> If I answered your question, please mark it as an answer. It''s useful to
> know that my answer was helpful
> HTH, good luck
>
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
>
> "JOM" wrote:
>
> > I have a field that a employee enters an item. and another field that the
> > employee enters the user of that item....
> > What I would to see is when a user enter enters an item, a popup will appear
> > and inform the user that there are several users of that item and list the
> > users e.g., if the employee enters printer xyz the following will appear!
> >
> > printer xyz has 4 users
> > user1's name
> > user2's name
> > user3's name
> > user4's name

Reply With Quote
  #5 (permalink)  
Old 08-Nov-2005, 12:52 PM
Ofer's Avatar Ofer
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

Did you change the names
TableName = The table name where the data is stored
Item = the name of the Item Field

It also seem that I forgot a & before the Me.Item

Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
Me.Item & "'")

--
The next line is only relevant to Microsoft''s web-based interface users.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"JOM" wrote:

> I have tried it but am having an error in the following line
> Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> Me.Item & "'")
>
> its saying that I need a list separator or )
>
>
>
>
>
> "Ofer" wrote:
>
> > Try this code
> >
> > Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> > Set MyDb = currentdb
> > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > Me.Item & "'")
> > If not MyRec.Eof then
> > Myrec.MoveLast
> > MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> > MyRec.movefirst
> > While Not MyRec.Eof
> > MyStr = MyStr & vbCrLf
> > MyStr = MyStr & MyRec.[User_Name]
> > MyRec.MoveNext
> > Wend
> > End If
> >
> > I didn't try the code, so you might get an erorr, also change the fields and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > table name according to your data
> > This code need to be on the after update event of the Item field
> >
> > --
> > The next line is only relevant to Microsoft''s web-based interface users.
> > If I answered your question, please mark it as an answer. It''s useful to
> > know that my answer was helpful
> > HTH, good luck
> >
> >
> > "JOM" wrote:
> >
> > > I have a field that a employee enters an item. and another field that the
> > > employee enters the user of that item....
> > > What I would to see is when a user enter enters an item, a popup will appear
> > > and inform the user that there are several users of that item and list the
> > > users e.g., if the employee enters printer xyz the following will appear!
> > >
> > > printer xyz has 4 users
> > > user1's name
> > > user2's name
> > > user3's name
> > > user4's name

Reply With Quote
  #6 (permalink)  
Old 08-Nov-2005, 12:53 PM
JOM's Avatar JOM
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

Ok that did the trick, but another error came up,
method or data member not found on the following line

MyStr = MyStr & MyRec.[User_Name]



"Ofer" wrote:

> Did you change the names
> TableName = The table name where the data is stored
> Item = the name of the Item Field
>
> It also seem that I forgot a & before the Me.Item
>
> Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
> Me.Item & "'")
>
> --
> The next line is only relevant to Microsoft''s web-based interface users.
> If I answered your question, please mark it as an answer. It''s useful to
> know that my answer was helpful
> HTH, good luck
>
>
> "JOM" wrote:
>
> > I have tried it but am having an error in the following line
> > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > Me.Item & "'")
> >
> > its saying that I need a list separator or )
> >
> >
> >
> >
> >
> > "Ofer" wrote:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> >
> > > Try this code
> > >
> > > Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> > > Set MyDb = currentdb
> > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > Me.Item & "'")
> > > If not MyRec.Eof then
> > > Myrec.MoveLast
> > > MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> > > MyRec.movefirst
> > > While Not MyRec.Eof
> > > MyStr = MyStr & vbCrLf
> > > MyStr = MyStr & MyRec.[User_Name]
> > > MyRec.MoveNext
> > > Wend
> > > End If
> > >
> > > I didn't try the code, so you might get an erorr, also change the fields and
> > > table name according to your data
> > > This code need to be on the after update event of the Item field
> > >
> > > --
> > > The next line is only relevant to Microsoft''s web-based interface users.
> > > If I answered your question, please mark it as an answer. It''s useful to
> > > know that my answer was helpful
> > > HTH, good luck
> > >
> > >
> > > "JOM" wrote:
> > >
> > > > I have a field that a employee enters an item. and another field that the
> > > > employee enters the user of that item....
> > > > What I would to see is when a user enter enters an item, a popup will appear
> > > > and inform the user that there are several users of that item and list the
> > > > users e.g., if the employee enters printer xyz the following will appear!
> > > >
> > > > printer xyz has 4 users
> > > > user1's name
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > user2's name
> > > > user3's name
> > > > user4's name

Reply With Quote
  #7 (permalink)  
Old 08-Nov-2005, 12:53 PM
Ofer's Avatar Ofer
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

Sorry, my mistake

change it to
MyRec![User_Name]

instead of a dot

--
The next line is only relevant to Microsoft''s web-based interface users.
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"JOM" wrote:

> Ok that did the trick, but another error came up,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> method or data member not found on the following line
>
> MyStr = MyStr & MyRec.[User_Name]
>
>
>
> "Ofer" wrote:
>
> > Did you change the names
> > TableName = The table name where the data is stored
> > Item = the name of the Item Field
> >
> > It also seem that I forgot a & before the Me.Item
> >
> > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
> > Me.Item & "'")
> >
> > --
> > The next line is only relevant to Microsoft''s web-based interface users.
> > If I answered your question, please mark it as an answer. It''s useful to
> > know that my answer was helpful
> > HTH, good luck
> >
> >
> > "JOM" wrote:
> >
> > > I have tried it but am having an error in the following line
> > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > Me.Item & "'")
> > >
> > > its saying that I need a list separator or )
> > >
> > >
> > >
> > >
> > >
> > > "Ofer" wrote:
> > >
> > > > Try this code
> > > >
> > > > Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> > > > Set MyDb = currentdb
> > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > > Me.Item & "'")
> > > > If not MyRec.Eof then
> > > > Myrec.MoveLast
> > > > MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> > > > MyRec.movefirst
> > > > While Not MyRec.Eof
> > > > MyStr = MyStr & vbCrLf
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > MyStr = MyStr & MyRec.[User_Name]
> > > > MyRec.MoveNext
> > > > Wend
> > > > End If
> > > >
> > > > I didn't try the code, so you might get an erorr, also change the fields and
> > > > table name according to your data
> > > > This code need to be on the after update event of the Item field
> > > >
> > > > --
> > > > The next line is only relevant to Microsoft''s web-based interface users.
> > > > If I answered your question, please mark it as an answer. It''s useful to
> > > > know that my answer was helpful
> > > > HTH, good luck
> > > >
> > > >
> > > > "JOM" wrote:
> > > >
> > > > > I have a field that a employee enters an item. and another field that the
> > > > > employee enters the user of that item....
> > > > > What I would to see is when a user enter enters an item, a popup will appear
> > > > > and inform the user that there are several users of that item and list the
> > > > > users e.g., if the employee enters printer xyz the following will appear!
> > > > >
> > > > > printer xyz has 4 users
> > > > > user1's name
> > > > > user2's name
> > > > > user3's name
> > > > > user4's name

Reply With Quote
  #8 (permalink)  
Old 08-Nov-2005, 12:53 PM
JOM's Avatar JOM
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

ok, that did the trick but another error came up run time error 3131 Syntax
error in from clause
in the following line!
Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
me.Item & "'")

"Ofer" wrote:

> Sorry, my mistake
>
> change it to
> MyRec![User_Name]
>
> instead of a dot
>
> --
> The next line is only relevant to Microsoft''s web-based interface users.
> If I answered your question, please mark it as an answer. It''s useful to
> know that my answer was helpful
> HTH, good luck
>
>
> "JOM" wrote:
>
> > Ok that did the trick, but another error came up,
> > method or data member not found on the following line
> >
> > MyStr = MyStr & MyRec.[User_Name]
> >
> >
> >
> > "Ofer" wrote:
> >
> > > Did you change the names
> > > TableName = The table name where the data is stored
> > > Item = the name of the Item Field
> > >
> > > It also seem that I forgot a & before the Me.Item
> > >
> > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
> > > Me.Item & "'")
> > >
> > > --
> > > The next line is only relevant to Microsoft''s web-based interface users.
> > > If I answered your question, please mark it as an answer. It''s useful to
> > > know that my answer was helpful
> > > HTH, good luck
> > >
> > >
> > > "JOM" wrote:
> > >
> > > > I have tried it but am having an error in the following line
> > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > > Me.Item & "'")
> > > >
> > > > its saying that I need a list separator or )
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > "Ofer" wrote:
> > > >
> > > > > Try this code
> > > > >
> > > > > Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> > > > > Set MyDb = currentdb
> > > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > > > Me.Item & "'")
> > > > > If not MyRec.Eof then
> > > > > Myrec.MoveLast
> > > > > MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> > > > > MyRec.movefirst
> > > > > While Not MyRec.Eof
> > > > > MyStr = MyStr & vbCrLf
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > > MyStr = MyStr & MyRec.[User_Name]
> > > > > MyRec.MoveNext
> > > > > Wend
> > > > > End If
> > > > >
> > > > > I didn't try the code, so you might get an erorr, also change the fields and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > > table name according to your data
> > > > > This code need to be on the after update event of the Item field
> > > > >
> > > > > --
> > > > > The next line is only relevant to Microsoft''s web-based interface users.
> > > > > If I answered your question, please mark it as an answer. It''s useful to
> > > > > know that my answer was helpful
> > > > > HTH, good luck
> > > > >
> > > > >
> > > > > "JOM" wrote:
> > > > >
> > > > > > I have a field that a employee enters an item. and another field that the
> > > > > > employee enters the user of that item....
> > > > > > What I would to see is when a user enter enters an item, a popup will appear
> > > > > > and inform the user that there are several users of that item and list the
> > > > > > users e.g., if the employee enters printer xyz the following will appear!
> > > > > >
> > > > > > printer xyz has 4 users
> > > > > > user1's name
> > > > > > user2's name
> > > > > > user3's name
> > > > > > user4's name

Reply With Quote
  #9 (permalink)  
Old 08-Nov-2005, 12:53 PM
Ofer's Avatar Ofer
Guest
 
Posts: n/a
   
   
RE: informative Messagebox!

  Donate Today!  
Can you post the full code that you are using, and not the one I posted?


--
The next line is only relevant to Microsoft''s web-based interface users.
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"JOM" wrote:

> ok, that did the trick but another error came up run time error 3131 Syntax
> error in from clause
> in the following line!
> Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
> me.Item & "'")
>
> "Ofer" wrote:
>
> > Sorry, my mistake
> >
> > change it to
> > MyRec![User_Name]
> >
> > instead of a dot
> >
> > --
> > The next line is only relevant to Microsoft''s web-based interface users.
> > If I answered your question, please mark it as an answer. It''s useful to
> > know that my answer was helpful
> > HTH, good luck
> >
> >
> > "JOM" wrote:
> >
> > > Ok that did the trick, but another error came up,
> > > method or data member not found on the following line
> > >
> > > MyStr = MyStr & MyRec.[User_Name]
> > >
> > >
> > >
> > > "Ofer" wrote:
> > >
> > > > Did you change the names
> > > > TableName = The table name where the data is stored
> > > > Item = the name of the Item Field
> > > >
> > > > It also seem that I forgot a & before the Me.Item
> > > >
> > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '" &
> > > > Me.Item & "'")
> > > >
> > > > --
> > > > The next line is only relevant to Microsoft''s web-based interface users.
> > > > If I answered your question, please mark it as an answer. It''s useful to
> > > > know that my answer was helpful
> > > > HTH, good luck
> > > >
> > > >
> > > > "JOM" wrote:
> > > >
> > > > > I have tried it but am having an error in the following line
> > > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > > Me.Item & "'")
> > > > >
> > > > > its saying that I need a list separator or )
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6852
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > "Ofer" wrote:
> > > > >
> > > > > > Try this code
> > > > > >
> > > > > > Dim MyDb as Dao.Database, MyRec as Dao.Recordset, MyStr as String
> > > > > > Set MyDb = currentdb
> > > > > > Set MyRec = MyDb.OpenRecordset("Select * From TableName Where Item = '"
> > > > > > Me.Item & "'")
> > > > > > If not MyRec.Eof then
> > > > > > Myrec.MoveLast
> > > > > > MyStr = Me.Item & " Has " & MyRec.RecordCount & " Users"
> > > > > > MyRec.movefirst
> > > > > > While Not MyRec.Eof
> > > > > > MyStr = MyStr & vbCrLf
> > > > > > MyStr = MyStr & MyRec.[User_Name]
> > > > > > MyRec.MoveNext
> > > > > > Wend
> > > > > > End If
> > > > > >
> > > > > > I didn't try the code, so you might get an erorr, also change the fields and
> > > > > > table name according to your data
> > > > > > This code need to be on the after update event of the Item field
> > > > > >
> > > > > > --
> > > > > > The next line is only relevant to Microsoft''s web-based interface users.
> > > > > > If I answered your question, please mark it as an answer. It''s useful to
> > > > > > know that my answer was helpful
> > > > > > HTH, good luck
> > > > > >
> > > > > >
> > > > > > "JOM" wrote:
> > > > > >
> > > > > > > I have a field that a employee enters an item. and another field that the
> > > > > > > employee enters the user of that item....
> > > > > > > What I would to see is when a user enter enters an item, a popup will appear
> > > > > > > and inform the user that there are several users of that item and list the
> > > > > > > users e.g., if the employee enters printer xyz the following will appear!
> > > > > > >
> > > > > > > printer xyz has 4 users
> > > > > > > user1's name
> > > > > > > user2's name
> > > > > > > user3's name
> > > > > > > user4's name

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 need urgent advice.......
Today 10:03 AM
7 Replies, 87 Views
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 348 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,041 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 120 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 230 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, 46 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, 416 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 10:32 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.73361 seconds with 30 queries