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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sparrow

  1. sparrow

    Operation Invalid Without a current Index?

    I have an Access 97 database that has suddenly come up with the above error. The repair utility will not work becuase there is no index 1. How has this happened ? 2. Can it be fixed Thanks in advance Paul
  2. sparrow

    Bitmap Encryption(General Query)

    I remeber a small program called SNOW that did this, I found it on the internet, but I can not rember where. Try searching ENCRYPT SNOW Paul
  3. sparrow

    HOW TO ATTACH AUTOMATICALLY FILES TO E-MAILS

    Try This Set OL = GetObject(, "Outlook.Application") Set OL_Mail = OL.CreateItem(0) OL_Mail.Attachments.Add (filename) Paul
  4. sparrow

    Only one instance of program

    It is not clear if you mean that the user starts a second instance of your VB Program, or a second instance of MQ Series. However. This is the code I have in the MAIN module that starts when my users try to run my VB Executable Dim SaveTitle As String On Error GoTo handler If App.PrevInstance...
  5. sparrow

    max date less than current

    How about QueryOne Select Salary, Date from Table Where Date < *Date QueryTwo Select Salary, max(Date) from QueryOne Paul
  6. sparrow

    Excel Unable to Find/Open File when dbl-clicking .xls file

    From &quot;My Computer&quot; select View>Options from the menu Select &quot;File Types&quot; Scroll down to find MS Excel Worksheet (extension = xls) Select EDIT Select the OPEN action and EDIT You should have something like &quot;C:\Program Files\Microsoft Office\Office\excel.exe&quot...
  7. sparrow

    more than 255 characters in access?

    Try changing the field type to MEMO Paul
  8. sparrow

    Count how many in Recordset

    I normally use .RecordCount for my recordsets. What I have found is When I open the record set RecordCount = 0 or 1 If it is 1 then MoveLast resets RecordCount the the number of recordss in the record set Hope this is helpful Paul
  9. sparrow

    I have this piece of code that does

    What about If Adodc1.Recordset.NOMATCH Then This is checing for a matching record rather than end of file Paul
  10. sparrow

    Invald results from ODBC

    In our office we are using Access 97 connecting to Sybase 10 ODBC. If I create a new database and connect to tables and run a query then each returned record is exactly the same. It seems to return the first record found in the database as the result for each record that should be returned. If...
  11. sparrow

    Can't find project or library

    I have just started amending an old project, but when I try to run it I get the error message &quot;cant find project or library&quot;, folowed by the reference &quot;Microsoft Calendar Control 8.0&quot; beung highlighted. If I create a new project then there is no problem. Any hints as to...
  12. sparrow

    Windows ME

    I think it might have been moved under ACCESSORIES Paul
  13. sparrow

    Linking data from Access and a text file

    How about Import the text file to a Temp table. Run an Update query against the Temp table and Update the Price in the Product table Paul
  14. sparrow

    Help with INT function

    Simon I am using VB5, this function is not available Paul
  15. sparrow

    Help with INT function

    Simon This is part of a financial program allocationg invoice amounts by percentage. Because a percenatage of an amount can have many decimal places I am trying to ensure that the value is set to only 2 decimal places. Paul

Part and Inventory Search

Back
Top