I have an app that uses Access to grab various PowerPoint slides using the
followhyperlink command. I have set the PPT window to run in a minimized
state:
FollowHyperlink link
Set oPres = oPPT.ActivePresentation
oPPT.WindowState = ppWindowMinimized
Then I do the copy and paste part:
With oPres
oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y
oPresTemplate.Slides.Paste
oSldShWinS(1).View.Exit ' this closes the "Hyperlinked
View" of the slide
End With
Now I want to return to the Access application window while PPT is still
updating some stuff in the background.
I've tried establishing an object of the Access application and then used
the AppActivate command:
AppActivate "Microsoft Access"
I have also tried:
oAccessApp.DoCmd.Maximize
and I've tried SetFocus. All seem to be ignored by the system. Everything,
PPT and Access both are in minimized state and when PPT finishes, both apps
are minimized. I want the user to see a progress label that tells them
stuff that happens after the hyperlink and they cannot see the label if the
entire app is minimized!
What do I need to do? What is the mental model that I should be following,
since what I am doing now is obviously wrong?
Thanks
CA 7 5369
You haven't posted the full code so I'm guessing that oPPT is a variable
pointing to a PowerPoint application, if this is the case then the
PowerPoint process is running in the same as Access, therefore Access has to
wait for PowerPoint to finish before you can continue.
--
Terry Kreft
MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message
news:V_MEc.8113$a24.431@attbi_s03... I have an app that uses Access to grab various PowerPoint slides using the followhyperlink command. I have set the PPT window to run in a minimized state:
FollowHyperlink link Set oPres = oPPT.ActivePresentation oPPT.WindowState = ppWindowMinimized
Then I do the copy and paste part: With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the "Hyperlinked View" of the slide End With Now I want to return to the Access application window while PPT is still updating some stuff in the background.
I've tried establishing an object of the Access application and then used the AppActivate command: AppActivate "Microsoft Access"
I have also tried: oAccessApp.DoCmd.Maximize
and I've tried SetFocus. All seem to be ignored by the system.
Everything, PPT and Access both are in minimized state and when PPT finishes, both
apps are minimized. I want the user to see a progress label that tells them stuff that happens after the hyperlink and they cannot see the label if
the entire app is minimized!
What do I need to do? What is the mental model that I should be
following, since what I am doing now is obviously wrong? Thanks
CA
You are correct, oPPT is an object variable pointing to PowerPoint. But
even when PPT finishes, I do not return to Access. Plus, I am ok with PPT
running, I just want it not to take over the whole screen and let the user
see the Access window in the background. When run normally, the hyperlinked
windows take over the whole screen, when the PPT window is minimized, then
Access is minimized.
Isn't there a way to have ppt run in less than full screen mode and still
have Access visible (so that my progress label can be seen)?
"Terry Kreft" <te*********@mps.co.uk> wrote in message
news:pN********************@karoo.co.uk... You haven't posted the full code so I'm guessing that oPPT is a variable pointing to a PowerPoint application, if this is the case then the PowerPoint process is running in the same as Access, therefore Access has
to wait for PowerPoint to finish before you can continue.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:V_MEc.8113$a24.431@attbi_s03... I have an app that uses Access to grab various PowerPoint slides using
the followhyperlink command. I have set the PPT window to run in a
minimized state:
FollowHyperlink link Set oPres = oPPT.ActivePresentation oPPT.WindowState = ppWindowMinimized
Then I do the copy and paste part: With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the "Hyperlinked View" of the slide End With Now I want to return to the Access application window while PPT is still updating some stuff in the background.
I've tried establishing an object of the Access application and then
used the AppActivate command: AppActivate "Microsoft Access"
I have also tried: oAccessApp.DoCmd.Maximize
and I've tried SetFocus. All seem to be ignored by the system. Everything, PPT and Access both are in minimized state and when PPT finishes, both apps are minimized. I want the user to see a progress label that tells them stuff that happens after the hyperlink and they cannot see the label if the entire app is minimized!
What do I need to do? What is the mental model that I should be following, since what I am doing now is obviously wrong? Thanks
CA
The Followhyperlink causes Access to minimize.
If all you are doing is using this to load the slides into PowerPoint then I
would have thought that there was an automation method to do this, which
should allow you to retain control of Access.
--
Terry Kreft
MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message
news:RVTEc.7153$wY5.5883@attbi_s54... You are correct, oPPT is an object variable pointing to PowerPoint. But even when PPT finishes, I do not return to Access. Plus, I am ok with PPT running, I just want it not to take over the whole screen and let the user see the Access window in the background. When run normally, the
hyperlinked windows take over the whole screen, when the PPT window is minimized, then Access is minimized.
Isn't there a way to have ppt run in less than full screen mode and still have Access visible (so that my progress label can be seen)?
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:pN********************@karoo.co.uk... You haven't posted the full code so I'm guessing that oPPT is a variable pointing to a PowerPoint application, if this is the case then the PowerPoint process is running in the same as Access, therefore Access
has to wait for PowerPoint to finish before you can continue.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:V_MEc.8113$a24.431@attbi_s03... I have an app that uses Access to grab various PowerPoint slides using the followhyperlink command. I have set the PPT window to run in a minimized state:
FollowHyperlink link Set oPres = oPPT.ActivePresentation oPPT.WindowState = ppWindowMinimized
Then I do the copy and paste part: With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the
"Hyperlinked View" of the slide End With Now I want to return to the Access application window while PPT is
still updating some stuff in the background.
I've tried establishing an object of the Access application and then used the AppActivate command: AppActivate "Microsoft Access"
I have also tried: oAccessApp.DoCmd.Maximize
and I've tried SetFocus. All seem to be ignored by the system. Everything, PPT and Access both are in minimized state and when PPT finishes, both apps are minimized. I want the user to see a progress label that tells
them stuff that happens after the hyperlink and they cannot see the label
if the entire app is minimized!
What do I need to do? What is the mental model that I should be following, since what I am doing now is obviously wrong? Thanks
CA
The followhyperlink is in a for-next loop and I would have thought that when
the link was through and the hyperlinked window closed, it would be possible
to get Access back to its normal size even if the very next command would be
another followhyperlink that would minimize it again. Isn't that correct?
code is something like this:
for x ftom 1 to somenumber
varLink = oPres.Slides(slideArray(x).intSlideIndex)
FollowHyperlink link
With oPres
oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y
oPresTemplate.Slides.Paste
oSldShWinS(1).View.Exit ' this closes the "Hyperlinked
View" of the slide
End With
AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize should go
here and should work, no?
next x
"Terry Kreft" <te*********@mps.co.uk> wrote in message
news:vv********************@karoo.co.uk... The Followhyperlink causes Access to minimize.
If all you are doing is using this to load the slides into PowerPoint then
I would have thought that there was an automation method to do this, which should allow you to retain control of Access.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:RVTEc.7153$wY5.5883@attbi_s54... You are correct, oPPT is an object variable pointing to PowerPoint. But even when PPT finishes, I do not return to Access. Plus, I am ok with
PPT running, I just want it not to take over the whole screen and let the
user see the Access window in the background. When run normally, the hyperlinked windows take over the whole screen, when the PPT window is minimized,
then Access is minimized.
Isn't there a way to have ppt run in less than full screen mode and
still have Access visible (so that my progress label can be seen)?
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:pN********************@karoo.co.uk... You haven't posted the full code so I'm guessing that oPPT is a
variable pointing to a PowerPoint application, if this is the case then the PowerPoint process is running in the same as Access, therefore Access has to wait for PowerPoint to finish before you can continue.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:V_MEc.8113$a24.431@attbi_s03... > I have an app that uses Access to grab various PowerPoint slides
using the > followhyperlink command. I have set the PPT window to run in a minimized > state: > > FollowHyperlink link > Set oPres = oPPT.ActivePresentation > oPPT.WindowState = ppWindowMinimized > > Then I do the copy and paste part: > With oPres > oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y > oPresTemplate.Slides.Paste > oSldShWinS(1).View.Exit ' this closes the "Hyperlinked > View" of the slide > End With > Now I want to return to the Access application window while PPT is still > updating some stuff in the background. > > I've tried establishing an object of the Access application and then used > the AppActivate command: > AppActivate "Microsoft Access" > > I have also tried: > oAccessApp.DoCmd.Maximize > > and I've tried SetFocus. All seem to be ignored by the system. Everything, > PPT and Access both are in minimized state and when PPT finishes,
both apps > are minimized. I want the user to see a progress label that tells them > stuff that happens after the hyperlink and they cannot see the label if the > entire app is minimized! > > What do I need to do? What is the mental model that I should be following, > since what I am doing now is obviously wrong? > Thanks > > CA > >
You've got a tight loop going there, so I wouldn't expect that to happen no.
Try throwing some doevents into the loop and see if it does what you want.
e.g.
oSldShWinS(1).View.Exit
End With
DoEvents
AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize should
go here and should work, no?
DoEvents
next x
--
Terry Kreft
MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message
news:6yYEc.8627$MB3.8606@attbi_s04... The followhyperlink is in a for-next loop and I would have thought that
when the link was through and the hyperlinked window closed, it would be
possible to get Access back to its normal size even if the very next command would
be another followhyperlink that would minimize it again. Isn't that correct?
code is something like this:
for x ftom 1 to somenumber varLink = oPres.Slides(slideArray(x).intSlideIndex) FollowHyperlink link With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the "Hyperlinked View" of the slide End With AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize should go here and should work, no? next x
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:vv********************@karoo.co.uk... The Followhyperlink causes Access to minimize.
If all you are doing is using this to load the slides into PowerPoint
then I would have thought that there was an automation method to do this, which should allow you to retain control of Access.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:RVTEc.7153$wY5.5883@attbi_s54... You are correct, oPPT is an object variable pointing to PowerPoint.
But even when PPT finishes, I do not return to Access. Plus, I am ok with PPT running, I just want it not to take over the whole screen and let the user see the Access window in the background. When run normally, the hyperlinked windows take over the whole screen, when the PPT window is minimized, then Access is minimized.
Isn't there a way to have ppt run in less than full screen mode and still have Access visible (so that my progress label can be seen)?
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:pN********************@karoo.co.uk... > You haven't posted the full code so I'm guessing that oPPT is a variable > pointing to a PowerPoint application, if this is the case then the > PowerPoint process is running in the same as Access, therefore
Access has to > wait for PowerPoint to finish before you can continue. > > > -- > Terry Kreft > MVP Microsoft Access > > > "Colleyville Alan" <ae***********@nospam.comcast.net> wrote in
message > news:V_MEc.8113$a24.431@attbi_s03... > > I have an app that uses Access to grab various PowerPoint slides using the > > followhyperlink command. I have set the PPT window to run in a minimized > > state: > > > > FollowHyperlink link > > Set oPres = oPPT.ActivePresentation > > oPPT.WindowState = ppWindowMinimized > > > > Then I do the copy and paste part: > > With oPres > >
oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y > > oPresTemplate.Slides.Paste > > oSldShWinS(1).View.Exit ' this closes the "Hyperlinked > > View" of the slide > > End With > > Now I want to return to the Access application window while PPT is still > > updating some stuff in the background. > > > > I've tried establishing an object of the Access application and
then used > > the AppActivate command: > > AppActivate "Microsoft Access" > > > > I have also tried: > > oAccessApp.DoCmd.Maximize > > > > and I've tried SetFocus. All seem to be ignored by the system. > Everything, > > PPT and Access both are in minimized state and when PPT finishes, both > apps > > are minimized. I want the user to see a progress label that tells them > > stuff that happens after the hyperlink and they cannot see the
label if > the > > entire app is minimized! > > > > What do I need to do? What is the mental model that I should be > following, > > since what I am doing now is obviously wrong? > > Thanks > > > > CA > > > > > >
Looks like "oAccessApp.RunCommand acCmdAppMaximize" took care of it. The
other maximize cmd I had for Access (DoCmd.Maximize) maximized the window
within the
application, not the application itself.
"Terry Kreft" <te*********@mps.co.uk> wrote in message
news:OB********************@karoo.co.uk... You've got a tight loop going there, so I wouldn't expect that to happen
no. Try throwing some doevents into the loop and see if it does what you want.
e.g.
oSldShWinS(1).View.Exit End With DoEvents AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize should go here and should work, no? DoEvents next x
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:6yYEc.8627$MB3.8606@attbi_s04... The followhyperlink is in a for-next loop and I would have thought that when the link was through and the hyperlinked window closed, it would be possible to get Access back to its normal size even if the very next command
would be another followhyperlink that would minimize it again. Isn't that
correct? code is something like this:
for x ftom 1 to somenumber varLink = oPres.Slides(slideArray(x).intSlideIndex) FollowHyperlink link With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the "Hyperlinked View" of the slide End With AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize should
go here and should work, no? next x
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:vv********************@karoo.co.uk... The Followhyperlink causes Access to minimize.
If all you are doing is using this to load the slides into PowerPoint then I would have thought that there was an automation method to do this,
which should allow you to retain control of Access.
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:RVTEc.7153$wY5.5883@attbi_s54... > You are correct, oPPT is an object variable pointing to PowerPoint. But > even when PPT finishes, I do not return to Access. Plus, I am ok
with PPT > running, I just want it not to take over the whole screen and let
the user > see the Access window in the background. When run normally, the hyperlinked > windows take over the whole screen, when the PPT window is
minimized, then > Access is minimized. > > Isn't there a way to have ppt run in less than full screen mode and still > have Access visible (so that my progress label can be seen)? > > "Terry Kreft" <te*********@mps.co.uk> wrote in message > news:pN********************@karoo.co.uk... > > You haven't posted the full code so I'm guessing that oPPT is a variable > > pointing to a PowerPoint application, if this is the case then the > > PowerPoint process is running in the same as Access, therefore Access has > to > > wait for PowerPoint to finish before you can continue. > > > > > > -- > > Terry Kreft > > MVP Microsoft Access > > > > > > "Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message > > news:V_MEc.8113$a24.431@attbi_s03... > > > I have an app that uses Access to grab various PowerPoint slides using > the > > > followhyperlink command. I have set the PPT window to run in a > minimized > > > state: > > > > > > FollowHyperlink link > > > Set oPres = oPPT.ActivePresentation > > > oPPT.WindowState = ppWindowMinimized > > > > > > Then I do the copy and paste part: > > > With oPres > > > oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y > > > oPresTemplate.Slides.Paste > > > oSldShWinS(1).View.Exit ' this closes the "Hyperlinked > > > View" of the slide > > > End With > > > Now I want to return to the Access application window while PPT
is still > > > updating some stuff in the background. > > > > > > I've tried establishing an object of the Access application and
then > used > > > the AppActivate command: > > > AppActivate "Microsoft Access" > > > > > > I have also tried: > > > oAccessApp.DoCmd.Maximize > > > > > > and I've tried SetFocus. All seem to be ignored by the system. > > Everything, > > > PPT and Access both are in minimized state and when PPT
finishes, both > > apps > > > are minimized. I want the user to see a progress label that
tells them > > > stuff that happens after the hyperlink and they cannot see the
label if > > the > > > entire app is minimized! > > > > > > What do I need to do? What is the mental model that I should be > > following, > > > since what I am doing now is obviously wrong? > > > Thanks > > > > > > CA > > > > > > > > > > > >
Good, I should have spotted that myself, glad you've sorted it.
.... But my comment about tight loops still stands, it takes UI changes a
relatively long time to happen, and you should relinquish control in order
to allow them to process if you are wanting the user to see what is going
on.
.... Of course there are also times when you don't want this to happen as it
slows procesing down.
--
Terry Kreft
MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message
news:OfFFc.3258$JR4.2312@attbi_s54... Looks like "oAccessApp.RunCommand acCmdAppMaximize" took care of it. The other maximize cmd I had for Access (DoCmd.Maximize) maximized the window within the application, not the application itself. "Terry Kreft" <te*********@mps.co.uk> wrote in message news:OB********************@karoo.co.uk... You've got a tight loop going there, so I wouldn't expect that to happen no. Try throwing some doevents into the loop and see if it does what you
want. e.g.
oSldShWinS(1).View.Exit End With DoEvents AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize
should go here and should work, no? DoEvents next x
-- Terry Kreft MVP Microsoft Access
"Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message news:6yYEc.8627$MB3.8606@attbi_s04... The followhyperlink is in a for-next loop and I would have thought
that when the link was through and the hyperlinked window closed, it would be possible to get Access back to its normal size even if the very next command would be another followhyperlink that would minimize it again. Isn't that correct? code is something like this:
for x ftom 1 to somenumber varLink = oPres.Slides(slideArray(x).intSlideIndex) FollowHyperlink link With oPres oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y oPresTemplate.Slides.Paste oSldShWinS(1).View.Exit ' this closes the
"Hyperlinked View" of the slide End With AppActivate "Microsoft Access" or oAccessApp.DoCmd.Maximize
should go here and should work, no? next x
"Terry Kreft" <te*********@mps.co.uk> wrote in message news:vv********************@karoo.co.uk... > > The Followhyperlink causes Access to minimize. > > If all you are doing is using this to load the slides into
PowerPoint then I > would have thought that there was an automation method to do this, which > should allow you to retain control of Access. > > -- > Terry Kreft > MVP Microsoft Access > > > "Colleyville Alan" <ae***********@nospam.comcast.net> wrote in
message > news:RVTEc.7153$wY5.5883@attbi_s54... > > You are correct, oPPT is an object variable pointing to
PowerPoint. But > > even when PPT finishes, I do not return to Access. Plus, I am ok with PPT > > running, I just want it not to take over the whole screen and let the user > > see the Access window in the background. When run normally, the > hyperlinked > > windows take over the whole screen, when the PPT window is minimized, then > > Access is minimized. > > > > Isn't there a way to have ppt run in less than full screen mode
and still > > have Access visible (so that my progress label can be seen)? > > > > "Terry Kreft" <te*********@mps.co.uk> wrote in message > > news:pN********************@karoo.co.uk... > > > You haven't posted the full code so I'm guessing that oPPT is a variable > > > pointing to a PowerPoint application, if this is the case then
the > > > PowerPoint process is running in the same as Access, therefore Access > has > > to > > > wait for PowerPoint to finish before you can continue. > > > > > > > > > -- > > > Terry Kreft > > > MVP Microsoft Access > > > > > > > > > "Colleyville Alan" <ae***********@nospam.comcast.net> wrote in message > > > news:V_MEc.8113$a24.431@attbi_s03... > > > > I have an app that uses Access to grab various PowerPoint
slides using > > the > > > > followhyperlink command. I have set the PPT window to run in
a > > minimized > > > > state: > > > > > > > > FollowHyperlink link > > > > Set oPres = oPPT.ActivePresentation > > > > oPPT.WindowState = ppWindowMinimized > > > > > > > > Then I do the copy and paste part: > > > > With oPres > > > > oPres.Slides(ResultsArray(iCtr).intSlideIndex).Cop y > > > > oPresTemplate.Slides.Paste > > > > oSldShWinS(1).View.Exit ' this closes the > "Hyperlinked > > > > View" of the slide > > > > End With > > > > Now I want to return to the Access application window while
PPT is > still > > > > updating some stuff in the background. > > > > > > > > I've tried establishing an object of the Access application
and then > > used > > > > the AppActivate command: > > > > AppActivate "Microsoft Access" > > > > > > > > I have also tried: > > > > oAccessApp.DoCmd.Maximize > > > > > > > > and I've tried SetFocus. All seem to be ignored by the
system. > > > Everything, > > > > PPT and Access both are in minimized state and when PPT
finishes, both > > > apps > > > > are minimized. I want the user to see a progress label that tells > them > > > > stuff that happens after the hyperlink and they cannot see the
label > if > > > the > > > > entire app is minimized! > > > > > > > > What do I need to do? What is the mental model that I should
be > > > following, > > > > since what I am doing now is obviously wrong? > > > > Thanks > > > > > > > > CA > > > > > > > > > > > > > > > > > > > >
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Lakshmi Narayanan.R |
last post by:
Hi experts,
How to find the changes in the asp, while the window is minimized. I need to maximize if i found the changes in the asp file. Thats is, if recordcount value changes. pls guide me.
|
by: Colleyville Alan |
last post by:
I have an app that uses Access to grab various PowerPoint slides using the
followhyperlink command. I have set the PPT window to run in a minimized
state:
FollowHyperlink link
Set oPres =...
|
by: (Pete Cresswell) |
last post by:
GetActiveWindow() returns a Long... So I'm guessing that's not it.
I've got a routine that I can feed a Form pointer to and which looks up the
user's last size/position for that form and sets the...
|
by: Lauren Quantrell |
last post by:
Is there a way in code to freeze the size of the MS Access window or to
prevent it from being sized?
Thanks.
lq
|
by: x taol |
last post by:
when the specific mdb file be opend, i want to open maximize the aceess
db. and maximizebox is disabled.
*** Sent via Developersdex http://www.developersdex.com ***
|
by: dmjpro |
last post by:
Typical problem i faced today ..
i know format of window.open is ..
window.open(url_name,)
i set the style earlier that resize = no then it works properly but whenever i reset it to resize =...
|
by: xplosiveconcepts |
last post by:
Hello all,
I have a very simple PHP script that is reading a plain-text CSV file
and parses it out into into a HTML table to display the data. No
biggie.
What I want to do is while keeping...
|
by: Phil Stanton |
last post by:
Here is a bit of code which opens an Excel file from a hyperlink activated
on a form command button
CreateHyperlink Me!Storage, "", ExcelPath ' Open Excel using Hyperlink
DoEvents ...
|
by: Phil Stanton |
last post by:
I know this sounds involved, but it works ... almost
I am using a Hyperlink to run an Excel application which generates a chart
based on a query in the current database. This chart is saved a a...
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
| | |