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. njitter

    Search for existance of certain files in tree of subdirectories

    Hi, i need to perform the following task. I have a tree of directories that contain files. I need to check that each subdirectory contains a complete set of files. If something is missing i need to report that directory. ----AAA 1234.txt 1234.dat 1245.exe 1234.sig ----BBB...
  2. njitter

    Only report last record of two linked tables

    I have the following linked tables: I would like to display only the latest record in the Detailed Info table together with the Guidelines information (record with the newest Entry Date) How to get this record? --- Happy Happy Joy Joy
  3. njitter

    Selecting latest date from joined table

    Tested, works great! tnx --- Happy Happy Joy Joy
  4. njitter

    Selecting latest date from joined table

    Hi, i have the following tables: tblStandard_Information and tblReview_Information. These have been joined with a key. I have created a query to display some fields - view this image: http://img137.imageshack.us/img137/8995/tablenc9.png. SQL view: SELECT tblStandard_Information.Product_Name...
  5. njitter

    [php] Forcing page in iframe

    Hi, i wonder if the following code can be converted to PHP. I have the following html/javascript code: ::index.htm:: <html> <head> <title>Index</title> </head> <body> <script language="javascript"> // writes in the iframe contPage = (location.search.substring(1))? location.search.substring(1)...
  6. njitter

    Excel VBA - Sending Outlook mail with Notify

    That one worked. Thanx!! --- It's never too late to do the Right thing
  7. njitter

    Excel VBA - Sending Outlook mail with Notify

    Hello, i'm sending an email from outlook with the following code: Sub MailTempWorkbook() Dim WB1 As Workbook Dim WB2 As Workbook Dim WBname As String Dim OutApp As Outlook.Application Dim OutMail As Outlook.MailItem Set OutApp =...
  8. njitter

    Late binding of MSWORD object in VB6

    Hello, i'm using a VB6 program developed by an external company. It works fine in our company. We are using MS Word 2002. We want to deploy this software at another site. Unfortunately they are using MS Word 2003. The compiled program is not working because the reference to MSWORD 10 library...
  9. njitter

    Generating Unique ID in form of AB-YY-xxxx

    Thanks for the ADO code. I got the DAO code working but i will look into it.. This did the trick: Dim Db As DAO.Database Dim Cust As DAO.Recordset --- It's never too late to do the Right thing
  10. njitter

    Generating Unique ID in form of AB-YY-xxxx

    I have a Reference to the DAO 3.6 library. This was the first thing i checked when it did not work.. --- It's never too late to do the Right thing
  11. njitter

    Generating Unique ID in form of AB-YY-xxxx

    Hello, i would like to generate an unique ID in the form of CS-06-0001 (where CS is a prefix, 06 is the current year and 0001 is a counter). I had this working in a 97 database but for some reason that code doesn't work anymore in Access 2002 (not my own code). It uses a table with two...
  12. njitter

    [Word VBA] Adding Footer with Pagenumber / Printdate to Document

    The page is not created from a template. It's a piece of software i did not code myself. I just need to make some modifications to it (original company stopped supporting it) --- It's never too late to do the Right thing
  13. njitter

    [Word VBA] Adding Footer with Pagenumber / Printdate to Document

    Hello Macropod, i need to add these fields programmatically. The document is created from within a Visual Basic program. --- It's never too late to do the Right thing
  14. njitter

    [Word VBA] Adding Footer with Pagenumber / Printdate to Document

    Hello, i'm trying to add a Footer containg Pagenumber/Total pages and Printdate to a document when it is created. I want the Printdate to be left-aligned and the Pagenumber/Totalpages to be right-aligned. Excel has .Leftfooter and .Rightfooter but these don't work in Word :( Could someone...
  15. njitter

    Report with several counts

    Follow-Up: I've created the following Queries: - Active - Finished - Too Late - Within Deadline - Projects The task left is to generate the table. --- It's never too late to do the Right thing
  16. njitter

    Report with several counts

    Hello, i need to create a summary report for the following database: The report needs to look like this: I have never done such a report before. Can someone explain to me how to setup such a report? --- It's never too late to do the Right thing
  17. njitter

    Creating a Complex filter

    I'm a bit confused :( Where=[tblAfdeling].[Afdeling],Checkbox,Like,True,*BA-1*; does not work.. I want the function to only evaluate the checked items.. It should say 'Like *BA-1* --- It's never too late to do the Right thing
  18. njitter

    Creating a Complex filter

    FancyPrairie, one thing i noticed is that the function does not take the value of the checkbox (true of false) when it builds the string.. The output is the same wether i select all checkboxes or none.. --- It's never too late to do the Right thing
  19. njitter

    Creating a Complex filter

    The function should be able to read a list of controls that have been defined by the user. Something like this: Group1 = (chkBA_1, chkBA_2, chkBA_3.....) Group2 = (....) --- It's never too late to do the Right thing
  20. njitter

    Creating a Complex filter

    FancyPrairie, the checkboxes are all on a tab-control but i do not think this counts as a group. How would i group the checkbox controls? --- It's never too late to do the Right thing

Part and Inventory Search

Back
Top