Is there any way of makng all the colors on the screen negat

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
Joakim Christiansen
Addict
Addict
Posts: 2452
Joined: Wed Dec 22, 2004 4:12 pm
Location: Norway
Contact:

Is there any way of makng all the colors on the screen negat

Post by Joakim Christiansen »

Is there any way of makng all the colors on the screen negative? (i'm not talking about pb code)
That would shure look special...! :D

I just had to wonder... :lol:
I like logic, hence I dislike humans but love computers.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

PB code:

Code: Select all

Rect.RECT
hDC = GetDC_(0)
  Rect\Right = 1024
  Rect\Bottom = 768
  InvertRect_(hDC, Rect)
ReleaseDC_(0, hDC)
josku_x
Addict
Addict
Posts: 997
Joined: Sat Sep 24, 2005 2:08 pm

Post by josku_x »

Trond wrote:PB code:

Code: Select all

Rect.RECT
hDC = GetDC_(0)
  Rect\Right = 1024
  Rect\Bottom = 768
  InvertRect_(hDC, Rect)
ReleaseDC_(0, hDC)
Nice code Trond. Guess what I'll send you through e-mail? :twisted:
Post Reply