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 Mike Lewis 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. sdimov

    INSERT setments

    Your AutoID is immaterial to what you are doing. Why do you need to start from zero? If, for some reason you do, then you have to just use a regular number format and populate it yourself.
  2. sdimov

    Check Excel File For Data

    You have to open Excel and check each sheet or at least one if it contains data - if it does you proceed with the TransferSpreadsheet, otherwise you stop.
  3. sdimov

    Combo Boxes - populating

    Popultaing the ComboBox in Excel is not an issue. Another question - is Excel used as a data entry tool or a calculation engine? Why not design the app in Access and export the data into Excel (maybe as a pivot table)? Will users be updating Access from Excel? In that case the two-way traffic...
  4. sdimov

    Making A Text Box Work More Like A Word Processor

    What is the point of working like Word if it is for data entry. It might always be exported to Word and formatted accordingly through Word VBA... Enter Key behavior should be enough. Svet
  5. sdimov

    If...Else...Then or Select

    I think you might want to look into ASP for what you would like to do and maybe some scripting. My suggestion was for Access. If you create the table and execute the query it will do exactly what you are describing. Svet
  6. sdimov

    If...Else...Then or Select

    Little note on previous setup, it might be a bit slower than running IF or SELECT but you don't have to go and change VBA code when rates or limits change, all you have to do is make changes to table, you can even create a nice form to update table from. Svet
  7. sdimov

    If...Else...Then or Select

    I would set up the following table: ID CL_Def Limit Rate 01 Class1 0 1.250 02 Class1 500000 1.500 03 Class2 0 0.750 04 Class2 250000 0.850 05 Class2 350000...
  8. sdimov

    INSERT INTO Query Problem

    Also #26/07/2002# maybe? Svet
  9. sdimov

    keep user informed as code runs

    In each app I always have a main form called frmMain. frmMain has lblStatus in navy backcolor, white forecolor. I put the code below in a module named Status. Then I have: Public Sub Dummy() Status.StatusBar "Please, wait. Importing..." Call Import Status.StatusBar...
  10. sdimov

    Clear Selected Items in List Box Programmatically

    ListBox.Value=vbNullString Svet
  11. sdimov

    List Box Item Selected Automatically after Requery

    lstListBox.Value=vbNullString
  12. sdimov

    TransferText Method

    I found an answer- by opening another Access and taking the Systems tables with the specs to the back-end my front-end does not bloat. Not the most elegant way, but since I import 16,000 records I thought speed would be an issue so I used the Transfer method. Svet
  13. sdimov

    TransferText Method

    I generally avoid using the Transfer methods but for the purpose of speeding things up I decided to set up File Specs and use the TransferText method of a front and back end Access 97 application. Turns out that the front-end size bloats when I use this method, apparently it has something to do...
  14. sdimov

    ASP and Microsoft Access

    http://www.asp101.com
  15. sdimov

    Function that tells if string entry is a file

    Dim sFile as String sFile="c:\temp\MyFile.txt" If Len(Dir(sFile))>0 Then 'File exists Else 'File does not exist End If
  16. sdimov

    finding the references menu item in the toolbar

    On the last note on not compiling, I think you could have tried repair/compact and the it would have recompiled. have seen this in Access 97. Svet Dimov
  17. sdimov

    Using Customized Toolbars on Popup Forms

    Did you try a right-click and have the short cut menus been assigned to the proper controls? Svet Dimov
  18. sdimov

    VBA code to automatically logout database users

    This idea would be feasible if you would like to make changes to the back-end (like adding a table or a field). In that case you would need all users to disconnect from the back-end. For application maintenance (front-end) I normally use a ini file to copy the latest version from the network...
  19. sdimov

    Database Properties

    For those that are curious, here is the answer to my question: Option Compare Database Option Explicit Sub GetSummaryInfo() On Error GoTo ERROR_PROC Dim db As DAO.Database Dim doc As DAO.Document Dim cnt As DAO.Container Dim prp As DAO.Property Dim...

Part and Inventory Search

Back
Top