473,379 Members | 1,187 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,379 software developers and data experts.

Whjere is a file created?

In a monster database, is there an easy way to tell which query creates
"asdf.xls"?

Regards,
MVSGuy (not lovin' Access)

Jul 13 '06 #1
14 1213
"MVSGuy" <kk*****@fuse.netwrote in
news:11**********************@m79g2000cwm.googlegr oups.com:
In a monster database, is there an easy way to tell which
query creates "asdf.xls"?

Regards,
MVSGuy (not lovin' Access)
The easy answer is "None of the queries create 'asdf.xls'"

Some code or macro hase to execute an .OutputTo or a
..TransferSpreadsheet method on the query.

The almost as easy answer is that if the programmer used the
default naming, "asdf.xls" will be created by a query named "asdf"
or a table with that name.

If the programmer was a little more ambitious, it could be sourced
from any query. It could even be set up in a way that the SQL
exists only as a text string in a module.

You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )

--
Bob Quintal

PA is y I've altered my email address.

--
Posted via a free Usenet account from http://www.teranews.com

Jul 13 '06 #2
You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )
You're saying access doesn't even have a fricking "find" function?
Wow, I was expecting at least some primitive functionality.

Say what you want about Notes, but the design client will let you do a
stupid find...

MVSGuy (finding less & less to love about access)

Jul 13 '06 #3
"MVSGuy" <kk*****@fuse.netwrote in
news:11**********************@h48g2000cwc.googlegr oups.com:
>
>You may be interested in buying a copy of Total Access
Analyser ( www.fmsinc.com )

You're saying access doesn't even have a fricking "find"
function? Wow, I was expecting at least some primitive
functionality.

Say what you want about Notes, but the design client will let
you do a stupid find...

MVSGuy (finding less & less to love about access)
So go write your database in fricking "Notes".

Access doesn't have a 'find' for what you want. It has 'find'
functionality for the data in a table or query.

If you are giong to maintain an application in Access, you are
going to bit the bullet and learn some programming and debugging
skills.

--
Bob Quintal

PA is y I've altered my email address.

--
Posted via a free Usenet account from http://www.teranews.com

Jul 13 '06 #4

"MVSGuy" <kk*****@fuse.netwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
>
You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )

You're saying access doesn't even have a fricking "find" function?
Wow, I was expecting at least some primitive functionality.

Say what you want about Notes, but the design client will let you do a
stupid find...

MVSGuy (finding less & less to love about access)
Open a module and hit CTRL-F, and select Database. Access will search all
modules for the text.
Jul 13 '06 #5
Access has a Find function for its VBA code. I don't know how many different
kinds of places Notes has text strings tucked away, but there are many in
Access and the "global find" software that will find text in properties in
forms and reports and macros and in queries, as well as in VBA code, comes
from third parties. Three of the commercial providers of such code are FMS,
Inc., Black Moshannon Systems (http://www.moshannon.com), and Rick Fisher
Software (http://www.rickworld.com).

If I understand correctly, Notes is collaboration tool that can store some
data, similar to SharePoint, but with proprietary client software. Access is
both client software and a database development tool that can use various
database engines, including the default Jet but any ODBC-compliant server
DB. The next version, Access 2007, will be more closely integrated with
SharePoint for shared data storage not requiring a separate server DB.

But, as with any software, if you expect it to be the same as something else
you have liked, you are doomed to be disappointed. And you _will_ find less
and less to like about it, until you learn and use the advantages the new
software has to offer.

Larry Linson
Microsoft Access MVP

"MVSGuy" <kk*****@fuse.netwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
>
>You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )

You're saying access doesn't even have a fricking "find" function?
Wow, I was expecting at least some primitive functionality.

Say what you want about Notes, but the design client will let you do a
stupid find...

MVSGuy (finding less & less to love about access)

Jul 14 '06 #6
I can feel your disappointment, I still remember the first time I tried an
orange and it was nothing like the apples I was used to.

If the developer used code you can open a code window and use Ctrl-F to
search through all modules for the phrase you want.

If the "developer" (note the ironic quotes) used macros you'll have to open
each one and search for the phrase manually.

Alternatively invest in one of the third party tools Larry recommends.

--

Terry Kreft
"MVSGuy" <kk*****@fuse.netwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
>
You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )

You're saying access doesn't even have a fricking "find" function?
Wow, I was expecting at least some primitive functionality.

Say what you want about Notes, but the design client will let you do a
stupid find...

MVSGuy (finding less & less to love about access)

Jul 14 '06 #7
MVSGuy wrote:
MVSGuy (finding less & less to love about access)
One might learn to love more about Access were one to phrase one's
questions so that they do not imply a route for the answer. You could
try:

I am not familiar with the Access way. I have inherited a very large
db. It creates an Excel file, adfg.xls. I need to change the data which
is exported. How can I find the code or whatever that creates the
asdfg.xls file?

I also suggest that you post the real thing when you post a problem.
Many times we see someone posting back to say, "Well, your solution
didn't work because the problem I posted wasn't the real problem, it
was just a fake problem I created for posting because I didn't want to
post the real thing."

Can I solve any of the problems (in Access) that you can (in Notes)?
.... probably 99% of them, although it is quite possible that Notes has
some capaiblities that it will be hard to match in Access ... and VICE
VERSA. We could respect both.

Denigrating Access may not be your best strategy for getting help. It
may alienate those who could help best, while encouraging the wannabes
to join you in speculative coding ventures.

Jul 14 '06 #8
"MVSGuy" <kk*****@fuse.netwrote in
news:11**********************@h48g2000cwc.googlegr oups.com:
>You may be interested in buying a copy of Total Access Analyser (
www.fmsinc.com )

You're saying access doesn't even have a fricking "find" function?
Wow, I was expecting at least some primitive functionality.

Say what you want about Notes, but the design client will let you
do a stupid find...

MVSGuy (finding less & less to love about access)
If you would fricking read the replies to your question, you would
have had your answer on July 3rd:

http://groups.google.com/group/comp..../msg/85815d4d6
ac81e4e

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Jul 14 '06 #9
"Lyle Fairfield" <ly***********@aim.comwrote
Denigrating Access may not be your
best strategy for getting help. It may
alienate those who could help best,
while encouraging the wannabes
to join you in speculative coding
ventures.
There seem to be quite a lot of people who think that going into a newsgroup
and saying "your baby's ugly" will put people on the defensive and make them
try to prove otherwise. In my observation, it mostly gets them told "Don't
let the door hit you in the rump on your way out!" But, well, we tend to be
more polite here in Access than in some other NGs (at least, most of the
time).

Larry
Jul 15 '06 #10
They end

--

Terry Kreft
"Larry Linson" <bo*****@localhost.notwrote in message
news:IZYtg.471$Lw.443@trnddc07...
"Lyle Fairfield" <ly***********@aim.comwrote
Denigrating Access may not be your
best strategy for getting help. It may
alienate those who could help best,
while encouraging the wannabes
to join you in speculative coding
ventures.

There seem to be quite a lot of people who think that going into a
newsgroup
and saying "your baby's ugly" will put people on the defensive and make
them
try to prove otherwise. In my observation, it mostly gets them told
"Don't
let the door hit you in the rump on your way out!" But, well, we tend to
be
more polite here in Access than in some other NGs (at least, most of the
time).

Larry


Jul 15 '06 #11
I'll try not to hit ctrl-enter to early this time.

The ybu crew tend to be the sort who have a toolbox with a hammer in it,
they quite happily drive nails using the hammer. They hear about screws and
buy a screwdriver but then can't understand why hitting the screw with it
"doesn't make it go in like my hammer used to ... "
--

Terry Kreft
"Larry Linson" <bo*****@localhost.notwrote in message
news:IZYtg.471$Lw.443@trnddc07...
"Lyle Fairfield" <ly***********@aim.comwrote
Denigrating Access may not be your
best strategy for getting help. It may
alienate those who could help best,
while encouraging the wannabes
to join you in speculative coding
ventures.

There seem to be quite a lot of people who think that going into a
newsgroup
and saying "your baby's ugly" will put people on the defensive and make
them
try to prove otherwise. In my observation, it mostly gets them told
"Don't
let the door hit you in the rump on your way out!" But, well, we tend to
be
more polite here in Access than in some other NGs (at least, most of the
time).

Larry


Jul 15 '06 #12
"Larry Linson" <bo*****@localhost.notwrote in
news:IZYtg.471$Lw.443@trnddc07:
"Lyle Fairfield" <ly***********@aim.comwrote
Denigrating Access may not be your
best strategy for getting help. It may
alienate those who could help best,
while encouraging the wannabes
to join you in speculative coding
ventures.

There seem to be quite a lot of people who think that going into a
newsgroup and saying "your baby's ugly" will put people on the
defensive and make them try to prove otherwise. In my
observation, it mostly gets them told "Don't let the door hit you
in the rump on your way out!" But, well, we tend to be more polite
here in Access than in some other NGs (at least, most of the
time).
The annoying thing about this guy is that he's had his answer for
nearly two weeks, but apparently can't be bothered to read followups
to his posts.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Jul 16 '06 #13
The annoying thing about this guy is that he's had his answer for
nearly two weeks, but apparently can't be bothered to read followups
to his posts.
Yeah, stone the guy who points out the Emperor has not clothes.
Personally, I'm annoyed the Emperor has no clothes to begin with.

Lyle Fairfield wrote:
http://www.ffdba.com/downloads/What_..._An_Object.htm
This is best answer I've had so far!! I've added "On Error Resume
Next" since the rookie creating objects liked to put slashes in object
names.

After I run the script, I do a simple search on the directory to find
all references to an object.

Thank you specifically to Lyle and to all the other 'experts' who tried
to help,
MVSGuy

Jul 28 '06 #14
"MVSGuy" <kk*****@fuse.netwrote in
news:11**********************@i42g2000cwa.googlegr oups.com:
>The annoying thing about this guy is that he's had his answer for
nearly two weeks, but apparently can't be bothered to read
followups to his posts.

Yeah, stone the guy who points out the Emperor has not clothes.
Oh, give me a break.

You were given an answer on how to use the FIND function in code
windows. You were given suggestions for various find and replace
utilities, one of them free.
Personally, I'm annoyed the Emperor has no clothes to begin with.
You are clearly an idiot.

<PLONK>

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Jul 28 '06 #15

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

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
8
by: Brandon McCombs | last post by:
This may be the wrong group but I didn't see anything for VC++ so I'm trying here. I have a C++ book by Deitel and Deitel that says I can use fstream File("data.dat", ios::in | ios::out |...
9
by: Paul | last post by:
Hi, VB.NET is saying the file I am creating is in use by another process and won't complete its task of moving the file to the specified destination folder. Here is my code (the main bit...
5
by: David Webb | last post by:
The problem started when the Working Folder for a project was somehow set to the folder of another project. I set the correct working folder in VSS and deleted the .vbproj files that had been...
1
by: santhosh_176 | last post by:
:I Created a Pocket PC application for iPAQ 5450. Every thing went fine even installer creation. I could run the setup and install it into the actual device and worked fine. The application enables...
10
by: Steve | last post by:
Hi, I'm trying to read a binary file into a buffer: std::ifstream ifs(fileName, std::ios::in|std::ios::binary); if (!ifs) return; ifs.seekg(0,std::ios::end); int len = ifs.tellg();...
2
by: Jack David | last post by:
Using the code below I am able to monitor a single directory for a new file and then kick-off a process to deal with the file. The question is??? How would I modify this code to be able to monitor...
15
by: David Thielen | last post by:
Hi; My ASP.NET app (C# calling J# under .net 2.0) creates a png file in a subdirectory to display as part of the created page. However, the bitmap will not display due to a security violation. ...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.