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 SkipVought 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: jtfrier
  • Order by date
  1. jtfrier

    How to Print HashMaps

    man you rock thank you for all your help every thing is working great. I got it printing to table now thanks again sooooo much.
  2. jtfrier

    How to Print HashMaps

    Ok every thing is working great i found that Iterator that let me show my resluts and it is working great. I now need to export it to table I think that im goign to need another loop in my wile statment were my iterator is and some kind of string like a buffer that I append to an array to send...
  3. jtfrier

    How to Print HashMaps

    Thank you so much for your help this has been a hard project for me. This was my first program in Java thank you again.
  4. jtfrier

    How to Print HashMaps

    This post is related to another post Clean up on Database I think I got the solution to that problem. But I am having trouble figuring how how to print my HashMap to a table or XLS sheet. Here is my code This is my first java program so pleas give detail. //Concatenate.java //adds decription...
  5. jtfrier

    Clean up on Database

    ok still need some help here is what i have so fare I need to concatenated decs with , and it seems im only geting the first desc in my array list any ideas on how to get all decs in the array list. //Concatenate.java //adds decription fields together import java.sql.*; import...
  6. jtfrier

    Clean up on Database

    Ok this is what i have got so fare This connects me to the database and lets me call a SQL string //Concatenate.java //adds decription fields together import java.sql.*; public class Concatenate { private static Connection connection; private static Statement statement; public static...
  7. jtfrier

    Clean up on Database

    sorry about that I was wrong I do not have a Excell file with information.
  8. jtfrier

    Clean up on Database

    this data was exported out and im cleaning it up i have it in a excell spreed sheet two if you think it might be easer to right code to change that, I dont realy care what order Dec gets put into in the single column just needs to be done.
  9. jtfrier

    Clean up on Database

    any ideas on how to get started or what type of code i can search for that might get me what i want.
  10. jtfrier

    Clean up on Database

    I have a table that has two main fields one called part# and the other des for decription my table has mutipal part# with dec that that are defrent I need to have one part # and the decription field des need to be combinded. The tables are stored in access I also need to create a concetion to...
  11. jtfrier

    Table clean up

    thank you sooooo much it worked great!!!!!!!!!!!!!
  12. jtfrier

    Table clean up

    it runs with out errors but it still keeps duplicat part numbers any ideas
  13. jtfrier

    Table clean up

    SELECT Partno, Concatenate("SELECT Desc FROM Edmanmanruby1 WHERE Partno =" & [Partno]) AS Descriptions FROM Edmanmanruby1;
  14. jtfrier

    Table clean up

    the error i get says Data type mismatch in criteria expression
  15. jtfrier

    Table clean up

    im geting error when runing this here is the coad im using for the link above Function Concatenate(pstrSQL As String, _ Optional pstrDelim As String = ", ") As String Dim db As DAO.Database Dim rs As DAO.Recordset Set db = CurrentDb Set rs =...
  16. jtfrier

    Calling module

    oh i just need to run the sub ty
  17. jtfrier

    Calling module

    I have a Module in MS Access with this code and I need to know how to call it runing a query Option Compare Database Option Explicit Public Sub RSLoop() Dim rs As ADODB.Recordset Dim rs2 As ADODB.Recordset Dim varPart As String Dim cntr As Long Dim varDesc On Error GoTo ErrorHere...
  18. jtfrier

    Table clean up

    ok thanks that help
  19. jtfrier

    Table clean up

    im working in MS Access
  20. jtfrier

    Table clean up

    that looks right but looks like its in sql im not experinced enough to convert it any tips its been long time since i have writen one line of code

Part and Inventory Search

Back
Top