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 bkrike 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: metalman
  • Content: Threads
  • Order by date
  1. metalman

    running a dos program through vb

    i have a excell application that i have aded a button into to pull in data from a db. i want to create another button to run several dos commads. how would i get vba to run these 30 comand lines on the button click.
  2. metalman

    importing totals into excell

    i am using an access2000 database with excell office 2000 profesional. i am trying to read the database by item numbers to put the amount in a spreadsheet. i have it populating the spreeadsheet but it does it one amount at a time from left to right. what i need is the total of each item number...
  3. metalman

    define error

    am getting a undefined error on the 'EntryTable' but i didnt think that i had to define the table names. Option Explicit Public RowsCount As Integer Public ColsCount As Integer Public gColNameArr() As Variant Public gRowNameArr() As Variant Public gItemNumsArr() As Integer Public...
  4. metalman

    run time error on sql string

    this is my string and i am getting a operand missing in the from statment. anyone have any ideas as to what is wrong with it. sql_str = "SELECT Amount(Amount) as m " & _ "FROM EntryTable INNER JOIN HeaderTable ON EntryTable.Reference # = HeaderTable.REference #...
  5. metalman

    reimport data woth out deleting the table

    is it posible to import data into an access table without deleting the table. i have three tables where the format and properties stay the same but when i update the tables it reforamts the table to default setings. this is what 8i am currently useing Option Compare Database Private Sub...
  6. metalman

    importing error

    i am importing a .txt file into access and get a file conversion error on some of the records. i delete some of the good records and rerun and then the errored records pull into access with no errors. can anyone tell me why it wont pull all the files when they will pull in when i break it into...
  7. metalman

    run time error on parameters

    getting a run time error of no value given for one or more required parameters. Set sht = Worksheets("Detail") For i = 1 To RowsCount For j = 1 To ColsCount sql_str = "SELECT Sum(Amount) as m " & _ "FROM Entry INNER JOIN Items ON...
  8. metalman

    combo box accurances

    i have an access 2000 data base and need to read the location code. but each location is listed several times how in vb can i get the combo box to show only one accurance of the location code. to where the user can select a specific location. there are 30 locations. in the database it is in the...
  9. metalman

    file extensions

    i have three files that i need to put into an access database and it dont except the file extensions any help on how i would get these files into a data base would be greatly appreciated. the file extensions are .HDR .ENT .ITM when i try to export them it wont send the data
  10. metalman

    using excel worksheet as report

    want to know if using an excel worksheet can be used as a report page. and if so how do i add it to my project. any help would be greatly appriciated. thanks Rick
  11. metalman

    importing file

    have setup a microsoft access 2000 database. when i go to import the file the import options wont let me select the needed extension (.JRN) how could i import this file into the database with or with out the import in the file menu. also the drop down menu only lets me select text,excell...
  12. metalman

    starting a verification

    we download files everynight via phone line and dialups. i want to read this file and verify that all locations pulled and email me the names of the ones that did not pull. have tried with a form and with out. any ideas or help to get this done would be most appreciated
  13. metalman

    begginer need help

    i need to scan a file and verify to a master list and email the nonconfirmed records. how do you start a project in vb without a form or can it be done.
  14. metalman

    load tables from an ascii file

    how do i pull in an ascii file to load access tables.
  15. metalman

    reading file and sending to email

    new to c++ and need to create program to read a file check it to a master file and send the missing files to an email address. any help to get me started would be mest appreciated.

Part and Inventory Search

Back
Top