"Adding Gif files "
-
Hi, Any information on adding .GIF files to the dialog .. please let me know..
Harsha
-
Hi, Any information on adding .GIF files to the dialog .. please let me know..
Harsha
-
Hi Harsh ! I've developed a class to render any gif file to any control. Controls can be dialogs, buttons, listboxes, list controls etc. Any control means Any Controls. If u want that class, come online at:- jubinc@skype
Come online at:- jubinc@skype
I wish i can come online.. but right now i am in office and i cannot use any applications like skype and messengers.. can you please send the class to my mail .. mail id harsh_2961@yahoo.co.in
Harsha
-
I wish i can come online.. but right now i am in office and i cannot use any applications like skype and messengers.. can you please send the class to my mail .. mail id harsh_2961@yahoo.co.in
Harsha
-
Local E-mail system has not been working since past 4-5 days and won't work till next week. And mail sites are restricted here. Only skype is allowed. If u could come at Skype, then u can have it.
Come online at:- jubinc@skype
ok.. i will let you know when i come online... thanks a lot...
Harsha
-
Hi, Any information on adding .GIF files to the dialog .. please let me know..
Harsha
A simple alternative is using GDI+... To load and draw a gif takes 3 lines of code (not including GDI+ initialization at the app level) Gdiplus::Bitmap SrcBitmap(L"C:\\test.gif", FALSE); Gdiplus::Graphics DstGraphics(hwndDialog); DstGraphics.DrawImage(&SrcBitmap, 50, 50, SrcBitmap.GetWidth(), SrcBitmap.GetHeight()); Mark
"If you can dodge a wrench, you can dodge a ball."