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 IamaSherpa 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: *

  1. VBAfun

    My VBA code takes a LONG time to appear as I type. What's the deal?

    Try compacting the .MDB and see if it helps. I've had this problem on a desktop-wide basis and it went away after eliminating some space on the Win desktop and defragging it.
  2. VBAfun

    Hacking of asp post info

    Without seeing your pgms, I couldn't say. Some thoughts. If you are on a free ASP hosting website, your code and pgms are generally available for other members to view. A common method that allow alteration of data between post & server is by utilizing Querystrings, by altering data on the...
  3. VBAfun

    VB code to find Access mdb name?

    John - dbengine(0)(0).name worked - thanks very much!
  4. VBAfun

    VB code to find Access mdb name?

    Is there some way I can code a routine in VB to find the name of the Access .mdb that the code is executing in? The .mdb name would vary depending on what path/filename it is in and the program logic would be dependent on it - so that I do not have to rely on hardcode. I have done similiar...
  5. VBAfun

    Formatting Excel from Access using VBA

    hpa, it looks like your code is not establishing an Excel object - try this? Dim objExcel as Object Set objExcel = CreateObject("Excel.Application") objExcel.Workbooks.Open 'put your path & filename here) objExcel.WindowState = 2 'sets it for maximized window objExcel.Visible =...

Part and Inventory Search

Back
Top