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. 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
  16. sparrow

    Help with INT function

    I have a field ThisAmount defined as Double Using the following code: ThisAmount=4747.69 ThisAmount=ThisAmount * 100 ThisAmount=INT(ThisAmount) ThisAmount=ThisAmount/100 The INT function converts the value of 474769 to 474768 WHY ????? Paul McEwan
  17. sparrow

    Windows ME - Restore Points

    For some reason Windows ME is no longer creating automatic restore points and whenever I try to set a manual restore point the system say I must reboot (even after reboot). What have I changed, and how can I get it to woork again Paul
  18. sparrow

    Support files for Crystal reports

    I do not have an official list, but I tend to install the following files to c:\winnt\crystal when ever I roll out an application<br> <br> Volume in drive C has no label.<br> Volume Serial Number is 48A1-AD77<br> <br> Directory of c:\winnt\crystal<br> <br> 04/01/00 01:06p &lt;DIR&gt...
  19. sparrow

    Invisible Indexes

    Thanks for the information. I will check this out next year<br> <br> <br> Sparrow
  20. sparrow

    reported virus

    We have just had an internal mail about a &quot;fancy display called elfbow.exe&quot; . Note NOEL. This file was infected with a virus, but it was detected and fixed.<br> <br> I dont know if this a spelling mistake or if there really is another exe out there with a similar name<br> <br> <br>...

Part and Inventory Search

Back
Top