Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bbarr
  • Content: Threads
  • Order by date
  1. bbarr

    Tools to help with deployment of .mdb with .dll's

    Are there any tools out there that I can use to install all the requisite .dll's used in an .mdb file that I created. Right now I have an app with a coupld of .dll's that I manually register on the user's computer ... It hasn't been much of a problem as the number of users has been quite small...
  2. bbarr

    Getting table names in external db

    I'm using Access 2000. I'm trying to set a connection to another .mdb file and programmatically set links to all tables in that file. If the second .mdb file is "d2.mdb" and located in "C:\" then how do I access the TableDefs collection of this database?
  3. bbarr

    Problem deleting all linked tables

    I created the following code to delete all linked tables in my database (Access 200): -------------------------------------------------------- Dim tbl As TableDef Dim dbs As Database Set dbs = CurrentDb For Each tbl In dbs.TableDefs If Len(tbl.Connect) > 0 Then ' Is a linked...
  4. bbarr

    What is the effect of India's Election on Outsourcing?

    If you haven't been paying attention, you may have missed the fact that there have been some major developments in India during the past few days .... 1. Indians voted the current PM out of office; while a new gov't has not yet been formed, it will most likely be headed by the leftward leaning...
  5. bbarr

    Programmatically controlling startup and exit

    Is there a way to programmatically control how an Access 2000 app starts up and is there an event for it when it shuts down?
  6. bbarr

    How to persuade mgmt on need of MSDN subscription

    I posted this elsewhere but was advised this might be a better forum for my question. I'm developing an App in MS Access 2000 using a lot of VBA. There is a lot of data manipulation and calculations going on and I feel that if used data structures such as Linked Lists, Priority Queues, Binary...
  7. bbarr

    How to tell how good a programmer you are

    A friend of mine who has been programming for many years passed this to me. Some of you may have seen this before. The other day I read here a posting from someone asking how does one know what level a programmer they are. I can't seem to find it today, so I figured I'd just start a new...
  8. bbarr

    MS Internet Controls & MS HTML Object Library to parse HTML

    Hi, I've been doing a lot of googling to find decent documentation with examples showing how to parse HTML documents with the Web Browser control and the libraries listed in the subject line. I have found stuff, but it is not very good. I'd appreciate if someone could provide direction to a...
  9. bbarr

    NYTimes article on outsourcing - Positive to US

    Here's an article that states that the outsourcing of programming to places such as India is positive to the US economy. Interested in hearing what others think about this article. http://www.nytimes.com/2004/01/29/business/29scene.html
  10. bbarr

    Is it possible to have conditional execution of an .exe file?

    I hope this is the right forum for this question! I have an .exe program that I only want users to be able to execute if they have met a certain condition; the certain condition being that they filled out a logbook (a separate app ... simple databse). I guess the first question is, do .exe...
  11. bbarr

    Impact of Mars/Moon Mission on American IT workers' careers?

    Interested to get some feedback from everyone on what people are thinking regarding the proposed mars/moon missions and how they impact on the future of IT workers here in America: 1. Since this is the federal government, does this mean that much of the work will be limited to American workers...
  12. bbarr

    Call Method on SubForm

    In Access 2000: How do I call a form's subform procedure? Example: frmMain - Parent frmChild - Child on frmMain's on_open event I want to execute a method in frmChild called Test()? Thanks!
  13. bbarr

    output gdb steps to a file

    Hi, I'm debugging a program using gdb and I want to write the output of the steps to a text file to help analyze what my program is doing. I've looked at various tutorials and forum results that I got from searching on google but not finding what I need. Thanks. - Bruce
  14. bbarr

    Char limit in query for memo fields.

    I have a SELECT query where one of the fields is a memo field. One of the records has a rather large about of text in it's memo field. When I run the query on that row, the field only shows a portion of the text. Is there a maximum character output limit per field in a query even for a memo...
  15. bbarr

    Can't save as MDE

    I have a .mdb in Access 2000. I tried to save it as an .mde file but i got an error message saying it can't save in this format. it's rather large and has links to another .mdb file. Could either of these be the reasons for it not to work? thxs! - Bruce
  16. bbarr

    Object Conflict between Access 97 & 2000?

    I recently moved a 2000 .mdb onto a shared drive. my colleague started using it and ran into some problems. upon debugging on his computer i came upon error messages saying that various objects can't be found. I did a search for them in the object browser and they were there. One possible...

Part and Inventory Search

Back
Top