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

  1. Akumadevil

    Document Setup: Padding after the book is done?

    Hi, I have a 250 page document that is perfectly laid out -- but it turns out the designer got the dimensions wrong when setting it up. The document page size width need to be increased 0.25 inches and the height 0.125 inches. If I simply go ahead and do this my layout gets messed up! So...
  2. Akumadevil

    PNG appearing with light blue background...?

    Thanks. Converting to transparent does solve the problem. Also, amazing spot on the colors! The background is 252/252/252 not 255. To be honest I cannot see the difference! I do have a matte screen though, which makes all whites look "dirty". Cheers.
  3. Akumadevil

    PNG appearing with light blue background...?

    Thanks for the response. I've uploaded one of the PNG files: http://dl.dropbox.com/u/27314354/dodge.png From what I can tell they are PNG8 (screenshot from 8-bit emulator). I changed a few things (including transparency to RGB), but nothing fixed it. Any other suggestions welcome.
  4. Akumadevil

    PNG appearing with light blue background...?

    Hi, When using PNG images with a pure white background they are appearing with a light blue background, which looks crap. You can see this on http://dl.dropbox.com/u/27314354/mtpo-chapter-1.pdf (10Mb) under the title "Introduction // Basics". I was playing around with the graphic image color...
  5. Akumadevil

    Group rows 1-50, 51-75, 76-100

    Hi, I have a query that returns 100 rows. Each row has an amount and a name. What I would like to do is group the 100 rows as follows: rows 1-50 - sum(amount) rows 51-75 - sum(amount) rows 76-100 - sum(amount) so the end output might be: SUM(AMOUNT) 10000 5000 5000 Any help would be...
  6. Akumadevil

    Submit form inputs ONLY if they containing text

    Hi, I have a very large form with about 1000 input fields, most of which stay empty. On submit it transfers around 150kB (about 20kB is actually user input). Is there a way to only submit the form elements that are not empty? Cheers.
  7. Akumadevil

    MySQL "Top N Percent" Equivelant

    Hi, I realise MySQL doesn't have a SELECT TOP 10 PERCENT ... function, but was wondering is there another way to do this? A generic query like below will return the 5 tallest people. But what about the top 10% of tallest people? SELECT name, height FROM people ORDER BY height DESC LIMIT 5...
  8. Akumadevil

    Using Count and Group Problem...

    Thanks PHV, problem solved.
  9. Akumadevil

    Using Count and Group Problem...

    Hi, I have the following 2 tables: ------------------------------- users (user_id, name) sessions (user_id, paid_date) ------------------------------- I want a query to show all users names who have more than 5 (paid_date != null) So far I can group the sessions where paid_date != null...

Part and Inventory Search

Back
Top