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

   
                                                                     Your Banner Here!    

posted yesterday to no avail

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
Sikh Misls - Yesterday, Today & Tomorrow IJSingh Sikh Misls 1 06-Jan-2011 13:57 PM
Any Open-Source "Equivalent" To Access Software Avail. ? Robert11 Information Technology 8 28-Jul-2006 08:11 AM
Posted yesterday: open linked template not working dogmelissa Information Technology 13 28-Jul-2006 08:07 AM
How do I query by relative date (for example, -1 for yesterday) Thomas Information Technology 1 03-Nov-2005 11:35 AM
Yesterday once more by Khushwant Singh Neutral Singh Essays on Sikhism 1 30-Oct-2004 06:40 AM


Tags
posted, yesterday, avail
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:07 AM
aheath15's Avatar aheath15
Guest
 
Posts: n/a
   
   
posted yesterday to no avail

  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 few quick questions.

1)on a products list, some products contain sub assemblies. This table is
used by a user constructing an order with boolean fields to select products.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/9806-posted-yesterday-to-no-avail.html
If products B and C are sub-components of product A, is there any way to have
B and C automatically selected if A is selected? If you have idea for coding,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
please let me know exact terms/exactly where i would put it/ and how to call
any necessary terms

2)Along the same lines, if product C is a necessary component of A, but not
on a sub data sheet, is there any way to automatically select C when A is
selected? In other words, on a list of products, some go hand in hand. I
need to make sure that if one is checked, another one is as well. How can i
do this? again, i am programming illiterate, so please be explicit!

3)one last question....is there any way to hide sub data sheets for products
that do not contain sub assemblies? or at least hide the "+" next to the
product, to make it clear that there are not any further components?

help on any of these issues would be hugely appreciated!!



 
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:07 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: posted yesterday to no avail

Question 1

in the afterupdate for product A (if they are check boxes)

me.productB = me.productA
me.productC = me.productA
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806

If A in turned on then B and C will be also and vise versa.

Question 2
It seems as if this is a repeat of question 1. If it is not then I need
more information to distinguish they two conditions.

Question 3
I don't believe so in the way that these forms are being shown. I looks
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
as if you have a datasheet view and a subform on that. The + says there
is a subform (with or without data)

Ron

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:07 AM
aheath15's Avatar aheath15
Guest
 
Posts: n/a
   
   
Re: posted yesterday to no avail

Thanks for your help! the difference with my second question is that product
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
C is no longer a sub - component of product A. They are on the same table.
My guess is what you said will still work for this. My only question is
WHERE to put in this code? and how will it be executed? from a macro?

"Ron2006" wrote:

> Question 1
>
> in the afterupdate for product A (if they are check boxes)
>
> me.productB = me.productA
> me.productC = me.productA
>
> If A in turned on then B and C will be also and vise versa.
>
> Question 2
> It seems as if this is a repeat of question 1. If it is not then I need
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
> more information to distinguish they two conditions.
>
> Question 3
> I don't believe so in the way that these forms are being shown. I looks
> as if you have a datasheet view and a subform on that. The + says there
> is a subform (with or without data)
>
> Ron
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:07 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: posted yesterday to no avail

You would put this code on the form in the afterupdate event for field
product A (if they are check boxes)

Right click on the field ProductA
Go to Properties
Go to event
Go to Afterupdate
click on the (....) on the right hand side
if it comes up select "code Builder"

add the following code (this assumes that the field names are productA
productB and productC. (the field name is under the Other tab of the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
properties for the field)

me.productB = me.productA
me.productC = me.productA

The above would work for question 1.

However, from the information so far I cannot see how you can
distinguish situation 1 form situation 2 when you are clicking product
A.

You can also go the other way for product C so that if you pick product
C it can make product A checked. But then you would have to go back and
revisit A if this were not the situation.

No macro is necessary, The after update event will be triggered
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
whenever you change the value in A.

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:07 AM
aheath15's Avatar aheath15
Guest
 
Posts: n/a
   
   
Re: posted yesterday to no avail

thank you so much for your help.....the last part that i'm not getting:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806

when you say right click on the field, are you talking about a
table/query/form?



> You would put this code on the form in the afterupdate event for field
> product A (if they are check boxes)
>
> Right click on the field ProductA
> Go to Properties
> Go to event
> Go to Afterupdate
> click on the (....) on the right hand side
> if it comes up select "code Builder"
>
> add the following code (this assumes that the field names are productA
> productB and productC. (the field name is under the Other tab of the
> properties for the field)
>
> me.productB = me.productA
> me.productC = me.productA
>
> The above would work for question 1.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806
>
> However, from the information so far I cannot see how you can
> distinguish situation 1 form situation 2 when you are clicking product
> A.
>
> You can also go the other way for product C so that if you pick product
> C it can make product A checked. But then you would have to go back and
> revisit A if this were not the situation.
>
> No macro is necessary, The after update event will be triggered
> whenever you change the value in A.
>
>

Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:07 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: posted yesterday to no avail

  Donate Today!  
The field on the form when looking at the form in design view.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9806

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 06:52 AM
21 Replies, 319 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 72 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 45 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 112 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,833 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 225 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, 39 Views
sikhism How important is Matha...
By Ishna
Yesterday 19:05 PM
58 Replies, 1,026 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 62 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 43 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 45 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 408 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 46 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 07:45 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.60024 seconds with 30 queries