Click here to Skip to main content
15,887,267 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to enable auto scroll in a listbox? Pin
Luis Alonso Ramos22-Feb-09 9:34
Luis Alonso Ramos22-Feb-09 9:34 
GeneralRe: How to enable auto scroll in a listbox? Pin
bar300022-Feb-09 9:48
bar300022-Feb-09 9:48 
GeneralRe: How to enable auto scroll in a listbox? Pin
Luis Alonso Ramos22-Feb-09 10:11
Luis Alonso Ramos22-Feb-09 10:11 
GeneralRe: How to enable auto scroll in a listbox? Pin
Luis Alonso Ramos22-Feb-09 10:30
Luis Alonso Ramos22-Feb-09 10:30 
AnswerRe: How to enable auto scroll in a listbox? Pin
Luc Pattyn22-Feb-09 10:11
sitebuilderLuc Pattyn22-Feb-09 10:11 
GeneralRe: How to enable auto scroll in a listbox? Pin
bar300023-Feb-09 7:08
bar300023-Feb-09 7:08 
GeneralRe: How to enable auto scroll in a listbox? Pin
Luc Pattyn23-Feb-09 7:27
sitebuilderLuc Pattyn23-Feb-09 7:27 
QuestionIHTMLElement to Bitmap Pin
Sunset Towers22-Feb-09 9:14
Sunset Towers22-Feb-09 9:14 
After hours of searching I finally got this far and I'm not getting any errors
from this code. However I'm getting a black image. Is there something amiss here. I need to get access to this image regardless of wether it's visible on the physical montior or not and I'm assuming this may be the best way.


IHTMLElement test = (IHTMLElement)webBrowser1.Document.Images[i].DomElement;
IHTMLElementRender testRender = (IHTMLElementRender)test;

//  access desktop DC

int hScreen = GDI.CreateCompatibleDC(this.CreateGraphics().GetHdc());
testRender.DrawToDC((IntPtr)hScreen);

//  get width and height of desktop
int hCompDC = GDI.CreateCompatibleDC((IntPtr)hScreen);

int nWidth = webBrowser1.Document.Images[i].ClientRectangle.Width;
int nHeight = webBrowser1.Document.Images[i].ClientRectangle.Height;

//  create bitmap to receive the screenshot

int hBmp = GDI.CreateCompatibleBitmap((IntPtr)hScreen, nWidth, nHeight);

//  select bitmap into target DC

int hOld = GDI.SelectObject((IntPtr)hCompDC, (IntPtr)hBmp);

//  blit bits from screen to target buffer

GDI.BitBlt((IntPtr)hCompDC, 0, 0, nWidth, nHeight, (IntPtr)hScreen, 0, 0, GDI.SRCCOPY);

//  de-select bitmap

GDI.SelectObject((IntPtr)hCompDC, (IntPtr)hOld);

//  free DCs

GDI.DeleteDC((IntPtr)hScreen);
GDI.DeleteDC((IntPtr)hCompDC);

//  save image or whatever

Image img;
pictureBox2.Image = Bitmap.FromHbitmap((IntPtr)hBmp);

QuestionHow to query and execute code according to result.. Pin
High0ctane22-Feb-09 8:59
High0ctane22-Feb-09 8:59 
AnswerRe: How to query and execute code according to result.. Pin
Luis Alonso Ramos22-Feb-09 9:12
Luis Alonso Ramos22-Feb-09 9:12 
GeneralRe: How to query and execute code according to result.. Pin
High0ctane22-Feb-09 12:17
High0ctane22-Feb-09 12:17 
QuestionHow to make pdf file ? Pin
E_Gold22-Feb-09 8:42
E_Gold22-Feb-09 8:42 
AnswerRe: How to make pdf file ? Pin
Luis Alonso Ramos22-Feb-09 9:16
Luis Alonso Ramos22-Feb-09 9:16 
QuestionHow to define pointer to office in c# to control excel document ? Pin
Yanshof22-Feb-09 8:35
Yanshof22-Feb-09 8:35 
QuestionDose Any one Have any Idea about protect from refelector Pin
Fatehy22-Feb-09 8:18
Fatehy22-Feb-09 8:18 
AnswerRe: Dose Any one Have any Idea about protect from refelector Pin
Luis Alonso Ramos22-Feb-09 9:32
Luis Alonso Ramos22-Feb-09 9:32 
AnswerRe: Dose Any one Have any Idea about protect from refelector Pin
CPallini22-Feb-09 9:32
mveCPallini22-Feb-09 9:32 
AnswerRe: Dose Any one Have any Idea about protect from refelector Pin
harold aptroot22-Feb-09 9:41
harold aptroot22-Feb-09 9:41 
AnswerRe: Dose Any one Have any Idea about protect from refelector Pin
Christian Graus22-Feb-09 11:26
protectorChristian Graus22-Feb-09 11:26 
AnswerRe: Dose Any one Have any Idea about protect from refelector Pin
Xmen Real 22-Feb-09 15:07
professional Xmen Real 22-Feb-09 15:07 
Questionneed help on Virtual stock market using C#.net Pin
nikhilbhatia722-Feb-09 8:07
nikhilbhatia722-Feb-09 8:07 
AnswerRe: need help on Virtual stock market using C#.net Pin
0x3c022-Feb-09 9:12
0x3c022-Feb-09 9:12 
AnswerRe: need help on Virtual stock market using C#.net Pin
Christian Graus22-Feb-09 11:27
protectorChristian Graus22-Feb-09 11:27 
QuestionHow to simulate clicking "Enter" in game's window? [modified] Pin
aleXXXka22-Feb-09 7:34
aleXXXka22-Feb-09 7:34 
Questionsyncronization application Pin
Jassim Rahma22-Feb-09 6:22
Jassim Rahma22-Feb-09 6:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.