<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Child ID Access</title>
	<atom:link href="http://www.childidaccess.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.childidaccess.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 00:50:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I need help with access SQL.?</title>
		<link>http://www.childidaccess.com/access-help/i-need-help-with-access-sql</link>
		<comments>http://www.childidaccess.com/access-help/i-need-help-with-access-sql#comments</comments>
		<pubDate>Sun, 05 Feb 2012 00:50:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/i-need-help-with-access-sql</guid>
		<description><![CDATA[I am making a access database and I am working on a search and edit mechanism.
I need to select a row from a table in a query, that has an ID selected from a list box.
So I need to do something like:
SELECT Person.First_name, Person.Last_name, e.t.c.
WHERE Member_Key = [Forms]![AccountList]![list6].selection
You~re almost solved your problem. Your query should [...]]]></description>
			<content:encoded><![CDATA[<p>I am making a access database and I am working on a search and edit mechanism.</p>
<p>I need to select a row from a table in a query, that has an ID selected from a list box.</p>
<p>So I need to do something like:</p>
<p>SELECT Person.First_name, Person.Last_name, e.t.c.<br />
WHERE Member_Key = [Forms]![AccountList]![list6].selection<br />
<br />You~re almost solved your problem. Your query should be like this:</p>
<p>SELECT Person.First_name, Person.Last_name, e.t.c.<br />
WHERE Member_Key = [Forms]![AccountList]![list6].value</p>
<p>Hope it helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/i-need-help-with-access-sql/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is it possible to build a Mathematics questions database in MS Access?</title>
		<link>http://www.childidaccess.com/ms-access/is-it-possible-to-build-a-mathematics-questions-database-in-ms-access</link>
		<comments>http://www.childidaccess.com/ms-access/is-it-possible-to-build-a-mathematics-questions-database-in-ms-access#comments</comments>
		<pubDate>Tue, 31 Jan 2012 05:56:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ms access]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/ms-access/is-it-possible-to-build-a-mathematics-questions-database-in-ms-access</guid>
		<description><![CDATA[Am making a mathematics questions database in MS access. Everything seemed okay until it came to storing mathematical equations in a field. The problem is that the field can take up the Mathematics text in the questions but not the equation nor the Mathematics diagrams. Can someone out there help me with this . It [...]]]></description>
			<content:encoded><![CDATA[<p>Am making a mathematics questions database in MS access. Everything seemed okay until it came to storing mathematical equations in a field. The problem is that the field can take up the Mathematics text in the questions but not the equation nor the Mathematics diagrams. Can someone out there help me with this . It is very urgent.<br />
<br />You can store math equations in database if you use data type as text. To change data type open table into design view and you can choose data type for column.<br />
And for storing diagrams you should use data type as OLE. go through this tutorial for learning it.<br />
http://office.microsoft.com/en-us/access-help/store-images-in-a-database-HP005280225.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/ms-access/is-it-possible-to-build-a-mathematics-questions-database-in-ms-access/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Access Queries: Calculating Sales of each Product within Date Range?</title>
		<link>http://www.childidaccess.com/access-queries/microsoft-access-queries-calculating-sales-of-each-product-within-date-range</link>
		<comments>http://www.childidaccess.com/access-queries/microsoft-access-queries-calculating-sales-of-each-product-within-date-range#comments</comments>
		<pubDate>Tue, 24 Jan 2012 04:26:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access queries]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-queries/microsoft-access-queries-calculating-sales-of-each-product-within-date-range</guid>
		<description><![CDATA[Given 20 different products, how do I calculate the sales of each within the months of September and December?
Microsoft Access Queries: Calculating Sales of each Product within Date Range?
These are two different aspects you will need; a) the calculation of sales (a formula) and b) the criteria to define a date range (Sep &#8211; Nov).
Without [...]]]></description>
			<content:encoded><![CDATA[<p>Given 20 different products, how do I calculate the sales of each within the months of September and December?<br />
<br />Microsoft Access Queries: Calculating Sales of each Product within Date Range?</p>
<p>These are two different aspects you will need; a) the calculation of sales (a formula) and b) the criteria to define a date range (Sep &#8211; Nov).</p>
<p>Without knowing what it is you wish calculate, its difficult to help you other than show your an article of you calculate in a query. Take a look at http://www.about-access-databases.com/formula-query.html</p>
<p>The criteria for a date range would look something like:<br />
Between #01/09/2010# And #30/11/2010# in the correct date field of your query. Take a look at http://www.about-access-databases.com/query-criteria.html for more information on criteria.</p>
<p>Hope this helped.<br />
Ben Beitler</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-queries/microsoft-access-queries-calculating-sales-of-each-product-within-date-range/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I need an access code for an online textbook&#8230;. best answer 30 points!!! please help?</title>
		<link>http://www.childidaccess.com/access-help/i-need-an-access-code-for-an-online-textbook-best-answer-30-points-please-help</link>
		<comments>http://www.childidaccess.com/access-help/i-need-an-access-code-for-an-online-textbook-best-answer-30-points-please-help#comments</comments>
		<pubDate>Tue, 17 Jan 2012 03:44:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/i-need-an-access-code-for-an-online-textbook-best-answer-30-points-please-help</guid>
		<description><![CDATA[I need an access code for the nelson science grade 9 science perspectives online textbook
anyone that gives me useful and useable info will def get best answer&#8230;. help asap, i have exams on the 20th of this month!!!!!
PLeaseeee help  
thanks
I do not know this code.
]]></description>
			<content:encoded><![CDATA[<p>I need an access code for the nelson science grade 9 science perspectives online textbook</p>
<p>anyone that gives me useful and useable info will def get best answer&#8230;. help asap, i have exams on the 20th of this month!!!!!</p>
<p>PLeaseeee help <img src='http://www.childidaccess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thanks<br />
<br />I do not know this code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/i-need-an-access-code-for-an-online-textbook-best-answer-30-points-please-help/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can you tell me how to access internet thru PC via samsung kies?</title>
		<link>http://www.childidaccess.com/access-help/can-you-tell-me-how-to-access-internet-thru-pc-via-samsung-kies</link>
		<comments>http://www.childidaccess.com/access-help/can-you-tell-me-how-to-access-internet-thru-pc-via-samsung-kies#comments</comments>
		<pubDate>Thu, 12 Jan 2012 07:51:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/can-you-tell-me-how-to-access-internet-thru-pc-via-samsung-kies</guid>
		<description><![CDATA[My mobile handset is SAMSUNG GALAXY FIT S5670. I have activated IDEA GPRS- 3G in my mobile. IBrowsing from the mobile is working well. But unable to access NET thru pc via samsung kies. there is no option in kies to connect to the internet. please help me
yes sure, there is a way 
first in [...]]]></description>
			<content:encoded><![CDATA[<p>My mobile handset is SAMSUNG GALAXY FIT S5670. I have activated IDEA GPRS- 3G in my mobile. IBrowsing from the mobile is working well. But unable to access NET thru pc via samsung kies. there is no option in kies to connect to the internet. please help me<br />
<br />yes sure, there is a way <img src='http://www.childidaccess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
first in phone&gt;settings&gt;Wireless &amp; networks&gt;internet tethering (OR usb tethering). enable that<br />
then connect ur phone to pc and u will get notifiction.<br />
in ur pc there u get option in network that new home network and there u go&#8230;<br />
Hope this work <img src='http://www.childidaccess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/can-you-tell-me-how-to-access-internet-thru-pc-via-samsung-kies/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How do i change to silver background colour in Microsoft Access 2003?</title>
		<link>http://www.childidaccess.com/access-2003/how-do-i-change-to-silver-background-colour-in-microsoft-access-2003</link>
		<comments>http://www.childidaccess.com/access-2003/how-do-i-change-to-silver-background-colour-in-microsoft-access-2003#comments</comments>
		<pubDate>Thu, 05 Jan 2012 01:19:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access 2003]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-2003/how-do-i-change-to-silver-background-colour-in-microsoft-access-2003</guid>
		<description><![CDATA[I am trying to change the silver/grey colour background in access 2003. i cant seem to find any information on how to change the default colour in this application. i have found pleanty on how to change colour on a work sheet or a button but not the window before you open anything in access [...]]]></description>
			<content:encoded><![CDATA[<p>I am trying to change the silver/grey colour background in access 2003. i cant seem to find any information on how to change the default colour in this application. i have found pleanty on how to change colour on a work sheet or a button but not the window before you open anything in access 2003 please someone heeeeeeelllllllppppp!!<br />
<br />Catapilla, </p>
<p>You are talking about the background of the database. In 2003 I&#8217;m almost positive it cannot be changed, 2007 has 3 preset color schemes (but I wouldn&#8217;t recommend because 2007 stinks.) I&#8217;m thinking if there was a way to do it in VBA, I&#8217;m pretty sure it would have to be an on open database event, it would change backgrounds for all office applications and then you&#8217;d have to have a code to change them back when you close Access. I&#8217;m not even sure that functionality exists but I&#8217;m guessing if it did, you&#8217;d be changing the color for multiple things.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-2003/how-do-i-change-to-silver-background-colour-in-microsoft-access-2003/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Whenever I try this error always comes up: &quot;you do not have enough access privileges for this operation&quot;,help?</title>
		<link>http://www.childidaccess.com/access-help/whenever-i-try-this-error-always-comes-up-you-do-not-have-enough-access-privileges-for-this-operationhelp</link>
		<comments>http://www.childidaccess.com/access-help/whenever-i-try-this-error-always-comes-up-you-do-not-have-enough-access-privileges-for-this-operationhelp#comments</comments>
		<pubDate>Sat, 31 Dec 2011 06:26:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/whenever-i-try-this-error-always-comes-up-you-do-not-have-enough-access-privileges-for-this-operationhelp</guid>
		<description><![CDATA[I have an iPod touch 4th gen and iOS 5.0.1. I used to sync it with my desktop; an HP desktop with windows 7. But I just got a new HP Windows 7 Laptop with the latest version of iTunes. When I try syncing it with my brand new library it says something like this: [...]]]></description>
			<content:encoded><![CDATA[<p>I have an iPod touch 4th gen and iOS 5.0.1. I used to sync it with my desktop; an HP desktop with windows 7. But I just got a new HP Windows 7 Laptop with the latest version of iTunes. When I try syncing it with my brand new library it says something like this: Do you wanna transfer purchases made on your device to this computer? If you don&#8217;t all your purchases will be deleted.&quot; I clicked: &quot;Transfer&quot;, but then it says: &quot;you do not have enough access privileges for this operation&quot; so now I can&#8217;t sync my apps on my iPod touch to my new laptop and I don&#8217;t know what to do. Please help.<br />
<br />Check your answers here&#8230;.&gt;.&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/whenever-i-try-this-error-always-comes-up-you-do-not-have-enough-access-privileges-for-this-operationhelp/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Need help on my MAC and access to folder?</title>
		<link>http://www.childidaccess.com/access-help/need-help-on-my-mac-and-access-to-folder</link>
		<comments>http://www.childidaccess.com/access-help/need-help-on-my-mac-and-access-to-folder#comments</comments>
		<pubDate>Sat, 24 Dec 2011 04:54:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/need-help-on-my-mac-and-access-to-folder</guid>
		<description><![CDATA[allright i click on the icon that says Finder and then click on my name, which then say drop box. i click on it but it says i do not have access to it. I have to sigh in but i have not even signed up for anything like that. i guess what im saying [...]]]></description>
			<content:encoded><![CDATA[<p>allright i click on the icon that says Finder and then click on my name, which then say drop box. i click on it but it says i do not have access to it. I have to sigh in but i have not even signed up for anything like that. i guess what im saying is how do i gain access to my folder<br />
<br />Perhaps you have to alter the folder&#8217;s permission or access it in a different location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/need-help-on-my-mac-and-access-to-folder/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Im obese, Un-Talented, Finished year 12 though Throughout access, Dont get my license for 3 months. Help me?</title>
		<link>http://www.childidaccess.com/access-help/im-obese-un-talented-finished-year-12-though-throughout-access-dont-get-my-license-for-3-months-help-me</link>
		<comments>http://www.childidaccess.com/access-help/im-obese-un-talented-finished-year-12-though-throughout-access-dont-get-my-license-for-3-months-help-me#comments</comments>
		<pubDate>Thu, 15 Dec 2011 06:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/im-obese-un-talented-finished-year-12-though-throughout-access-dont-get-my-license-for-3-months-help-me</guid>
		<description><![CDATA[Tell me how to have more happiness in life.
just look at the positive things&#8230; u have a house, etc
]]></description>
			<content:encoded><![CDATA[<p>Tell me how to have more happiness in life.<br />
<br />just look at the positive things&#8230; u have a house, etc</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/im-obese-un-talented-finished-year-12-though-throughout-access-dont-get-my-license-for-3-months-help-me/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Help with Forms in MS Access?</title>
		<link>http://www.childidaccess.com/access-help/help-with-forms-in-ms-access</link>
		<comments>http://www.childidaccess.com/access-help/help-with-forms-in-ms-access#comments</comments>
		<pubDate>Fri, 02 Dec 2011 05:35:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[access help]]></category>

		<guid isPermaLink="false">http://www.childidaccess.com/access-help/help-with-forms-in-ms-access</guid>
		<description><![CDATA[I want to make forms, I have 3 tables: Customers (CustID, CustName), Products (ProdID, ProdName, Price) and a relation table Order (Cust ID, Prod ID, Quantity (!) ). When I&#8217;m trying to make forms with the customer, the product and the quantity, I can&#8217;t write anything in the field of quantity&#8230; please help me with [...]]]></description>
			<content:encoded><![CDATA[<p>I want to make forms, I have 3 tables: Customers (CustID, CustName), Products (ProdID, ProdName, Price) and a relation table Order (Cust ID, Prod ID, Quantity (!) ). When I&#8217;m trying to make forms with the customer, the product and the quantity, I can&#8217;t write anything in the field of quantity&#8230; please help me with this<br />
<br />The only way your queries will work is if the query has only one table in it.</p>
<p>You will need to create a form and a sub form for the orders.</p>
<p>Either that or unbind the form from the queries/tables and do everything in code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.childidaccess.com/access-help/help-with-forms-in-ms-access/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

