How to load an image on any control using win32 C++
-
Hi to all I want to load multiple images at particular locations on a control using win 32 C++ and move that images without redraw the control or image. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
-
Hi to all I want to load multiple images at particular locations on a control using win 32 C++ and move that images without redraw the control or image. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
What control? your question is general not specific buttons? static control? you need to tree control listview listbox?
-
What control? your question is general not specific buttons? static control? you need to tree control listview listbox?
-
What control? your question is general not specific buttons? static control? you need to tree control listview listbox?
Hi In any control (Like Picture box control) i want to load the multiple images. and move the images. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
-
Hi In any control (Like Picture box control) i want to load the multiple images. and move the images. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
Each control has a method, for example buttons: you can use of SetBitmap but if you want to use of different states for a button up/down/foucs,.. you can use of CBitmapButton(however you can use of an image list for it) but generaly you can make a image list and then use of it for Comboboxs/buttons/treectrls/catctrls/ctoolbars,... you can make a CImageList and then use of Add for insert image or images to list and then use of them.
-
Hi to all I want to load multiple images at particular locations on a control using win 32 C++ and move that images without redraw the control or image. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
Your question does not make much sense to me. "I want to move an image, which means drawing it in a different place, without redrawing". Are these controls under your own, erm, control? If this is things on other people's software, than maybe you want your own non-rectangular window? Not easy, but far from impossible. What is the end result of what you are trying to do? Iain.
-
Your question does not make much sense to me. "I want to move an image, which means drawing it in a different place, without redrawing". Are these controls under your own, erm, control? If this is things on other people's software, than maybe you want your own non-rectangular window? Not easy, but far from impossible. What is the end result of what you are trying to do? Iain.
Hi I want to load multiple images on any control and move images according to mouse movement. actually i want to create a application like Google map. so load images and move according to mouse. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
-
Hi I want to load multiple images on any control and move images according to mouse movement. actually i want to create a application like Google map. so load images and move according to mouse. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA
On any control? Tough. On a control, you write? Sortof easy. Just have to write a control that displays a background, with extra images on top. Then handle mouse messages, and move the extra images about. None of that is high tech programming, just book-keeping and tedious -not-doing-something-dumb. Iain.