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

  • Users: vc1881
  • Order by date
  1. vc1881

    How to link 2 tables using a link table?

    The files are in this link: http://www.box.net/shared/rbi9gebnhg Thanks, Victor
  2. vc1881

    How to link 2 tables using a link table?

    The data from group1 dissapears, seems like adding group 2 with group 1 causes the report not to work. For example: group 1 GM Ford Group 2 Red Green Group 1 is not linking with group 2. Victor
  3. vc1881

    How to link 2 tables using a link table?

    Hello, I don't have an SQL, in the tables are linked through the relatioship section of access. table 1 Id is linked to Make_ID field in Link_Table (1 to many) table 2 Id is linked to Colour_ID field in Link_Table (1 to many) Tables are also linked the same in the link section of crystal...
  4. 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...
  5. vc1881

    Help with Database Design

    Hello, I think I need to add other columns in Tables 1 and 2 because if I only use the ID columns from both tables, I will only link to table 2 where the ID columns match in both tables. I want to be able to see multiple records in table 2 that applies to a record in table 1. For example when...
  6. 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...
  7. 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)...
  8. 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
  9. vc1881

    Search against text file

    The data in the text file is in the following format: aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd eeeeeeeee what SQL commands would read every line and search against the database? Thanks
  10. 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
  11. vc1881

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

    Hello, I'm getting the followwing error at the cmd.ExecuteNonQuery() line: No value given for one or more required parameters. I can't see what's causing the error. Thhanks, Victor
  12. vc1881

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

    Hello again, I tried the same code to transfer data from a diferent table, but I am getting the following error: "No value given for one or more required parameters", at the cmd.ExecuteNonQuery() line, given my code can you help me determine the cause of this error. Thanks, Code: Dim...
  13. vc1881

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

    it's working ok :-) Thanks a million. How do we avoid duplicate hobies from matching field to be included in the IDENTIFICATION_DATA table? Thanks, Victor
  14. vc1881

    Update darabase from text file

    Hello, This problem was resolved. Thanks for the code. Victor
  15. vc1881

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

    I added: SQLStr += " WHERE IDENTIFICATION_DATA.NIIN = REFERENCE_NUMBER_DATA'" but I'm still getting the following error, the code field is definitely large enough to capture the data, any idea what's causing the error?. Error: The field is too small to accept the amount of data you attempted...
  16. vc1881

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

    Hello, I'm getting the following error on line:cmd.ExecuteNonQuery It looks like the "'" don't match, I couldn't figure it out. Syntax error in string in query expression ''hockey,swimming,'. Can you please help me fix this error. Thanks, Code: Dim ConnectionString As String =...
  17. vc1881

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

    Thank you, I will try it and get back to you. Victor
  18. vc1881

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

    Hello, I got it to work with the following SQL: Dim mySQL_Statement As String = "UPDATE identification_data " & vbNewLine & _ " INNER JOIN " & vbNewLine & _ " reference_number_data " & vbNewLine & _ " ON identification_data.niin " & _ " = reference_number_data.niin " &...
  19. vc1881

    How to insert "-" in certain position of records

    Thank you for the code. Victor

Part and Inventory Search

Back
Top