473,386 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Access window - once minimized, won't maximize

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
Nov 13 '05 #1
7 5422
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

Nov 13 '05 #2
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


Nov 13 '05 #3

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



Nov 13 '05 #4
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
>
>



Nov 13 '05 #5
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
> >
> >
>
>



Nov 13 '05 #6
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
> > >
> > >
> >
> >
>
>



Nov 13 '05 #7
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
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 13 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
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.
0
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 =...
1
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...
7
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
3
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 ***
6
dmjpro
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 =...
3
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...
1
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 ...
2
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...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.