473,698 Members | 2,196 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Simple animation and stuff...

Can someone point me to some good info on how to do somoe simple animation on a form.

Specifically, I want to have some tiles that when they are clicked, they flip over in place and reveal a number. Obviously the flipping part should be animated and the user interface should not have to wait for the tile animation to complete before another tile can be selected.

Thanks.

J
Apr 13 '07 #1
3 2674
Hi,

Animation is made by looping through a sequent of static pictures. If you'd
like animation in your WinForms application, you could either use an
animated GIF directly or draw a sequent of static pictures,e.g on a
PictureBox, by yourself.

I found a sample of drawing a sequent fo static picutures to make
animation. You may visit the following link to get more information:

'An Animation Component using C#'
http://www.c-sharpcorner.com/UploadF...nt091420050623
32AM/AnimationCompon ent.aspx

Hope this helps.
If you have any question, please feel free to let me know.
Sincerely,
Linda Liu
Microsoft Online Community Support

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 13 '07 #2
A MUCH easier solution here would be to use WPF to create the 3D model,
and then animate the model on a timeline when the animation is clicked.
This could be hosted in a Windows Forms app easily as well.

It's much easer to just create the model and animate it as opposed to
creating the model and writing the engine that has to animate it.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Linda Liu [MSFT]" <v-****@online.mic rosoft.comwrote in message
news:Pj******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi,

Animation is made by looping through a sequent of static pictures. If
you'd
like animation in your WinForms application, you could either use an
animated GIF directly or draw a sequent of static pictures,e.g on a
PictureBox, by yourself.

I found a sample of drawing a sequent fo static picutures to make
animation. You may visit the following link to get more information:

'An Animation Component using C#'
http://www.c-sharpcorner.com/UploadF...nt091420050623
32AM/AnimationCompon ent.aspx

Hope this helps.
If you have any question, please feel free to let me know.
Sincerely,
Linda Liu
Microsoft Online Community Support

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no
rights.

Apr 13 '07 #3
The main issue with this is that the end user has to have the 3.0 Framework,
correct? I'm already worried that not enough people will have the 2.0
Framework.

J
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
A MUCH easier solution here would be to use WPF to create the 3D model,
and then animate the model on a timeline when the animation is clicked.
This could be hosted in a Windows Forms app easily as well.

It's much easer to just create the model and animate it as opposed to
creating the model and writing the engine that has to animate it.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Linda Liu [MSFT]" <v-****@online.mic rosoft.comwrote in message
news:Pj******** ******@TK2MSFTN GHUB02.phx.gbl. ..
>Hi,

Animation is made by looping through a sequent of static pictures. If
you'd
like animation in your WinForms application, you could either use an
animated GIF directly or draw a sequent of static pictures,e.g on a
PictureBox, by yourself.

I found a sample of drawing a sequent fo static picutures to make
animation. You may visit the following link to get more information:

'An Animation Component using C#'
http://www.c-sharpcorner.com/UploadF...nt091420050623
32AM/AnimationCompon ent.aspx

Hope this helps.
If you have any question, please feel free to let me know.
Sincerely,
Linda Liu
Microsoft Online Community Support

============== =============== =============== ======
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
============== =============== =============== ======

This posting is provided "AS IS" with no warranties, and confers no
rights.


Apr 13 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2102
by: wmschneider | last post by:
I am trying to make a progress animation so that the user knows that there files are correctly being checked in. Trying to animate papers moving from the computer to the server pics. I'm brand new at this language, however, I've been programming in C++ for awhile. This is my code for that part of it. And I call the startAnimation() function when the button finish is clicked on. Represented like: <INPUT TYPE="SUBMIT" NAME="SUBMIT"...
8
3688
by: Beam_Us_Up_Scotty | last post by:
Hello all, I am trying to write a "simple" animation using C#, and I've tried many things but nothing seems to work for me without leaking memory. Here's a very simple piece of code that uses a timer to set the image of a label from an ImageList every 100ms or so. This is what was being used when I inherited this piece of code, and I thought it was OK, until I changed the size of the label to do animation on a larger piece of screen...
7
5070
by: bfowlkes | last post by:
Hi, I am new to the C programming language and programming in general. I am writing a simple roulette program. I have everything working so far but it seems a little plain. What I would like to do, but I have no idea how to do, would be to create a simple animation each time the roulette wheel is spun. Something like this. 1 2 3 4 5 6 7 8 9 10 11
4
2789
by: petermichaux | last post by:
Hi, Is there any way to make DOM scripted animation smoother? Flash is far superior in this area. Any one here know what makes Flash so smooth by comparison? I don't like the fact that the standards based world is so far behind the Flash based stuff in some areas (animation and server push in particular)
2
5771
by: rdemyan via AccessMonster.com | last post by:
My application has a lot of complicated SQL statements, calculations, processing that takes time. I've created a custom form to act like a messagebox. It has 10 small rectangles on it that change color sequentially to let the user know that processing is occurring. This 'animation' occurs via the form timer event. However, I'm having trouble getting the animation to occur for all types of processing events. It appears that I have to...
1
7767
by: Rod Johnson | last post by:
I have an AVI which was created from a WMV File using Blaze Media Pro. I am running it in a VB6 Animation Control. I can manually Open, Run, Stop, Close OK. What I now need to know is how to determine when the AVI has finished so I can write Code to then automatically Stop the AVI and Close the Animation Control. Can anyone help? Thanks...
1
1779
by: softwaredeveloper | last post by:
Hi friends, I am very new here, could you please give me some suggestions? Is FLASH the right technology? Or if there is any better solution? Purpose - To generate multiple simple moving objects like a box on my website that can move from left to right and up/down. The moving objects have to be dynamically generated according to different products and the sharps are a little bit different.
2
1856
by: stuartheenan | last post by:
Help, I'm trying to create a flash file that only starts when you click on the animation. I have created the stop(); script on frame 1 but everytime I create a button the original animation moves....any ideas gratefully recieved.
4
13913
by: Sin Jeong-hun | last post by:
Most applications, including Windows Explorer, show some sort of 'wait' dialog with animation when a lengthy operation is going on. For example, When the Windows Explorer is searching for something, it shows a small dialog with a moving flashlight. I examined the explorer.exe and found that that was an avi file. Now that, I would like to do similar thing in my C# application. But what is the most efficient way to do so? 1)Manually...
0
8609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9170
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8871
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7739
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6528
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4371
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2336
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.