Search results

  1. H

    OpenFileDialog

    Hey all. I am working on an MP3 player and am having the following problem when i am importing music from a directory. What i am wanting to do is show a openfiledialog box and let the user select which tracks to add to the mp3 player. Now i have a folder of mp3s with over 1133 mp3 files in...
  2. H

    Monitoring Access DB Size

    I have used the below function to compact the database when it is over a certain size. Thanks to Ghudson 'Used with setting the status bar message Public vStatusBar As Variant Public Function CompactOnClose() On Error GoTo Err_CompactOnClose If FileLen(CurrentDb.Name) > 5000000 And...
  3. H

    Disable Shift Key

    You can format the inputbox with a module. Its a lot of code but it works great. Here is the code '//////////////////////////////////////////////////////////////////// 'Password masked inputbox 'Allows you to hide characters entered in a VBA Inputbox. ' 'Code written by Daniel Klann...
  4. H

    Searching Access World Forums

    I agree. Although sometimes a good slap on the hand is needed. If someone is asking a question that has been asked like a million times then i see no problem slapping a hand. Also i think you can tell by their question whether they are actually trying to fix a problem or just want to finish...
  5. H

    Keep off the grass

    Holy Hell. That happened within about an hour of my house. lol :) Hooks
  6. H

    My trip and the NHL

    I once seen a hockey player take a slap-shot in his ankle shattering it. This happened in the 1st period and he refused to take off his skate because he knew that his ankle would swell and he would not be able to put the skate back on. He finished the game. Ive also seen hockey player play...
  7. H

    My trip and the NHL

    You should go to your local dirt track. Hillbilly style. The races last about 15 minutes and you get mud and dirt thrown on you. Very fun, fast and exciting.
  8. H

    Has anyone ever relocated?

    I live in the mid-west. My place of work hired a couple of consultants from washington state. One of them had a 750,000.00 dollar house that was 1200 sq feet. lol i couldn't imagine that.
  9. H

    My trip and the NHL

    Man you are a Genius. That is hilarious
  10. H

    My trip and the NHL

    The arena that i watched the hockey game was the same arena that a 12 year old girl got got hit in the head with a puck and died the next day at the hospital. That is why the NHL now has those large nets above the glass behind the goals. Hockey has always been my favorite sport. Mainly...
  11. H

    My trip and the NHL

    She sounded like a keeper.
  12. H

    My trip and the NHL

    Yeah, she thinks its funny now. All of the stains came out of the jacket. Yes Rich that is the object. But it is nice to see replays and such on the tv. Actually we had the TV turned off most of the time. Thats what i like about Rich. Always trying to stir it up. The sad thing is that...
  13. H

    My trip and the NHL

    Hey all I just got back home from my first NHL game. Very Very good. I have never had this much fun at a sporting event in my life. I really appreciate the skill and the toughness of all of the NHL players. I watched the Columbus Blue Jackets take on the Vancouver Canucks in Columbus...
  14. H

    NameDecoder.com

  15. H

    Exercise and Dieting

    Another good way to lose weight is to drink lots and lots of water. I am really really out of shape so i am probably not the best one to reply to this thread but i did lose 50 pounds a couple years ago by doing nothing more then drinking lots of water. I still drank soda with meals and ate...
  16. H

    SQL Transaction Return Value

    Hey all. Im back with another SQL question I am using the below stored procedure to insert a new order for a customer. It also moved items from the customers shopping cart to the order details table. The procedure is working great with the exception that i am not getting the OrderID return...
  17. H

    SQL SUM statement

    Thanks a bunch.
  18. H

    SQL sum statement help

    Sorry for not replying. I ended up working around the problem As always thanks for the help.
  19. H

    SQL SUM statement

    Hello all. I once again have a SQL statement problem. What Im wanting to do is SUM up the Quantity and price. The SQL statement below does this just fine. SELECT ScripSaleCart.CartID, ScripSaleProductMaster.Description, ScripSaleCart.Quantity, ScripSaleProductMaster.Price...
  20. H

    SQL sum statement help

    OK Here is my sql statement SELECT Sum(DepositAmount)-Sum(PaymentAmount) AS Balance " & _ "FROM tCTransactions " & _ "WHERE tCTransactions.AccountName = 1 Im still getting the same error
Back
Top Bottom