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

  • Users: bam720
  • Content: Threads
  • Order by date
  1. bam720

    Open New window with specified contents

    I am on a page where I have some nifty graphs (made in css/html). I'd like to pass the contents of these graphs to another pop up page in case the user would like to print. I've grabbed the entire containing div element on my page and want to pass it the page below. The content is being passed...
  2. bam720

    Instantiate Class DB Connection

    I am having some trouble controlling my database connection. I have one module DbConnection.py that handles connecting to the database. I call it and get returned the database handle object just fine. as such dbh = DbConnection.new() I have another module to handle certain queries (this is...
  3. bam720

    IE7 weird overlay issue

    http://www.stoneclinic.com/athlete I'm seeing a weird overlay over the side nav and part of the image. The page validates as strict. It looks fine in every other browser I've tested (FF 2/3, Safari, IS 6/8) the only time I see it is in IE 7. Does anyone know what is going on? Screenshots...
  4. bam720

    100% height columns

    http://www.amipaperless.com/test2/privacy.php I am trying to get my left hand column to extend all the way to the bottom. General layout of page is: header (multi divs) content left (100%) mid (100%) footer I tried adding 100% to the body tag but no luck. Any other ideas? Thanks.
  5. bam720

    Full Width Menu

    I am trying to use the sonofsuckerfish drop down menu. Its working fine in IE and FF, but in IE it's not taking up 100% width on the page. My FF is using a Serif by default to render fonts (which takes up the 100% using the auto width), whereas IE is something else. If I force the serif it...
  6. bam720

    Border Help

    I am creating a page that I want to have a border around the entire contents. +--------------------------+ | ************* | | +--+ +----------------+ | | | | | | | | | | | | | | | | | | | | | | | | | | | | |...
  7. bam720

    Race Condition

    So here's my trouble. I am trying to position some scroll bars on my page. These scrollbar positions are being persisted by Cookies. When the page loads I am not always able to read the cookies in time before firing my Position Scroll Bars Code. function CreateCookie(name,value) {...
  8. bam720

    Cookie Splitter

    Everything I have read has advised using ';' as a delimiter in javascript cookies (between name/value, expiry, and path). Is this a must have for the cookie to actually be set? The reason I ask is we are using ISA which parses all ',' and ';' from a cookie, then tries to rebuild it. This...
  9. bam720

    Persistent Javascript Cookies

    I am currently on a project where we decided to use Cookies between post backs (scroll bar positions, list of expanded items). This works great if you hit the site internally, however we have a need to use ISA for remote access. When we get to the remote station we are finding that these...
  10. bam720

    CSS UL/LI DropDown

    I thought it was possible to create a "menu" that dropped down using strictly CSS. AS in I have a Top Node that is always visible and then on rollover/hover the rest of the LI's show. Am I crazy or is this possible? The only solutions I've found so far are all javascript based. Thanks in...
  11. bam720

    Button Stopwatch

    I'm still very new to asp. I'm trying to create a page that has a few buttons on it. The first is a start/stop button. When you click it it starts a stopwatch timer. When you click it again, the timer is stopped. Ideally a label displays the clock while it is running. I'm coming from a CS...
  12. bam720

    Type Conversion Error

    When I try to run my code I get this compilation error: Compiler Error Message: CS0029: Cannot implicitly convert type 'Roper [c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\ui\082a5137\5a254d4b\App_Code.w0dzlu_c.dll]' to 'Roper...
  13. bam720

    CSS Rounded Corners: 1 image

    I found an interesting article on digg about using rollovers in CSS w/o javascript. (http://www.creativepro.com/story/howto/25816.html) I've been thinking about Rounded corners using only 1 image for a while now. Here's my solution: CSS .box_text{text-align:center; width:200px; height:150px...
  14. bam720

    Cutting A Gold Bar

    If I have 1 gold bar, equally divided into 7 pieces as such: |=|=|=|=|=|=|=| I need to pay an employee each day for one week. His wages are 1 piece of the gold bar per day. How can I cut the bar to allow for fair payment using only 2 cuts. You can not fold the bar because it is gold.
  15. bam720

    The Odd Pill

    An interesting question brought to my attention last night. Its supposedly a MS interview question. Some people get it right away. You have 5 bottles of pills. Each bottle contains 100 pills. In 4 bottles the pills weigh 10g each. In 1 bottle the pills weigh 9g each. All pills look...
  16. bam720

    Container not expanding

    http://www.brombomb.com It looks close right in IE 7 where the two black boxes are contained within the gray box. (the spacing is below where it should be). In FF the spacing is correct but the gray box isn't expanding to contain the black boxes. Does anyone have any tips. Thanks.
  17. bam720

    Multiple Style Sheets

    I know I can use multiple style sheets per page, but am having trouble understand how. I link both sheets before the head tag. I have one sheet I want for my header, and one sheet to apply to my content. If you can give any tips that'd be great. Thanks...
  18. bam720

    New Live Site

    Just took our companies website live: http://www.aspexpos.com Please leave any comments/feedback/criticisms here. Also Since we moved away from a completely flash based site (with no keywords) our search engine rankings are terrible. Is there anything I can do to help boost this ranking...
  19. bam720

    Dropdown Div Content

    I tried a quick search and didn't find anything. I'm also new to javascripting (more of an html/css guy). I have a drop down list of about 10 cities. When a user selects a city I'd like for a div under this dropdown box to be populated with a different paragraph/phone number. The paragraph...
  20. bam720

    Merging Data

    I am trying to merge two tables I have. Im looking to do something like this, but am unsure how to do it. INSERT INTO Checks (ID, TermID) VALUES (SELECT DISTINCT ID FROM SALES; ,1) Will that work, or am I thinking about this wrong?

Part and Inventory Search

Back
Top