Some GDI

This is a discussion on Some GDI within the C++ forums, part of the Application Development category; what is gdi? sometihng to do with drawing or painting in windows lol a good example #include <windows.h> //WINDOWS FTW ...


Go Back   Scriptasy > Application Development > C++
120 Online Register Projects Products Members List Calendar Today's Posts

Reply

 

LinkBack (6) Thread Tools Display Modes
  6 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 05-29-2007, 08:42 PM
Junior Member
 
Join Date: May 2007
Posts: 15
Some GDI

what is gdi?
sometihng to do with drawing or painting in windows lol

a good example

#include <windows.h> //WINDOWS FTW
#include <iostream.h> //cout,cin all that jazz
int main()
{
HWND window // window handle named window rofl
HDC devcon //deviceContext handlenamed devcon rofl again :)
window = FindWindow(NULL,"Window Title Here"); //finds a window with that title
devcon = GetDC(window); //tell devcon where the context is
SetTextColor(devcon,RGB(0,0,0)); //set our text color to black
TextOut(devcon,1,1, 'Yay im text on a Window W00t',30); //print thy text
UpdateWindow(window); //update the window
ReleaseDC(window,devcon); //ALWAYS RELAESE TO PREVENT MEMORY LEAKS
}

that should help some pplz

Last edited by m0u53; 05-29-2007 at 08:44 PM.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: http://scriptasy.com/c_39/some-gdi_41.html

Posted By For Type Date
Digg / Programming / Upcoming This thread Refback 06-01-2007 02:43 AM
Digg / Technology / Upcoming This thread Refback 05-31-2007 07:34 PM
Digg - Some GDI This thread Refback 05-31-2007 06:59 PM
Digg / News / Upcoming This thread Refback 05-31-2007 06:54 PM
Digg / News / Upcoming This thread Refback 05-31-2007 06:38 PM
Digg / Programming / Upcoming This thread Refback 05-31-2007 06:38 PM


All times are GMT -8. The time now is 01:07 AM.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
scriptasy girl by HitmanN

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
W33