In the summer in a pane backing bowels the cool sprite seems to be a wholesome preferred, but if the sprite "feet"? Will also supply you a set off, get a slaking nourishment! This summer, Nike and Sprite [url=http://northernroofing.co.uk/roofins.cfm]nike free run[/url] and his sneakers to a blend of enduring snow spread of green, drained and dejected color blueprint in the classic Nike Feeling Max 1 shoes reveal a refreshing cool scent.[url=http://markwarren.org.uk/goodbuy.cfm]nike free run uk[/url] Summer is the time to pick a moral shoe, shoes should be a acceptable choice. Qualifying series Nike Quality Max HomeTurf borough recently lastly comes up, this series in the masterpiece Air Max shoes to London, Paris and Milan the three paid tribute to the iconic megalopolis of Europe, combined with the characteristics of the three cities, Air Max 1 HYP,Air Max 90 HYP,Show Max 1 and shoes such as Make public Max 95, combined [url=http://markwarren.org.uk/goodbuy.cfm]nike free[/url] with the Hyperfuse, as marvellously as a variety of materials, such as suede, Whether you crave functional or retro-everything.
Replyyou realize scrolling picture,looks it is ok,but make things complex.the H scrollbar and V scrollbar are a part of the CWnd object.need not be recreated,only overide OnVScroll and OnHScroll can realize this feature.
Replythis article is very mych usefull and nice. thank you and expect similar articles.. thank youReply
How come when you check the visible property of the picture control the image doesnt show? is it possible to make the picture control visible at runtime?
ReplyWhen you minimize and maximize a window with several bitmaps only appear one of them (it seems no refresh correctly) How can i solve it? Thanks
ReplyOriginally posted by: yamen
this great but what if the file was in the clipboard and i want to use the LoadImage() to get it ino my application??
IDataObject* clipboardData=Clipboard::GetDataObject();
// testen ob Bitmap in Clipboard liegt
if (!clipboardData->GetDataPresent(S"Bitmap", true))
return;
Bitmap* clipboardBitmap = dynamic_cast
Originally posted by: trinh xuan tuan
I displayed BMP by C,but i failed.Please help me
Originally posted by: Thong
hie.. how about loading and displaying 2 Bitmap in the same time??
How and What should i Do??
thanks..
regards,
Thong
twh81@tm.net.my
Originally posted by: Dave Hall
2. Tell people to also add the member varis : m_pt and m_size.
3. Tell people that m_size is a SIZE structure.
4. In the OnPaint() routine for the first part of your article you must initialize two things :
sourcex = 0;
5. The scrolling should be written differently, for the vertical
switch (nSBCode)
m_vbar.SetScrollPos(sourcey);
6. And I don't know how you called up a WM_ERASEBKGROUND message.
7. And people might be curious why desired width and height must be set to 0 :
m_hBmpNew = (HBITMAP) LoadImage( AfxGetInstanceHandle(), "img\\abc.bmp",
1. I'd change that member vari from rectStaticClient to m_rectStaticClient.
sourcey = 0;
I have MAX_HEIGHT which is the maximum value of the top of the picure.
For a picture 900 pixels high, MAX_HEIGHT is 710.
{
case SB_LINEUP:
if ( sourcey > 0 )
sourcey -= 1;
else
sourcey = 0;
break;
case SB_LINEDOWN:
if ( sourcey < MAX_HEIGHT )
sourcey += 1;
else
sourcey = MAX_HEIGHT;
break;
case SB_TOP:
sourcey = 0;
break;
case SB_BOTTOM:
sourcey = MAX_HEIGHT;
break;
case SB_THUMBTRACK:
sourcey = nPos;
break;
case SB_PAGEDOWN:
if ( sourcey + 40 <= MAX_HEIGHT )
sourcey += 40;
else
sourcey = MAX_HEIGHT;
break;
case SB_PAGEUP:
if ( sourcey > 39 )
sourcey -= 40;
else
sourcey = 0;
break;
}
InvalidateRect(&m_rectStaticClient);
CDialog::OnVScroll(nSBCode, nPos, pScrollBar);
I don't have it on my Win2000 Visual C++ 6.0. The message doesn't exist.
IMAGE_BITMAP, // image types
0, // desired width
0, // desired height
LR_LOADFROMFILE);
Originally posted by: Russ
I am SO confused..... My child window has a Horizontal scroll bar but it doesn't work right.... If I scroll to the left the Window moves but the picture is blank. I am using ScrollWindow(-1,0,NULL,NULL); If I resize the window manually my bitmap image is displayed correctly..... HELP!
Reply