PC Review


Reply
Thread Tools Rate Thread

Alternative program calls

 
 
=?Utf-8?B?UmF5IFMu?=
Guest
Posts: n/a
 
      21st Jun 2005
From a button on a form, I'm executing a macro that calls a sequence of seven
append queries. At the execution of the first append, I allow the user to
enter two variable quantities, but the rest do not require any response. At
the execution of each one a pop-up warns that you are about to change a table
and another popup requests confirmation to continue. I think there is even
another popup that informs the user how many records are going to be
appended! I would like to eliminate all that and let the process complete
without all that intrusion. Does anyone know how I can do that?

I have another question that probably should be posted separately, but I'll
try it here anyway. I constructed another database and then migrated it to
SQL server. Once on the server, I cannot edit tables, views, and reports,
although I can make and save forms that are viewable only to me. Is this an
Access issue, or is it an issule of permissions at the SQL server or file
server level?
 
Reply With Quote
 
 
 
 
=?Utf-8?B?RGVubmlz?=
Guest
Posts: n/a
 
      21st Jun 2005
Make the first line of your macro
SetWarnings
and set the parameter to No
Make the last line
SetWarnings
and set parameter to Yes

Don't know the answer to the 2nd bit so I suggest you post it separately

"Ray S." wrote:

> From a button on a form, I'm executing a macro that calls a sequence of seven
> append queries. At the execution of the first append, I allow the user to
> enter two variable quantities, but the rest do not require any response. At
> the execution of each one a pop-up warns that you are about to change a table
> and another popup requests confirmation to continue. I think there is even
> another popup that informs the user how many records are going to be
> appended! I would like to eliminate all that and let the process complete
> without all that intrusion. Does anyone know how I can do that?
>
> I have another question that probably should be posted separately, but I'll
> try it here anyway. I constructed another database and then migrated it to
> SQL server. Once on the server, I cannot edit tables, views, and reports,
> although I can make and save forms that are viewable only to me. Is this an
> Access issue, or is it an issule of permissions at the SQL server or file
> server level?

 
Reply With Quote
 
=?Utf-8?B?UmF5IFMu?=
Guest
Posts: n/a
 
      21st Jun 2005
Thanks Dennis,

I'll take your suggestion and post the second question in the appropriate
section.

"Dennis" wrote:

> Make the first line of your macro
> SetWarnings
> and set the parameter to No
> Make the last line
> SetWarnings
> and set parameter to Yes
>
> Don't know the answer to the 2nd bit so I suggest you post it separately
>
> "Ray S." wrote:
>
> > From a button on a form, I'm executing a macro that calls a sequence of seven
> > append queries. At the execution of the first append, I allow the user to
> > enter two variable quantities, but the rest do not require any response. At
> > the execution of each one a pop-up warns that you are about to change a table
> > and another popup requests confirmation to continue. I think there is even
> > another popup that informs the user how many records are going to be
> > appended! I would like to eliminate all that and let the process complete
> > without all that intrusion. Does anyone know how I can do that?
> >
> > I have another question that probably should be posted separately, but I'll
> > try it here anyway. I constructed another database and then migrated it to
> > SQL server. Once on the server, I cannot edit tables, views, and reports,
> > although I can make and save forms that are viewable only to me. Is this an
> > Access issue, or is it an issule of permissions at the SQL server or file
> > server level?

 
Reply With Quote
 
=?Utf-8?B?UmF5IFMu?=
Guest
Posts: n/a
 
      21st Jun 2005
Oh, Dennis, I just thought of another question you may be able to answer: Is
there some command I can use to close a table and any queries or reports
calling it?

"Ray S." wrote:

> From a button on a form, I'm executing a macro that calls a sequence of seven
> append queries. At the execution of the first append, I allow the user to
> enter two variable quantities, but the rest do not require any response. At
> the execution of each one a pop-up warns that you are about to change a table
> and another popup requests confirmation to continue. I think there is even
> another popup that informs the user how many records are going to be
> appended! I would like to eliminate all that and let the process complete
> without all that intrusion. Does anyone know how I can do that?
>
> I have another question that probably should be posted separately, but I'll
> try it here anyway. I constructed another database and then migrated it to
> SQL server. Once on the server, I cannot edit tables, views, and reports,
> although I can make and save forms that are viewable only to me. Is this an
> Access issue, or is it an issule of permissions at the SQL server or file
> server level?

 
Reply With Quote
 
=?Utf-8?B?RGVubmlz?=
Guest
Posts: n/a
 
      21st Jun 2005
Not sure if this is the answer you are looking for but assuming you are still
talking from within a macro use the Close Action
the parameters will then let you select what to close.
I suspect you are looking to somehow pick a table and close querys/reports
etc. that are currently bound to it ?

"Ray S." wrote:

> Oh, Dennis, I just thought of another question you may be able to answer: Is
> there some command I can use to close a table and any queries or reports
> calling it?
>
> "Ray S." wrote:
>
> > From a button on a form, I'm executing a macro that calls a sequence of seven
> > append queries. At the execution of the first append, I allow the user to
> > enter two variable quantities, but the rest do not require any response. At
> > the execution of each one a pop-up warns that you are about to change a table
> > and another popup requests confirmation to continue. I think there is even
> > another popup that informs the user how many records are going to be
> > appended! I would like to eliminate all that and let the process complete
> > without all that intrusion. Does anyone know how I can do that?
> >
> > I have another question that probably should be posted separately, but I'll
> > try it here anyway. I constructed another database and then migrated it to
> > SQL server. Once on the server, I cannot edit tables, views, and reports,
> > although I can make and save forms that are viewable only to me. Is this an
> > Access issue, or is it an issule of permissions at the SQL server or file
> > server level?

 
Reply With Quote
 
=?Utf-8?B?UmF5IFMu?=
Guest
Posts: n/a
 
      21st Jun 2005
Yes, exactly, I want to pick a table and close any queries and reports, etc.
that are bound to it. And, in this particular situation I am within a macro,
so I'll try the close action suggestion.

"Dennis" wrote:

> Not sure if this is the answer you are looking for but assuming you are still
> talking from within a macro use the Close Action
> the parameters will then let you select what to close.
> I suspect you are looking to somehow pick a table and close querys/reports
> etc. that are currently bound to it ?
>
> "Ray S." wrote:
>
> > Oh, Dennis, I just thought of another question you may be able to answer: Is
> > there some command I can use to close a table and any queries or reports
> > calling it?
> >
> > "Ray S." wrote:
> >
> > > From a button on a form, I'm executing a macro that calls a sequence of seven
> > > append queries. At the execution of the first append, I allow the user to
> > > enter two variable quantities, but the rest do not require any response. At
> > > the execution of each one a pop-up warns that you are about to change a table
> > > and another popup requests confirmation to continue. I think there is even
> > > another popup that informs the user how many records are going to be
> > > appended! I would like to eliminate all that and let the process complete
> > > without all that intrusion. Does anyone know how I can do that?
> > >
> > > I have another question that probably should be posted separately, but I'll
> > > try it here anyway. I constructed another database and then migrated it to
> > > SQL server. Once on the server, I cannot edit tables, views, and reports,
> > > although I can make and save forms that are viewable only to me. Is this an
> > > Access issue, or is it an issule of permissions at the SQL server or file
> > > server level?

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Adsense Alternative - Commission Junction Alternative -ClickBank Alternative William9999 Windows XP Performance 0 2nd Nov 2010 09:02 AM
Google Adsense Alternative - Commission Junction Alternative -ClickBank Alternative William9999 Windows XP Performance 0 2nd Nov 2010 09:01 AM
An alternative freeware to Trillian program (chat program with MSN Yahoo and Aol Messenger) flo Freeware 16 18th Mar 2005 03:38 PM
Help with API calls to external program kiln Microsoft Access Form Coding 27 11th Aug 2004 02:03 AM
How can I tell which DLL and API calls a program makes? jackie_urzua@hotmail.com Windows XP Accessibility 0 9th Dec 2003 09:36 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:27 AM.