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

  • Users: vc1881
  • Content: Threads
  • Order by date
  1. vc1881

    How to link 2 tables using a link table?

    Hello, Table 1 contains ID Make 1 GM 2 Ford 3 Chrysler Table 2 contains ID Colour 1 Red 2 White 3 Blue LinkTable contains ID Make_ID Colour_ID 1 1 1 (GM Red) 2 2 1 (Ford Red) 3 1 3...
  2. vc1881

    Help with Database Design

    Hello, I am having difficulties designing a database with data from table 1 referencing multiple data in table 2. For example: Table 1 includes: id Title 1 105MM 2 155MM Table 2 includes: id Country 1 BEL 2 CAN 3 FRA 4. ITA How do I design both Tables...
  3. vc1881

    Problem using "NOT IN" Syntax in crystal report 2008

    Hello, What is the proper syntax for searching using the NOT IN command?, the IN sybtax works, but the NOT IN is not the proper syntax. IN Syntax: myaop29report.RecordSelectionFormula = "{AOP29.field2}in [ " & xyz & "]" NOT IN Syntax: Error Message (boolean or string expected)...
  4. vc1881

    Installing crystal report msi file with VB.NET setup project

    Hello, How do you automatically launch crystal report 2008 .msi file with the VS2008 setup project. The .msi file is included in my project as a separate folder, but when I run the VS2008 setup project the crystal report doesn't automatically launch. Thanks, Victor
  5. vc1881

    Search against text file

    Hello, I have a text file with a column of data. How do I search for matching records against a database field? Thanks, Victor
  6. vc1881

    Inserting multiple records from one table to a single record in a seco

    Hello, I have two tables with matching fields LAST: TABLE 1 (Records) LAST HOBBY charles Soccer TABLE 2 (Records) LAST INTEREST charles swimming charles basketball charles football I would like to have the following in TABLE 1 (Records) LAST HOBBY...
  7. vc1881

    How to Merge data from table 2 to table 1 based on common field

    mySQL_Statement = "INSERT INTO IDENTIFICATION_DATA(code) (SELECT RN FROM REFERENCE_DATA(RN) WHERE IDENTIFICATION_DATA.NIIN = REFERENCE_DATA.NIIN)" Dim ConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\aopt2002orgorg.mdb;Persist Security...
  8. vc1881

    Help with left outer join using three tables

    Hello, I would like to join 3 tables based on a common field. Table 1 should always have data, but data from tables 2 and 3 will not always be available, can you please help me with the left outer join syntax for three tables, below is my code for joining two tables, but the and (after the IN...
  9. vc1881

    How to insert "-" in certain position of records

    Hello, I am using VB.NET 2005 and MS ACCESS 2003 My database contains data in the following format: 1305000248767 I need to insert "-" in several location to obtain the following format 1305-00-024-8767 How do I append the records to insert the "-" at these locations. Thanks, Victor
  10. vc1881

    Update darabase from text file

    Hello, Hello, I have a text file with data for certain fileds that are in certain position, for example data for field1 is in yhe firts 5 spaces in each line, data for field2 is from the 7th space up to the 10th space, field3 from the 11th space to the 19 space etc..... I only know how to...
  11. vc1881

    MS ACCESS limitations?

    Hello, I'd like to create a database with VB.NET to distrbute via a CD, users will need to run the application either from the CD or the desktop. Can MS ACCESS (03/08) handle 300,000 records? Besides using a password, is there another way to protect the database?, can it be hidden in the...
  12. vc1881

    lternative to MS ACCESS with VB.NET

    Hello, I'm looking for an alternative to MS ACCESS, I'm building a database with over 300,000 records and was told ACCESS is not the best database, is filemaker the best alternative?. Can an ACCESS database be converted to filemaker? Thanks, Victor
  13. vc1881

    How to search PDFs

    Hello, I need help on how to search PDFs in a folder from text entered in a text box, list the PDF file names which contains the text in a list box and click on the filenames from the listbox to open the PDF. Can you please help me with the sample codes or links related to this topic. Thanks...

Part and Inventory Search

Back
Top