Recent content by Vogel515

  1. V

    Messing with the MIS department

    Hah - will do... I've decided just to throw it on a jump drive and run it that way.
  2. V

    Messing with the MIS department

    Initially I was wondering whether in their log of HTTP activity they were storing something, but I guess that was stupid of me. Yes, they are just tracking which programs are running, anyway to change how the name appears?
  3. V

    Messing with the MIS department

    Well, I apologize if I hit a sore spot for you, but I bet the time to figure this out equates to about the same amount of time as un-bubble wrapping a cube, or having to pick up about 300 3/4s filled cups of water all over someones desk.
  4. V

    Messing with the MIS department

    Actually, I love my job. You don't play office pranks?
  5. V

    Messing with the MIS department

    So the MIS department likes to uninstall FF from people's computers and monitor who is visiting the web using it, I'd like to write a small app that will make IE appear as FireFox when visiting websites - not too the websites, but to our MIS department. Anyone have any ideas? If you need...
  6. V

    Getting Started with Java

    edit
  7. V

    Getting Started with Java

    edit
  8. V

    SQL Query - creating procedures & using variables: SOLVED

    I apologize for not being clear... the problem is now solved 1. This procedure will be run on demand and I wanted it to be able to figure out the current year... declare @Cur_FY as int select @Cur_FY = dd.FY from date_dimension as dd dd.date =...
  9. V

    SQL Query - creating procedures & using variables: SOLVED

    I am trying to write this procedure so it does not need to be editing or ask for input going forward... I have a date dimension table which allows me to create joins to find the fiscal period/quarter/year... to get the current fiscal year I am doing this: select @Cur_FY = dd.fiscal_year...
  10. V

    SQL Query - creating procedures & using variables: SOLVED

    This will be the first procedure I have ever written but pretty much this is what I need to do: Query against a date dimension table to return the current fiscal year Then create 8 additional variables which will use the current fiscal year variable to determine the start and end dates of...