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

  1. balistikb

    Running a DTS from Access VBA

    Well what I am trying to do is have a simple way for a user to run a DTS from access 2000.
  2. balistikb

    Call DTS from VBS?

    where do you name the dts package to run?
  3. balistikb

    Running a DTS from Access VBA

    I am looking to do the same thing from access. I need to run a dts from access. It is a simple run, no logging or anything extra. I would just like the user to be able to run the DTS from access. Could someone please help?
  4. balistikb

    No File notification

    In my DTS I want to schedule an import of a text file to a table in SQL. I already have this and it works great. What I would like is to get an email letting me know when there isn't a file to import. I tried attaching a send email task to the transformation but that didn't work. Any ideas?
  5. balistikb

    Look for any file

    Ok is the @cmd @FilePath @FileNameMask all things that I need to declare? As well as @File @FileName? I am not really sure where to begin. I did read through the link and I am not sure what order things need to be done. This is why I asked for help understanding the code. Forgive my...
  6. balistikb

    Look for any file

    Ok, it seems that you are suggesting a couple of solutions. I am new to this so what do you think would be easiest for me to duplicate? I tried looking at that link and I can't really comprehend what is going on. Please Help.
  7. balistikb

    Look for any file

    Is it possible to have a DTS look for a file with anyfile name in a folder? I would like to import a text file that the file nmae changes everyday.
  8. balistikb

    Format date

    Isn't there a way to jus format the date?
  9. balistikb

    Dates...

    Hello all, I just wanted to ask another date question to this post. I want to retrieve the current month and year but I am trying to get it like this 04/04. this is how I am doing it in a DTS: Dim CurDate CurDate = Month(date)&"/"&year(date) What I get is something like this 7/2004 How can I...
  10. balistikb

    Format date

    Hello all, I am trying to create a variable in a DTS that is a date. What I am doing is this: Dim CurDate CurDate = Date What this gives me is the full date. What I would like to get is just the month and year like this 04/04 How do I format this? Thank you
  11. balistikb

    change .dat to a .txt

    Can you explain what that command is doing? Break it down so I can understand. Thanks, I am new to this.
  12. balistikb

    change .dat to a .txt

    Is it possible to change a .dat file to a .txt file in a dts? I tried but it doesn't recognise .dat.
  13. balistikb

    Manually start a DTS through Access?

    But can the DTSRun utility get exicuted from Access?
  14. balistikb

    Manually start a DTS through Access?

    Is there a way to manually run a DTS through access? I need to give the user a way to run this DTS without having them use SQL. Is it possible?
  15. balistikb

    Seting a range to where there only data

    This did work thanks. Now I am trying to figure out how to group and then select that range. All in VB behind excel.
  16. balistikb

    Seting a range to where there only data

    Do I actualy type (xlCellTypeLastCell) or am I supposed to enter something in there?
  17. balistikb

    Seting a range to where there only data

    I am trying to modify a macro with VB and I need to be able to select a range where ther is only data. What I have now is this Range("A2:H9").Select. I know this just selects what I have put as a range. How to I just select a range where there is data only. The range may grow or shrink...
  18. balistikb

    Menu Version needed to run event procedure

    That worked but causes another problem. The field that I need to filter by is a combo box. If I am on a record in my form, and I want to change what is in the combo box so I can filter by it, it changes that value of that combo box for that record. How can I filter without chnging what is in...
  19. balistikb

    Menu Version needed to run event procedure

    that seemed to work. thank you

Part and Inventory Search

Back
Top