Search results

  1. H

    Getting word width in pixels

    Hey all, got a vb.net question. I am creating a generic reporting application. The problem that i am running into is display checkboxes on the report right behind the label. My application works great when using fonts where every character is the same width. If a user uses a font where each...
  2. H

    Vista Rants

    Hey all. I thought i would share with all of you my experience with Microsoft Vista. I loaded a copy of Vista on my home pc for testing for my employeer. My pc has 3 gigs of memory, 3.6 processor, 80 gig SATA hard drive. Anyway i really like the way Vista looks and feels and office 2007 is...
  3. H

    Amazing 12yo classical guitarist

    Imagine what she will sound like when she is 21. Click Me
  4. H

    Lookup Tables

    Hey all I have always in the past created separate lookup tables but i am considering using one big lookup table for all lookups. For example having the states, cities, departments etc all in one table. Can anyone give me the good and bad of doing it this way. Thanks Hooks
  5. H

    MSSQL database size

    How big of a database can 1 MSSQL database on one server handle. Is there a limit??? What is the largest MSSQL database that you have seen. just curious. Thanks
  6. H

    Department / supervisor

    Im having trouble determining where the supervisorID should go. Part of me thinks that it should go in the JobCodeMaster Table the other part of me thinks it should go in the DepartmentMaster Table. Any suggestions? One other thing. Should i have a separate Supervisor table. Again im stuck...
  7. H

    ASP Request.QueryString

    Hey all. Once again I am in a pickle. I have 2 asp pages and 1 html page. The pages are Page1.asp, Page2.asp, Page3.htm Here is what im doing. Page1.asp is passing a variable to page2.asp. On page2.asp the user enters in some data and resubmits the page to itself. After the page has...
  8. H

    Inner join on 2 different Databases

    Does anyone know how to do a join on 2 mssql tables that are in 2 different mssql databases???? SELECT Table1.ID, Table1.PrjID, Table1.Description, Table1.Order, Table1.Csr_ID, Table1.Resource, Table1.SDate, Table1.CreateDate, Table1.PromisedDate, Table1.Hours, Table2.creation_date FROM Table1...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. H

    SQL sum statement help

    I am wanting to sum up all deposits and all withdraws and get a balance. I have been unable to figure this out. Here is my sql statement sql = "SELECT Sum([DepositAmount])-Sum([PaymentAmount]) AS Balance " & _ "FROM(tCTransactions)" & _ "GROUP BY...
  14. H

    SQL statement

    I moved this to the sql area. Sorry.
  15. H

    3 tier class design help

    Hey all, I have played around with a 3-tier design for about 1 year and am able to make your basic applications using them. My problem is this. Say that you have a Customer class. I would populate a list box on a form with the customer object and when a user selects a customer all the other...
  16. H

    Database analysis

    Does anyone have and good docuements to pass out to people who want you to design a database for them. Like what are the requirements etc???
  17. H

    Credit Card Processing

    Can anyone recommed good credit card processing software. My requirements: Have the person buying product stay on my site. I am not hosting my own server so i need something that web hosts will not have to load anything in the environment variables I have looked at paypal and i read some...
  18. H

    vb.net question

    I have a general .net question. Is it better to use bound forms or should you use a 3 tier style???? I have always used a 3 tier style but have recently discovered how easy it is to use bound data in .net 2005. I would like to know the benifits of each in detail. I would imagine using bound...
  19. H

    vb.net question

    I know that this is the asp.net section but i was unable to find the vb.net section so i will post this here. Does anyone know the vb.net equivilant to the access allowedits = false. Im using bound forms in vb.net and would like to basically lock the dataset until a button is pushed to allow...
  20. H

    Zip Code / Time Zone database

    Does anyone have a US zip code - time zone table or tables? I have been unable to find this data online without paying 150.00. I need this for a web application that i am doing. As always thanks a bunch
Top Bottom