Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,788| Members 17,820, Newest waheguruhelpme| Online 219
Home Contact
 (Forgotten?): 
    A portrait by Bhagat Singh of Sikhiart.com

   
                                                                     Your Banner Here!    

Controlling edit

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
Technique Of Controlling Mind Narayanjot Kaur Gurmat Vichaar 13 31-Mar-2008 23:20 PM
Controlling size of a query Ben Coffey Information Technology 1 28-Jul-2006 08:28 AM
controlling backcolor for records in a report Warden Information Technology 1 28-Jul-2006 08:15 AM
Controlling duplicated records Fadi Information Technology 6 28-Jul-2006 08:12 AM
Beware Of New Masands Controlling Sikhi Gyani Jarnail Singh Essays on Sikhism 0 23-Nov-2004 03:43 AM


Tags
controlling, edit
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:22 AM
John's Avatar John
Guest
 
Posts: n/a
   
   
Controlling edit

  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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11591-controlling-edit.html

How can I programmatically block edits on a form and all its sub forms? I
have tried me.AllowEdits = False but it only blocks edits on the main form
and not on any of the sub forms on the main form.

Thanks

Regards




*








 
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:22 AM
tina's Avatar tina
Guest
 
Posts: n/a
   
   
Re: Controlling edit

to prevent edits on a subform, from code that runs in the main form, try

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
Me!SubformControlName.Form.AllowEdits = False

make sure you use the name of the subform *control* in the main form, not
the name of the subform as it appears in the database window. the two names
are not always the same.

hth


"John" wrote in message
news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
> Hi
>
> How can I programmatically block edits on a form and all its sub forms? I
> have tried me.AllowEdits = False but it only blocks edits on the main form
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> and not on any of the sub forms on the main form.
>
> Thanks
>
> Regards
>
>
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:22 AM
John's Avatar John
Guest
 
Posts: n/a
   
   
Re: Controlling edit

Sorry, I should have been clearer. The sub form only has a tab control on it
and then each tab in turn has a sub form on it. I am trying to block one of
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
the sub forms on the tab control, so I have tried this;

Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False

But this has not worked. Any ideas?

Thanks

Regards

"tina" wrote in message
news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
> to prevent edits on a subform, from code that runs in the main form, try
>
> Me!SubformControlName.Form.AllowEdits = False
>
> make sure you use the name of the subform *control* in the main form, not
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> the name of the subform as it appears in the database window. the two
> names
> are not always the same.
>
> hth
>
>
> "John" wrote in message
> news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
>> Hi
>>
>> How can I programmatically block edits on a form and all its sub forms? I
>> have tried me.AllowEdits = False but it only blocks edits on the main
>> form
>> and not on any of the sub forms on the main form.
>>
>> Thanks
>>
>> Regards
>>
>>
>>

>
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:22 AM
tina's Avatar tina
Guest
 
Posts: n/a
   
   
Re: Controlling edit

where is the code running? in the main form? first level subform? or one of
the second level subforms? if the latter, is the code intended to change the
sub-subform it's running in, or one of the other sub-subforms?

hth


"John" wrote in message
news:ukoudfikGHA.1204@TK2MSFTNGP02.phx.gbl...
> Sorry, I should have been clearer. The sub form only has a tab control on

it
> and then each tab in turn has a sub form on it. I am trying to block one

of
> the sub forms on the tab control, so I have tried this;
>
> Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
>
> But this has not worked. Any ideas?
>
> Thanks
>
> Regards
>
> "tina" wrote in message
> news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
> > to prevent edits on a subform, from code that runs in the main form, try
> >
> > Me!SubformControlName.Form.AllowEdits = False
> >
> > make sure you use the name of the subform *control* in the main form,

not
> > the name of the subform as it appears in the database window. the two
> > names
> > are not always the same.
> >
> > hth
> >
> >
> > "John" wrote in message
> > news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
> >> Hi
> >>
> >> How can I programmatically block edits on a form and all its sub forms?

I
> >> have tried me.AllowEdits = False but it only blocks edits on the main
> >> form
> >> and not on any of the sub forms on the main form.
> >>
> >> Thanks
> >>
> >> Regards
> >>
> >>
> >>

> >
> >

>
>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:22 AM
John's Avatar John
Guest
 
Posts: n/a
   
   
Re: Controlling edit

Code is running on the main form.

Thanks

Regards

"tina" wrote in message
news:Hi1lg.205403$Fs1.86551@bgtnsc05-news.ops.worldnet.att.net...
> where is the code running? in the main form? first level subform? or one
> of
> the second level subforms? if the latter, is the code intended to change
> the
> sub-subform it's running in, or one of the other sub-subforms?
>
> hth
>
>
> "John" wrote in message
> news:ukoudfikGHA.1204@TK2MSFTNGP02.phx.gbl...
>> Sorry, I should have been clearer. The sub form only has a tab control on

> it
>> and then each tab in turn has a sub form on it. I am trying to block one

> of
>> the sub forms on the tab control, so I have tried this;
>>
>> Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False
>>
>> But this has not worked. Any ideas?
>>
>> Thanks
>>
>> Regards
>>
>> "tina" wrote in message
>> news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
>> > to prevent edits on a subform, from code that runs in the main form,
>> > try
>> >
>> > Me!SubformControlName.Form.AllowEdits = False
>> >
>> > make sure you use the name of the subform *control* in the main form,

> not
>> > the name of the subform as it appears in the database window. the two
>> > names
>> > are not always the same.
>> >
>> > hth
>> >
>> >
>> > "John" wrote in message
>> > news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
>> >> Hi
>> >>
>> >> How can I programmatically block edits on a form and all its sub
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
>> >> forms?

> I
>> >> have tried me.AllowEdits = False but it only blocks edits on the main
>> >> form
>> >> and not on any of the sub forms on the main form.
>> >>
>> >> Thanks
>> >>
>> >> Regards
>> >>
>> >>
>> >>
>> >
>> >

>>
>>

>
>



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:22 AM
tina's Avatar tina
Guest
 
Posts: n/a
   
   
Re: Controlling edit

ok, try

Me!Subform1ControlName.Form!SubSubForm1ControlName .Form.AllowEdits =
False

the above goes all on one line, of course. and again, make sure you're using
the name of the subform *control* in each subform reference, NOT the name of
the subform form object in the database window - they're not always the
same.

if the above doesn't work for some reason, try just locking the subform
control itself - i've used that technique successfully in the past, as

Me!Subform1ControlName.Form!SubSubForm1ControlName .Locked = True

again, the above is all on one line.

hth


"John" wrote in message
news:u8YglDskGHA.4284@TK2MSFTNGP05.phx.gbl...
> Code is running on the main form.
>
> Thanks
>
> Regards
>
> "tina" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> news:Hi1lg.205403$Fs1.86551@bgtnsc05-news.ops.worldnet.att.net...
> > where is the code running? in the main form? first level subform? or one
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> > of
> > the second level subforms? if the latter, is the code intended to change
> > the
> > sub-subform it's running in, or one of the other sub-subforms?
> >
> > hth
> >
> >
> > "John" wrote in message
> > news:ukoudfikGHA.1204@TK2MSFTNGP02.phx.gbl...
> >> Sorry, I should have been clearer. The sub form only has a tab control

on
> > it
> >> and then each tab in turn has a sub form on it. I am trying to block

one
> > of
> >> the sub forms on the tab control, so I have tried this;
> >>
> >> Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False
> >>
> >> But this has not worked. Any ideas?
> >>
> >> Thanks
> >>
> >> Regards
> >>
> >> "tina" wrote in message
> >> news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
> >> > to prevent edits on a subform, from code that runs in the main form,
> >> > try
> >> >
> >> > Me!SubformControlName.Form.AllowEdits = False
> >> >
> >> > make sure you use the name of the subform *control* in the main form,

> > not
> >> > the name of the subform as it appears in the database window. the two
> >> > names
> >> > are not always the same.
> >> >
> >> > hth
> >> >
> >> >
> >> > "John" wrote in message
> >> > news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
> >> >> Hi
> >> >>
> >> >> How can I programmatically block edits on a form and all its sub
> >> >> forms?

> > I
> >> >> have tried me.AllowEdits = False but it only blocks edits on the

main
> >> >> form
> >> >> and not on any of the sub forms on the main form.
> >> >>
> >> >> Thanks
> >> >>
> >> >> Regards
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>

> >
> >

>
>



Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:22 AM
John's Avatar John
Guest
 
Posts: n/a
   
   
Re: Controlling edit

Hi

Locked worked for me. Thanks. I don't know why allow edits didn't. May be a
little known bug.

Regards


"tina" wrote in message
news:Lodlg.37615$mF2.5180@bgtnsc04-news.ops.worldnet.att.net...
> ok, try
>
> Me!Subform1ControlName.Form!SubSubForm1ControlName .Form.AllowEdits =
> False
>
> the above goes all on one line, of course. and again, make sure you're
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> using
> the name of the subform *control* in each subform reference, NOT the name
> of
> the subform form object in the database window - they're not always the
> same.
>
> if the above doesn't work for some reason, try just locking the subform
> control itself - i've used that technique successfully in the past, as
>
> Me!Subform1ControlName.Form!SubSubForm1ControlName .Locked = True
>
> again, the above is all on one line.
>
> hth
>
>
> "John" wrote in message
> news:u8YglDskGHA.4284@TK2MSFTNGP05.phx.gbl...
>> Code is running on the main form.
>>
>> Thanks
>>
>> Regards
>>
>> "tina" wrote in message
>> news:Hi1lg.205403$Fs1.86551@bgtnsc05-news.ops.worldnet.att.net...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
>> > where is the code running? in the main form? first level subform? or
>> > one
>> > of
>> > the second level subforms? if the latter, is the code intended to
>> > change
>> > the
>> > sub-subform it's running in, or one of the other sub-subforms?
>> >
>> > hth
>> >
>> >
>> > "John" wrote in message
>> > news:ukoudfikGHA.1204@TK2MSFTNGP02.phx.gbl...
>> >> Sorry, I should have been clearer. The sub form only has a tab control

> on
>> > it
>> >> and then each tab in turn has a sub form on it. I am trying to block

> one
>> > of
>> >> the sub forms on the tab control, so I have tried this;
>> >>
>> >> Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False
>> >>
>> >> But this has not worked. Any ideas?
>> >>
>> >> Thanks
>> >>
>> >> Regards
>> >>
>> >> "tina" wrote in message
>> >> news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
>> >> > to prevent edits on a subform, from code that runs in the main form,
>> >> > try
>> >> >
>> >> > Me!SubformControlName.Form.AllowEdits = False
>> >> >
>> >> > make sure you use the name of the subform *control* in the main
>> >> > form,
>> > not
>> >> > the name of the subform as it appears in the database window. the
>> >> > two
>> >> > names
>> >> > are not always the same.
>> >> >
>> >> > hth
>> >> >
>> >> >
>> >> > "John" wrote in message
>> >> > news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
>> >> >> Hi
>> >> >>
>> >> >> How can I programmatically block edits on a form and all its sub
>> >> >> forms?
>> > I
>> >> >> have tried me.AllowEdits = False but it only blocks edits on the

> main
>> >> >> form
>> >> >> and not on any of the sub forms on the main form.
>> >> >>
>> >> >> Thanks
>> >> >>
>> >> >> Regards
>> >> >>
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >

>>
>>

>
>



Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:23 AM
tina's Avatar tina
Guest
 
Posts: n/a
   
   
Re: Controlling edit

  Donate Today!  
you're welcome


"John" wrote in message
news:OJ7nWc5kGHA.3936@TK2MSFTNGP05.phx.gbl...
> Hi
>
> Locked worked for me. Thanks. I don't know why allow edits didn't. May be

a
> little known bug.
>
> Regards
>
>
> "tina" wrote in message
> news:Lodlg.37615$mF2.5180@bgtnsc04-news.ops.worldnet.att.net...
> > ok, try
> >
> > Me!Subform1ControlName.Form!SubSubForm1ControlName .Form.AllowEdits =
> > False
> >
> > the above goes all on one line, of course. and again, make sure you're
> > using
> > the name of the subform *control* in each subform reference, NOT the

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
name
> > of
> > the subform form object in the database window - they're not always the
> > same.
> >
> > if the above doesn't work for some reason, try just locking the subform
> > control itself - i've used that technique successfully in the past, as
> >
> > Me!Subform1ControlName.Form!SubSubForm1ControlName .Locked = True
> >
> > again, the above is all on one line.
> >
> > hth
> >
> >
> > "John" wrote in message
> > news:u8YglDskGHA.4284@TK2MSFTNGP05.phx.gbl...
> >> Code is running on the main form.
> >>
> >> Thanks
> >>
> >> Regards
> >>
> >> "tina" wrote in message
> >> news:Hi1lg.205403$Fs1.86551@bgtnsc05-news.ops.worldnet.att.net...
> >> > where is the code running? in the main form? first level subform? or
> >> > one
> >> > of
> >> > the second level subforms? if the latter, is the code intended to
> >> > change
> >> > the
> >> > sub-subform it's running in, or one of the other sub-subforms?
> >> >
> >> > hth
> >> >
> >> >
> >> > "John" wrote in message
> >> > news:ukoudfikGHA.1204@TK2MSFTNGP02.phx.gbl...
> >> >> Sorry, I should have been clearer. The sub form only has a tab

control
> > on
> >> > it
> >> >> and then each tab in turn has a sub form on it. I am trying to block

> > one
> >> > of
> >> >> the sub forms on the tab control, so I have tried this;
> >> >>
> >> >> Forms![Main]![SubForm1].Form![SubSubForm1].Form.AllowEdits = False
> >> >>
> >> >> But this has not worked. Any ideas?
> >> >>
> >> >> Thanks
> >> >>
> >> >> Regards
> >> >>
> >> >> "tina" wrote in message
> >> >> news:soLkg.200404$Fs1.37657@bgtnsc05-news.ops.worldnet.att.net...
> >> >> > to prevent edits on a subform, from code that runs in the main

form,
> >> >> > try
> >> >> >
> >> >> > Me!SubformControlName.Form.AllowEdits = False
> >> >> >
> >> >> > make sure you use the name of the subform *control* in the main
> >> >> > form,
> >> > not
> >> >> > the name of the subform as it appears in the database window. the
> >> >> > two
> >> >> > names
> >> >> > are not always the same.
> >> >> >
> >> >> > hth
> >> >> >
> >> >> >
> >> >> > "John" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11591
> >> >> > news:%23JtCg7bkGHA.4212@TK2MSFTNGP03.phx.gbl...
> >> >> >> Hi
> >> >> >>
> >> >> >> How can I programmatically block edits on a form and all its sub
> >> >> >> forms?
> >> > I
> >> >> >> have tried me.AllowEdits = False but it only blocks edits on the

> > main
> >> >> >> form
> >> >> >> and not on any of the sub forms on the main form.
> >> >> >>
> >> >> >> Thanks
> >> >> >>
> >> >> >> Regards
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >
> >> >> >
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>

> >
> >

>
>



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:29 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.58460 seconds with 30 queries