A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Lebans report to pdf question



 
 
Thread Tools Display Modes
  #1  
Old July 9th, 2009, 07:14 PM posted to microsoft.public.access
M. Murphy
external usenet poster
 
Posts: 31
Default Lebans report to pdf question

I have been using Stephen Lebans report to pdf solution for a while now.
I have been using an "autonumber" type counter to make a unique file name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a certain
path, and not the my documents folder as it does by default. He would also
like (but not require) the same file naming convention that I use to be pre
filled in to the file name in the save dialog box. I would be happy if I
could just set the path, the file name part would be a bonus, but we can type
that if necessary.



Is there any way to do this?

TIA


  #2  
Old July 9th, 2009, 07:21 PM posted to microsoft.public.access
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Lebans report to pdf question

Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news
I have been using Stephen Lebans report to pdf solution for a while now.
I have been using an "autonumber" type counter to make a unique file name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to be
pre
filled in to the file name in the save dialog box. I would be happy if I
could just set the path, the file name part would be a bonus, but we can
type
that if necessary.



Is there any way to do this?

TIA




  #3  
Old July 9th, 2009, 07:46 PM posted to microsoft.public.access
M. Murphy
external usenet poster
 
Posts: 31
Default Lebans report to pdf question

Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog box in
the report to pdf function was kind of pre filled in, but I will give this a
shot.
I tried to add a different function (browse folder dialog from the lebans
site) to my DB earlier today and had no luck. Its was little beyond my vb
skills to merge these together.




"Douglas J. Steele" wrote in message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news
I have been using Stephen Lebans report to pdf solution for a while now.
I have been using an "autonumber" type counter to make a unique file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to be
pre
filled in to the file name in the save dialog box. I would be happy if I
could just set the path, the file name part would be a bonus, but we can
type
that if necessary.



Is there any way to do this?

TIA






  #4  
Old July 9th, 2009, 08:15 PM posted to microsoft.public.access
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Lebans report to pdf question

Afraid I don't have Stephen's code on this machine, so I can't say whether
you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog box in
the report to pdf function was kind of pre filled in, but I will give this
a shot.
I tried to add a different function (browse folder dialog from the lebans
site) to my DB earlier today and had no luck. Its was little beyond my vb
skills to merge these together.




"Douglas J. Steele" wrote in message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news
I have been using Stephen Lebans report to pdf solution for a while now.
I have been using an "autonumber" type counter to make a unique file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to be
pre
filled in to the file name in the save dialog box. I would be happy if
I
could just set the path, the file name part would be a bonus, but we can
type
that if necessary.



Is there any way to do this?

TIA








  #5  
Old July 9th, 2009, 08:56 PM posted to microsoft.public.access
M. Murphy
external usenet poster
 
Posts: 31
Default Lebans report to pdf question

Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the fFileDialog
section) to my liking, that is the initial directory that the dialog starts
in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I am not
even sure if that will pre-fill in the file name, but what the hell, thats
how I learn. So I adjusted my code from my form and put it in the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the file
name.

Does anyone have any suggestions on passing my uniquely generated file name
into the module?

"Douglas J. Steele" wrote in message
...
Afraid I don't have Stephen's code on this machine, so I can't say whether
you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog box in
the report to pdf function was kind of pre filled in, but I will give
this a shot.
I tried to add a different function (browse folder dialog from the lebans
site) to my DB earlier today and had no luck. Its was little beyond my
vb skills to merge these together.




"Douglas J. Steele" wrote in message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a while now.
I have been using an "autonumber" type counter to make a unique file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to be
pre
filled in to the file name in the save dialog box. I would be happy if
I
could just set the path, the file name part would be a bonus, but we
can type
that if necessary.



Is there any way to do this?

TIA










  #6  
Old July 9th, 2009, 10:43 PM posted to microsoft.public.access
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Lebans report to pdf question

I believe you need to set the FileName property, not the FileTitle property.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"M. Murphy" wrote in message
...
Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the fFileDialog
section) to my liking, that is the initial directory that the dialog
starts in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I am
not even sure if that will pre-fill in the file name, but what the hell,
thats how I learn. So I adjusted my code from my form and put it in the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the file
name.

Does anyone have any suggestions on passing my uniquely generated file
name into the module?

"Douglas J. Steele" wrote in message
...
Afraid I don't have Stephen's code on this machine, so I can't say
whether you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog box
in the report to pdf function was kind of pre filled in, but I will give
this a shot.
I tried to add a different function (browse folder dialog from the
lebans site) to my DB earlier today and had no luck. Its was little
beyond my vb skills to merge these together.




"Douglas J. Steele" wrote in message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a while
now.
I have been using an "autonumber" type counter to make a unique file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to
be pre
filled in to the file name in the save dialog box. I would be happy
if I
could just set the path, the file name part would be a bonus, but we
can type
that if necessary.



Is there any way to do this?

TIA












  #7  
Old July 10th, 2009, 01:28 AM posted to microsoft.public.access
Richard
external usenet poster
 
Posts: 1,419
Default Lebans report to pdf question

Hi M. Murphy,

I also use that module, what would I change "clsDialog.InitDir" to open all
ways at the desktop?

Thanks
Richard




"Douglas J. Steele" wrote:

I believe you need to set the FileName property, not the FileTitle property.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"M. Murphy" wrote in message
...
Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the fFileDialog
section) to my liking, that is the initial directory that the dialog
starts in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I am
not even sure if that will pre-fill in the file name, but what the hell,
thats how I learn. So I adjusted my code from my form and put it in the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the file
name.

Does anyone have any suggestions on passing my uniquely generated file
name into the module?

"Douglas J. Steele" wrote in message
...
Afraid I don't have Stephen's code on this machine, so I can't say
whether you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog box
in the report to pdf function was kind of pre filled in, but I will give
this a shot.
I tried to add a different function (browse folder dialog from the
lebans site) to my DB earlier today and had no luck. Its was little
beyond my vb skills to merge these together.




"Douglas J. Steele" wrote in message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a while
now.
I have been using an "autonumber" type counter to make a unique file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He would
also
like (but not require) the same file naming convention that I use to
be pre
filled in to the file name in the save dialog box. I would be happy
if I
could just set the path, the file name part would be a bonus, but we
can type
that if necessary.



Is there any way to do this?

TIA













  #8  
Old July 10th, 2009, 11:18 AM posted to microsoft.public.access
Douglas J. Steele[_3_]
external usenet poster
 
Posts: 3,143
Default Lebans report to pdf question

Copy the code from http://www.mvps.org/access/api/api0054.htm at "The Access
Web" into a new module

Which desktop do you want it to be on: the All Users one, or the current
user's?

For All Users, try

clsDialog.InitDir = fGetSpecialFolderLocation(CSIDL_COMMON_DESKTOPDIRE CTORY)

For the current user's, try

clsDialog.InitDir = fGetSpecialFolderLocation(CSIDL_DESKTOPDIRECTORY)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Richard" wrote in message
...
Hi M. Murphy,

I also use that module, what would I change "clsDialog.InitDir" to open
all
ways at the desktop?

Thanks
Richard




"Douglas J. Steele" wrote:

I believe you need to set the FileName property, not the FileTitle
property.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"M. Murphy" wrote in message
...
Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in
the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the
fFileDialog
section) to my liking, that is the initial directory that the dialog
starts in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I am
not even sure if that will pre-fill in the file name, but what the
hell,
thats how I learn. So I adjusted my code from my form and put it in
the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the file
name.

Does anyone have any suggestions on passing my uniquely generated file
name into the module?

"Douglas J. Steele" wrote in message
...
Afraid I don't have Stephen's code on this machine, so I can't say
whether you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog
box
in the report to pdf function was kind of pre filled in, but I will
give
this a shot.
I tried to add a different function (browse folder dialog from the
lebans site) to my DB earlier today and had no luck. Its was little
beyond my vb skills to merge these together.




"Douglas J. Steele" wrote in
message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You
can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a while
now.
I have been using an "autonumber" type counter to make a unique
file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog
box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He
would
also
like (but not require) the same file naming convention that I use
to
be pre
filled in to the file name in the save dialog box. I would be
happy
if I
could just set the path, the file name part would be a bonus, but
we
can type
that if necessary.



Is there any way to do this?

TIA















  #9  
Old July 10th, 2009, 02:30 PM posted to microsoft.public.access
M. Murphy
external usenet poster
 
Posts: 31
Default Lebans report to pdf question

Great info in that link, that will come in handy down the road for me!!
Thank you!!!!

About my original issue, I don't see clsDialog.FileName in there, should I
just add it to that list?


"Douglas J. Steele" wrote in message
...
Copy the code from http://www.mvps.org/access/api/api0054.htm at "The
Access Web" into a new module

Which desktop do you want it to be on: the All Users one, or the current
user's?

For All Users, try

clsDialog.InitDir =
fGetSpecialFolderLocation(CSIDL_COMMON_DESKTOPDIRE CTORY)

For the current user's, try

clsDialog.InitDir = fGetSpecialFolderLocation(CSIDL_DESKTOPDIRECTORY)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Richard" wrote in message
...
Hi M. Murphy,

I also use that module, what would I change "clsDialog.InitDir" to open
all
ways at the desktop?

Thanks
Richard




"Douglas J. Steele" wrote:

I believe you need to set the FileName property, not the FileTitle
property.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"M. Murphy" wrote in message
...
Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in
the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the
fFileDialog
section) to my liking, that is the initial directory that the dialog
starts in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I
am
not even sure if that will pre-fill in the file name, but what the
hell,
thats how I learn. So I adjusted my code from my form and put it in
the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the
file
name.

Does anyone have any suggestions on passing my uniquely generated file
name into the module?

"Douglas J. Steele" wrote in
message
...
Afraid I don't have Stephen's code on this machine, so I can't say
whether you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog
box
in the report to pdf function was kind of pre filled in, but I will
give
this a shot.
I tried to add a different function (browse folder dialog from the
lebans site) to my DB earlier today and had no luck. Its was little
beyond my vb skills to merge these together.




"Douglas J. Steele" wrote in
message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web". You
can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a while
now.
I have been using an "autonumber" type counter to make a unique
file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save dialog
box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He
would
also
like (but not require) the same file naming convention that I use
to
be pre
filled in to the file name in the save dialog box. I would be
happy
if I
could just set the path, the file name part would be a bonus, but
we
can type
that if necessary.



Is there any way to do this?

TIA

















  #10  
Old July 10th, 2009, 02:41 PM posted to microsoft.public.access
M. Murphy
external usenet poster
 
Posts: 31
Default Lebans report to pdf question

Ah, again I just jump right in, head first....

Yes I added the property clsDialog.FileName to that list, and it worked
perfectly. Added my cool unique file nameing code, with a little
modification (the module didn't like the Me! part, had to refer to the form
by its name), and bingo, it all works great now.

Stephen Lebans, you are the MAN!!!

Douglas, just conversing with you makes me think better, thank you for
listening to me, and your great information.

"M. Murphy" wrote in message
...
Great info in that link, that will come in handy down the road for me!!
Thank you!!!!

About my original issue, I don't see clsDialog.FileName in there, should I
just add it to that list?


"Douglas J. Steele" wrote in message
...
Copy the code from http://www.mvps.org/access/api/api0054.htm at "The
Access Web" into a new module

Which desktop do you want it to be on: the All Users one, or the current
user's?

For All Users, try

clsDialog.InitDir =
fGetSpecialFolderLocation(CSIDL_COMMON_DESKTOPDIRE CTORY)

For the current user's, try

clsDialog.InitDir = fGetSpecialFolderLocation(CSIDL_DESKTOPDIRECTORY)


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"Richard" wrote in message
...
Hi M. Murphy,

I also use that module, what would I change "clsDialog.InitDir" to open
all
ways at the desktop?

Thanks
Richard




"Douglas J. Steele" wrote:

I believe you need to set the FileName property, not the FileTitle
property.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"M. Murphy" wrote in message
...
Douglas, Thanks for kickstarting my brain!

I have tweaked Stephen's code a little, now the dialog box starts in
the
folder that I want.
I went into the module and adjusted clsDialog.InitDir (in the
fFileDialog
section) to my liking, that is the initial directory that the dialog
starts in. Cool.
So, I figure that I could also tweak clsDialog.FileTitle as well. I
am
not even sure if that will pre-fill in the file name, but what the
hell,
thats how I learn. So I adjusted my code from my form and put it in
the
clsDialog.FileTitle
Well, that did'nt work, apparently clsDialog.FileTitle is not the
file
name.

Does anyone have any suggestions on passing my uniquely generated
file
name into the module?

"Douglas J. Steele" wrote in
message
...
Afraid I don't have Stephen's code on this machine, so I can't say
whether you can just tweak his code.

Hopefully some other reader will pipe in.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
...
Thanks for the quick response,
I was really looking to modify the lebans code, so that the dialog
box
in the report to pdf function was kind of pre filled in, but I will
give
this a shot.
I tried to add a different function (browse folder dialog from the
lebans site) to my DB earlier today and had no luck. Its was
little
beyond my vb skills to merge these together.




"Douglas J. Steele" wrote in
message
...
Use the Windows File Save API outlined in
http://www.mvps.org/access/api/api0001.htm at "The Access Web".
You can
preset the folder and file name as parameters passed to the call.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"M. Murphy" wrote in message
news I have been using Stephen Lebans report to pdf solution for a
while
now.
I have been using an "autonumber" type counter to make a unique
file
name,
and am using a pre determined path, it all works great.

Now my boss would like me to customize it, so that the save
dialog box
appears (easy enough), BUT he would like the save dialog to use a
certain
path, and not the my documents folder as it does by default. He
would
also
like (but not require) the same file naming convention that I use
to
be pre
filled in to the file name in the save dialog box. I would be
happy
if I
could just set the path, the file name part would be a bonus, but
we
can type
that if necessary.



Is there any way to do this?

TIA



















 




Thread Tools
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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.