-original message-
Subject: AccessIndia Digest, Vol 58, Issue 1903
From: [email protected]
Date: 11/11/2012 12:57 pm
Send AccessIndia mailing list submissions to
[email protected]
To unsubscribe via the World Wide Web, visit
http://mail.accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of AccessIndia digest..."
Please do not reply to this digest mail. You should put your comments into a
new mail with appropriate subject line.
_______________________________________________
AccessIndia mailing list
[email protected]
http://mail.accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
Today's Topics:
1. Dwarka Delhi (KanchanPamnani)
2. Re: Excel formula (zoher kheriwala)
3. External Hard Drive. (Amiyo Biswas)
4. Re: External Hard Drive. (Syed Imran)
5. regarding hindi t.t.s. (Sanchit Katiyar)
6. Re: some brail collection, if needed. (shyam sharma)
7. Re: regarding hindi t.t.s. (shyam sharma)
8. Re: Excel formula (Zujar Shabbir Kanchwala)
9. Re: regarding hindi t.t.s. (Siddalingeshwar Ingalagi)
----------------------------------------------------------------------
Message: 1
Date: Sun, 11 Nov 2012 09:38:59 +0530
From: "KanchanPamnani" <[email protected]>
To: <[email protected]>
Subject: [AI] Dwarka Delhi
Message-ID: <006a01cdbfc2$489a12f0$d9ce38d0$@com>
Content-Type: text/plain; charset="us-ascii"
Accessindians staying in and around Delhi's Dwarka area please email me
with your contact information. I have a friend who will be shifting to
Dwarka who will probably require help.
Thanks
Kanchan
------------------------------
Message: 2
Date: Sun, 11 Nov 2012 10:30:09 +0530
From: "zoher kheriwala" <[email protected]>
To: <[email protected]>
Subject: Re: [AI] Excel formula
Message-ID: <99688B9E9A784BA99449635CAA0506DD@taher>
Content-Type: text/plain; format=flowed; charset="iso-8859-1";
reply-type=original
I am aware of putting the input text, but according to mukesh, if d13 is
grater then k12 then b13 should not accept ay data. In this scenario the
error message that mukesh wants to display is "pls enter the value less then
k12" is sounds illogical to me. Because the data validation condition for
b13 is not decided by the data you are entering in cell b13 but it is
decided by the comparison of 2 other cells d13 and k12. So in order to
accept the data by cell b13 the d13 has to be = to or less then k12. In this
condition b13 can accept any value no matter grater or less then k12. I hope
I was clear enough to explain my argument.
zoher kheriwala taheri menswear mumbai. skype id zoher.kheriwala
----- Original Message -----
From: "Zujar Shabbir Kanchwala" <[email protected]>
To: <[email protected]>
Sent: Saturday, November 10, 2012 10:31 PM
Subject: Re: [AI] Excel formula
> Mukeshji - Autosum is an Excel feature that helps inserting the SUM()
> function in the active cell. It cannot be used in a formula. As far you
> need
> to implement a formula on cell ranges of different sizes you may select a
> larger range while entering the formula for the first time and then copy
> it
> at various locations. Anyway this method is not foolproof and you may need
> to verify the results and rewrite the formula with the correct range where
> there are issues. Time consuming and tedious - but that's what comes to my
> mind at present.
>
> Zoher - The Data Validation dialog box has three tabs - Validation, Input
> Message and Error Alert. You specify the validation on the first tab -
> mostly people just use this one and don't explore the others. The Input
> Message is displayed near the cell when the cell is highlighted. JAWS
> speaks
> it well and is useful to hint about what valid input that the cell can
> accept. Error Alert is used to specify a custom error message in case the
> user enters an invalid value in the cell.
>
> To specify an Input Message, open the Data Validation dialog box, switch
> to
> the Input Message tab using CTRL+TAB, specify the Heading for the Input
> Message and the Message itself and hit the OK button.
>
> --
> Regards,
> Zujar...
>
> An optimist laughs to forget, whereas a pessimist forgets to laugh!
>
>
>
> -----Original Message-----
> From: AccessIndia [mailto:[email protected]] On
> Behalf
> Of Mukesh
> Sent: Saturday, November 10, 2012 5:21 PM
> To: [email protected]
> Subject: Re: [AI] Excel formula
>
> Hello Johar,
> Thank you. My first problem is solved. In second problem I have a little
> modification as follows because each time the cell renge is different. The
> data entries may more or less each time. So I don't want to stick to a
> particular cell range. Therefore I want to use auto sum formula so that
> the
> problem of different cell range will solve. Is it possible to give a auto
> sum formula in this case?
> Require a formula as follows:
>
> if cell b13 has a text 'Closing balance' the cell c13 should have a auto
> sum
> formula.
>
> Example: =if(b13="Closing balance",sum())
>
> This formula is giving error. Please correct it.
>
> Thank you.
>
> Regards
>
> Mukesh Baviskar
> Mobile: 0943161157
>
> --------------------------------------------------
> From: "zoher kheriwala" <[email protected]>
> Sent: Saturday, November 10, 2012 12:13 PM
> To: <[email protected]>
> Subject: Re: [AI] Excel formula
>
>> You can achieve your target by following formulas.
>>
>> Q1: If cell b13 has a text 'Closing balance', The cell k13 should have
>> a formula 'j13-i13'
>>
>> Answer: =if(b13="closing balance",j13-i13)
>>
>> Q 2: If cell b13 has a text 'Closing balance', The cell i13 should
>> have a formula 'sum(i5:i12)'
>>
>> Answer: =if(b13="closing balance",sum(i5:i12))
>>
>> Q: 3 a: If cell d13 is greater than k12, The cell d13 should not
>> accept the value
>>
>> Answer: step 1: go to b13
>>
>> Step 2: press alt+v, v
>>
>> Step 3: from allow combo box select custom.
>>
>> Step 4: press tab and type the formula =k12<=d13
>>
>> It means it will not accept the value if d 13 is > then k12.
>>
>> step 5: press tab and go to ok button.
>>
>> Q 3b: show a inpute message 'enter a value less than k12'
>>
>> Answer: This part is not clear to me, because if the value of d13 is
>> >then k12, then it will not allow the data to be entered. No matter
>> what you want to enter in cell b 13. If you want to enter the data,
>> then you must have the value of d13 = to or < then k12.
>>
>> zoher kheriwala taheri menswear mumbai. skype id zoher.kheriwala
>> ----- Original Message -----
>> From: "mukesh baviskar" <[email protected]>
>> To: "accessindia" <[email protected]>
>> Sent: Friday, November 09, 2012 10:48 PM
>> Subject: [AI] Excel formula
>>
>>
>>> Hello Friends,
>>> I want to create a formula for following:
>>> column b13: Closing balance
>>> Column i13: withdrawal
>>> Column j13: deposit
>>>
>>> Formula required:
>>> 1. If cell b13 has a text 'Closing balance', The cell k13 should have
>>> a formula 'j13-i13'
>>> 2, If cell b13 has a text 'Closing balance', The cell i13 should have
>>> a formula 'sum(i5:i12)'
>>> 3. If cell d13 is greater than k12, The cell d13 should not accept
>>> the value and show a inpute message 'enter a value less than k12'
>>>
>>> Please suggest me a formula to to do this. Thanking you in anticipation.
>>>
>>> Regards
>>>
>>> Mukesh Baviskar
>>> Mobile: 09403161157
>>>
>>>
>>> Search for old postings at:
>>> http://www.mail-archive.com/[email protected]/
>>>
>>> To unsubscribe send a message to
>>> [email protected]
>>> with the subject unsubscribe.
>>>
>>> To change your subscription to digest mode or make any other changes,
>>> please visit the list home page at
>>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.or
>>> g.in
>>>
>>
>>
>>
>> Search for old postings at:
>> http://www.mail-archive.com/[email protected]/
>>
>> To unsubscribe send a message to
>> [email protected]
>> with the subject unsubscribe.
>>
>> To change your subscription to digest mode or make any other changes,
>> please visit the list home page at
>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org
>> .in
>>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes,
> please
> visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes,
> please visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
------------------------------
Message: 3
Date: Sun, 11 Nov 2012 10:27:48 +0530
From: "Amiyo Biswas" <[email protected]>
To: <[email protected]>
Subject: [AI] External Hard Drive.
Message-ID: <562E3382261E414F870CCA346DD59A68@computera9d184>
Content-Type: text/plain; charset="iso-8859-1"
I am thinking of purchasing an external hard drive. Any idea about model and
price?
With best regards,
Amiyo Biswas
Cell: +91-9433464329
------------------------------
Message: 4
Date: Sun, 11 Nov 2012 11:28:39 +0530
From: "Syed Imran" <[email protected]>
To: <[email protected]>
Subject: Re: [AI] External Hard Drive.
Message-ID: <[email protected]>
Content-Type: text/plain; charset="US-ASCII"
Not too sure of the model number, but I bought this one on Ebay and so far
I've enjoyed using it.
Seagate Expansion 1 TB USB 3.0 + 2.0 Portable External Hard Drive | eBay
URL:
http://www.ebay.in/itm/New-model-Seagate-Expansion-1-TB-USB-3-0-2-0-Portable
-External-Hard-Drive-/170938134169?pt=LH_DefaultDomain_203&hash=item27ccb4ee
99
If the link doesn't work, copy the URL and paste it in the address bar of
your browser and hit enter. Delete the line breaks / spaces in the URL
before you paste it.
Hth
-----Original Message-----
From: AccessIndia [mailto:[email protected]] On Behalf
Of Amiyo Biswas
Sent: 11 November 2012 10:28
To: [email protected]
Subject: [AI] External Hard Drive.
I am thinking of purchasing an external hard drive. Any idea about model and
price?
With best regards,
Amiyo Biswas
Cell: +91-9433464329
Search for old postings at:
http://www.mail-archive.com/[email protected]/
To unsubscribe send a message to
[email protected]
with the subject unsubscribe.
To change your subscription to digest mode or make any other changes, please
visit the list home page at
http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
------------------------------
Message: 5
Date: Sun, 11 Nov 2012 11:32:43 +0530
From: Sanchit Katiyar <[email protected]>
To: [email protected]
Subject: [AI] regarding hindi t.t.s.
Message-ID:
<CABUdnJxxJ=MprYO4xRTzdgeeYJViW0CL_=za5uq9jpusw5s...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
hi all,
i am Sanchit Katiyar, i am persuing my graduation from St. Stephens
College. this is my first mail. it is very difficult for me to express
my gratitude in words to you all because i am so benifited by your
healthy discussions.
i need help. i am using window seven with 64 bit. i need a hindi
t.t.s. right now I am using N.v.d.a. but it is very difficult for me
to read with it.
so, please provide me a suibable software.
with regards,
sanchit Katiyar.
------------------------------
Message: 6
Date: Sun, 11 Nov 2012 12:00:09 +0530
From: shyam sharma <[email protected]>
To: [email protected]
Subject: Re: [AI] some brail collection, if needed.
Message-ID:
<cajmdzryevkf6s2pmrdqqpbfz0fx1iafojplrrxkzjthl43d...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Hi my dear friend, this is an excellent work you're doing. But please
mention what are these notes are about. which preparation these are
helpful for.
thanks.
On 11/10/12, gajendra <[email protected]> wrote:
> would you please names and details of them ?
> ----- Original Message -----
> From: "nitesh gupta" <[email protected]>
> To: "accessindia" <[email protected]>
> Sent: Thursday, November 08, 2012 11:55 PM
> Subject: [AI] some brail collection, if needed.
>
>
>> hi all.
>>
>> I have some brail collection, which I want 2 give somebody.
>> the collection is useful 4 preparation.
>> if any1 intrested can contact.
>> I did hard work 2 write those there4 I don't want 2 give it 2 the kabari.
>> some collection has been lost by me due 2 mishandling.
>> email:[email protected]
>>
>>
>> Search for old postings at:
>> http://www.mail-archive.com/[email protected]/
>>
>> To unsubscribe send a message to
>> [email protected]
>> with the subject unsubscribe.
>>
>> To change your subscription to digest mode or make any other changes,
>> please visit the list home page at
>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>>
>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes, please
> visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
>
------------------------------
Message: 7
Date: Sun, 11 Nov 2012 12:07:45 +0530
From: shyam sharma <[email protected]>
To: [email protected]
Subject: Re: [AI] regarding hindi t.t.s.
Message-ID:
<cajmdzrz7m6amp2a0nx_5auncod-u+mk2wsdfsj5ng-mqohg...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Hi, NVDA can read Hindi for you but if you don't like its annoying
voice then you can opt for Lekha which is generally used with JAWS. I
have but I can not upload due to slow speed of my datacard. Let's hope
if anyone comes for your help...
Thanks.
On 11/11/12, Sanchit Katiyar <[email protected]> wrote:
> hi all,
>
> i am Sanchit Katiyar, i am persuing my graduation from St. Stephens
> College. this is my first mail. it is very difficult for me to express
> my gratitude in words to you all because i am so benifited by your
> healthy discussions.
>
> i need help. i am using window seven with 64 bit. i need a hindi
> t.t.s. right now I am using N.v.d.a. but it is very difficult for me
> to read with it.
>
> so, please provide me a suibable software.
>
> with regards,
>
> sanchit Katiyar.
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes, please
> visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
>
------------------------------
Message: 8
Date: Sun, 11 Nov 2012 12:12:22 +0530
From: "Zujar Shabbir Kanchwala" <[email protected]>
To: <[email protected]>
Subject: Re: [AI] Excel formula
Message-ID: <[email protected]>
Content-Type: text/plain; charset="us-ascii"
Oh! So the Input Message is dependent on the value in other cell. Thanks
Zoher for bringing out the point.
The Input Message cannot be conditional. An alternative is to make it
descriptive for users to understand.
--
Regards,
Zujar...
An optimist laughs to forget, whereas a pessimist forgets to laugh!
-----Original Message-----
From: AccessIndia [mailto:[email protected]] On Behalf
Of zoher kheriwala
Sent: Sunday, November 11, 2012 10:30 AM
To: [email protected]
Subject: Re: [AI] Excel formula
I am aware of putting the input text, but according to mukesh, if d13 is
grater then k12 then b13 should not accept ay data. In this scenario the
error message that mukesh wants to display is "pls enter the value less then
k12" is sounds illogical to me. Because the data validation condition for
b13 is not decided by the data you are entering in cell b13 but it is
decided by the comparison of 2 other cells d13 and k12. So in order to
accept the data by cell b13 the d13 has to be = to or less then k12. In this
condition b13 can accept any value no matter grater or less then k12. I hope
I was clear enough to explain my argument.
zoher kheriwala taheri menswear mumbai. skype id zoher.kheriwala
----- Original Message -----
From: "Zujar Shabbir Kanchwala" <[email protected]>
To: <[email protected]>
Sent: Saturday, November 10, 2012 10:31 PM
Subject: Re: [AI] Excel formula
> Mukeshji - Autosum is an Excel feature that helps inserting the SUM()
> function in the active cell. It cannot be used in a formula. As far you
> need
> to implement a formula on cell ranges of different sizes you may select a
> larger range while entering the formula for the first time and then copy
> it
> at various locations. Anyway this method is not foolproof and you may need
> to verify the results and rewrite the formula with the correct range where
> there are issues. Time consuming and tedious - but that's what comes to my
> mind at present.
>
> Zoher - The Data Validation dialog box has three tabs - Validation, Input
> Message and Error Alert. You specify the validation on the first tab -
> mostly people just use this one and don't explore the others. The Input
> Message is displayed near the cell when the cell is highlighted. JAWS
> speaks
> it well and is useful to hint about what valid input that the cell can
> accept. Error Alert is used to specify a custom error message in case the
> user enters an invalid value in the cell.
>
> To specify an Input Message, open the Data Validation dialog box, switch
> to
> the Input Message tab using CTRL+TAB, specify the Heading for the Input
> Message and the Message itself and hit the OK button.
>
> --
> Regards,
> Zujar...
>
> An optimist laughs to forget, whereas a pessimist forgets to laugh!
>
>
>
> -----Original Message-----
> From: AccessIndia [mailto:[email protected]] On
> Behalf
> Of Mukesh
> Sent: Saturday, November 10, 2012 5:21 PM
> To: [email protected]
> Subject: Re: [AI] Excel formula
>
> Hello Johar,
> Thank you. My first problem is solved. In second problem I have a little
> modification as follows because each time the cell renge is different. The
> data entries may more or less each time. So I don't want to stick to a
> particular cell range. Therefore I want to use auto sum formula so that
> the
> problem of different cell range will solve. Is it possible to give a auto
> sum formula in this case?
> Require a formula as follows:
>
> if cell b13 has a text 'Closing balance' the cell c13 should have a auto
> sum
> formula.
>
> Example: =if(b13="Closing balance",sum())
>
> This formula is giving error. Please correct it.
>
> Thank you.
>
> Regards
>
> Mukesh Baviskar
> Mobile: 0943161157
>
> --------------------------------------------------
> From: "zoher kheriwala" <[email protected]>
> Sent: Saturday, November 10, 2012 12:13 PM
> To: <[email protected]>
> Subject: Re: [AI] Excel formula
>
>> You can achieve your target by following formulas.
>>
>> Q1: If cell b13 has a text 'Closing balance', The cell k13 should have
>> a formula 'j13-i13'
>>
>> Answer: =if(b13="closing balance",j13-i13)
>>
>> Q 2: If cell b13 has a text 'Closing balance', The cell i13 should
>> have a formula 'sum(i5:i12)'
>>
>> Answer: =if(b13="closing balance",sum(i5:i12))
>>
>> Q: 3 a: If cell d13 is greater than k12, The cell d13 should not
>> accept the value
>>
>> Answer: step 1: go to b13
>>
>> Step 2: press alt+v, v
>>
>> Step 3: from allow combo box select custom.
>>
>> Step 4: press tab and type the formula =k12<=d13
>>
>> It means it will not accept the value if d 13 is > then k12.
>>
>> step 5: press tab and go to ok button.
>>
>> Q 3b: show a inpute message 'enter a value less than k12'
>>
>> Answer: This part is not clear to me, because if the value of d13 is
>> >then k12, then it will not allow the data to be entered. No matter
>> what you want to enter in cell b 13. If you want to enter the data,
>> then you must have the value of d13 = to or < then k12.
>>
>> zoher kheriwala taheri menswear mumbai. skype id zoher.kheriwala
>> ----- Original Message -----
>> From: "mukesh baviskar" <[email protected]>
>> To: "accessindia" <[email protected]>
>> Sent: Friday, November 09, 2012 10:48 PM
>> Subject: [AI] Excel formula
>>
>>
>>> Hello Friends,
>>> I want to create a formula for following:
>>> column b13: Closing balance
>>> Column i13: withdrawal
>>> Column j13: deposit
>>>
>>> Formula required:
>>> 1. If cell b13 has a text 'Closing balance', The cell k13 should have
>>> a formula 'j13-i13'
>>> 2, If cell b13 has a text 'Closing balance', The cell i13 should have
>>> a formula 'sum(i5:i12)'
>>> 3. If cell d13 is greater than k12, The cell d13 should not accept
>>> the value and show a inpute message 'enter a value less than k12'
>>>
>>> Please suggest me a formula to to do this. Thanking you in anticipation.
>>>
>>> Regards
>>>
>>> Mukesh Baviskar
>>> Mobile: 09403161157
>>>
>>>
>>> Search for old postings at:
>>> http://www.mail-archive.com/[email protected]/
>>>
>>> To unsubscribe send a message to
>>> [email protected]
>>> with the subject unsubscribe.
>>>
>>> To change your subscription to digest mode or make any other changes,
>>> please visit the list home page at
>>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.or
>>> g.in
>>>
>>
>>
>>
>> Search for old postings at:
>> http://www.mail-archive.com/[email protected]/
>>
>> To unsubscribe send a message to
>> [email protected]
>> with the subject unsubscribe.
>>
>> To change your subscription to digest mode or make any other changes,
>> please visit the list home page at
>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org
>> .in
>>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes,
> please
> visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes,
> please visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
Search for old postings at:
http://www.mail-archive.com/[email protected]/
To unsubscribe send a message to
[email protected]
with the subject unsubscribe.
To change your subscription to digest mode or make any other changes, please
visit the list home page at
http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
------------------------------
Message: 9
Date: Sun, 11 Nov 2012 12:56:59 +0530
From: Siddalingeshwar Ingalagi <[email protected]>
To: [email protected]
Subject: Re: [AI] regarding hindi t.t.s.
Message-ID:
<CABB1fsqLb4kDQJL=i5xjn4t06wpibg_epzmn_mh6m3dysnr...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
if you are using jaws 14 then you have to select hindi lekha vocoliser
the file size around 73 mb by visiting fredom scientific website the
link is www.freedomscientific.com
On 11/11/12, shyam sharma <[email protected]> wrote:
> Hi, NVDA can read Hindi for you but if you don't like its annoying
> voice then you can opt for Lekha which is generally used with JAWS. I
> have but I can not upload due to slow speed of my datacard. Let's hope
> if anyone comes for your help...
> Thanks.
>
>
> On 11/11/12, Sanchit Katiyar <[email protected]> wrote:
>> hi all,
>>
>> i am Sanchit Katiyar, i am persuing my graduation from St. Stephens
>> College. this is my first mail. it is very difficult for me to express
>> my gratitude in words to you all because i am so benifited by your
>> healthy discussions.
>>
>> i need help. i am using window seven with 64 bit. i need a hindi
>> t.t.s. right now I am using N.v.d.a. but it is very difficult for me
>> to read with it.
>>
>> so, please provide me a suibable software.
>>
>> with regards,
>>
>> sanchit Katiyar.
>>
>>
>> Search for old postings at:
>> http://www.mail-archive.com/[email protected]/
>>
>> To unsubscribe send a message to
>> [email protected]
>> with the subject unsubscribe.
>>
>> To change your subscription to digest mode or make any other changes,
>> please
>> visit the list home page at
>> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>>
>>
>
>
> Search for old postings at:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe send a message to
> [email protected]
> with the subject unsubscribe.
>
> To change your subscription to digest mode or make any other changes, please
> visit the list home page at
> http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
>
>
--
Thanks and Regards.
Siddhalingeshwar/Prasad Ingalagi
mobile# 8792639989
e-mail [email protected]
End of AccessIndia Digest, Vol 58, Issue 1903
*********************************************
Search for old postings at:
http://www.mail-archive.com/[email protected]/
To unsubscribe send a message to
[email protected]
with the subject unsubscribe.
To change your subscription to digest mode or make any other changes, please
visit the list home page at
http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in