IntegrityWebDev

IntegrityWebDev

Real Name: Chris Cummings

Cleveland, Tennessee (United States)
Web Developer

Latest Contributions

  • Need some (probably basic) Javascript help

    Javascript is definitely not my strong point! Hoping someone can help.

    Here's what I want to do...I want to have an intro paragraph of text with a SHOW MORE button or text link. When that is clicked is shows the rest of the text but SHOW button goes away and in its place is a COLLAPSE or SHOW LESS button or link.

    I have most of it working but not sure how to swap out the SHOW and HIDE links.

    Can someone help?

    Thanks!
    Chris

  • Font Use Tracking Software?

    I have about 40 billion fonts installed. :-) Not really but its enough that Photoshop and other programs can drag.

    Is there any program out there that will keep track of how often each font is used on your system over a period of time (PC/XP)?

    Let me know if you can think of anything.

    -Chris

  • SQL C# help needed

    Hello guys, I'm hoping someone can help me. I've been on this for a couple of hours now and cant figure it out. I'm still somewhat of an C#/MS SQL newbie who mostly works with PHP.

    I want to search a DB for this:
    SELECT COUNT(*) From table WHERE CustId = "12345"
    where this should return either a number of rows or NULL if nothing is found (i'm assumming this returns Null instead of zero)

    if it returns null or zero do this
    if it returns an number greater than zero do this

    Can anyone help me out or point me to a good tutorial for this?

    -Chris

  • CSS font alignment question?

    I want to make a single horizontal row of menu items with the first letter of each larger than the rest.

    However I would like to vertically center the text. Doing this the first letter would go above AND below the following letters as if the letters were centering on a line running across the screen.

    Hope this makes sense? Is this possible?

    Thanks!
    Chris

  • SQL Logic Help

    Hello all. I'm working on a project and I dont have enough ASP.NET/MS SQL experience to figure this one out.

    I have 2 tables in an existing database, both with one column that contains an int value (lowest value of all tables is 11111):

    TABLE A
    11111
    11114
    11116

    TABLE B
    11112
    11113
    11117

    I need to get the next available number between the two tables (the first number that is higher than 11111 and not in either table). Based on this data it would be 11115.