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!

Recent content by mlabac

  1. mlabac

    linked url image

    I do not have acces to the UNC, just a url. Any way to do this in access?
  2. mlabac

    linked url image

    I need to display a linked image on a form. I know how to do this if I point to an image on a server. I need to point to a url as the images are not stored on my local server. strImage = "http://www.imagelocation.com/img/320477.jpg" img_Image.Picture = strImage Can this be done in access?
  3. mlabac

    update with aggregate function

    That worked!!! thanks for your help!
  4. mlabac

    update with aggregate function

    I need to write an update statement that updates POExtendedTotal grouped by the PONumber with the sum of ItemExtendedCost I believe I am on the write track as my select statement is returning the right results, but the update statement does not recognize the alias SumOfItemExtendedCost UPDATE...
  5. mlabac

    WinHTTPRequest

    I have written the following procedure to retrieve a .csv file from a website. The procedure works fine, as I use it at other sites to download .csv files on a scheduled basis. The problem with this particular site, is that for security reasons they change the name of the daily. Today the...
  6. mlabac

    DTS Backup and Restore

    Thanks for the help...got them backed up!
  7. mlabac

    DTS Backup and Restore

    How do you back up DTS packages? Are these stored the master DB? I currently back up all the user and system DB's. Is restoring the DTS packages as simple as restoring the master DB? Thanks
  8. mlabac

    replication sql server agent

    I am trying to set up my first replication ever. I am going to be setting up a replication between our server onsite and publish a few tables to an offsite server. I am going to use the onsite server it’s own distributor. In the Configure Publishing and Distribution Wizard i select my...
  9. mlabac

    convert a csv file to txt file

    Got it figured out... Dim myExcelApplication As Excel.Application Dim myExcelWorkbook As Excel.Workbook Dim myExcelWorksheet As Excel.Worksheet Dim myExcelChart As Excel.Chart Set myExcelApplication = CreateObject("Excel.Application") Set myExcelWorkbook =...
  10. mlabac

    convert a csv file to txt file

    Ok, basically i am trying to create a DTS package in SQL server to import this csv file. When I try to import it it can not delimit the fields unless i open the file and save as csv leaving out any incompatible features. Since i have to open and save as i would prefer that it be in a tab...
  11. mlabac

    convert a csv file to txt file

    how do i open the csv file?
  12. mlabac

    convert a csv file to txt file

    Sorry...should have giving more detail. I can open the file in excel and save as a txt file...but I need to do this automatically through VB. Thanks for the quick reply!
  13. mlabac

    convert a csv file to txt file

    I need to convert a csv file to a tab delimited txt file. Renaming the file does not work. Thoughts? Thanks
  14. mlabac

    csv DTS not working

    I have a csv file that I need to import into SQL Server. I download the csv automatically. I am trying to create a DTS package to import in to SQL Server. DTS can not delimit the fields unless I open the csv file in excel and save as a csv, then the dts package can delimit the fields and all...
  15. mlabac

    Append Footer to txt File

    Figured it out...pretty easy Wrote an ActiveX script from DTS Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile(Path, ForAppending, False) f.Write strFooter f.Close Appends the string 'strFooter' to the last line in the text file.

Part and Inventory Search

Back
Top