|
-
Feb 14th, 2007, 12:57 PM
#1
Thread Starter
Addicted Member
Rectangle animation
On older Mac OSes,when you double clicked a folder,program,file,a rectangle animation would come up and then show a window.
So in my program I want a rectangle animation to pop up from a button and show a form.I have a series of images ready so can you help me please?
-
Feb 15th, 2007, 03:45 AM
#2
Re: Rectangle animation
 Originally Posted by Louix
On older Mac OSes,when you double clicked a folder,program,file,a rectangle animation would come up and then show a window.
So in my program I want a rectangle animation to pop up from a button and show a form.I have a series of images ready so can you help me please? 
Hi,
Create a second form, for example Form2 and then use this code in form1
with a button1:
VB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Form2 As New Form2
Form2.Show()
End Sub
Wkr,
sparrow1
-
Feb 24th, 2007, 01:39 PM
#3
Thread Starter
Addicted Member
Re: Rectangle animation
I know this. what i want is the rectangle animation.
how do i do it?
-
Mar 1st, 2007, 01:48 PM
#4
Thread Starter
Addicted Member
-
Mar 1st, 2007, 02:20 PM
#5
Re: Rectangle animation
Are you going to draw this animation on an existing form?
-
Mar 1st, 2007, 02:25 PM
#6
Re: Rectangle animation
what you are talking about is a function of the MacOS.. much like the way vista has lots of built in "eye candy" with forms now.
You could write this code functionality, but you would have to test it under different operating systems, to see how it looked.
For example, if you implemented something like what you are talking about, how would it look on vista? would you get the custom programmed effect, plus the effects the vista OS already has? Would that look good or really crappy?
-
Mar 3rd, 2007, 12:48 PM
#7
Thread Starter
Addicted Member
Re: Rectangle animation
I only plan to run it under windows.
-
Mar 3rd, 2007, 02:08 PM
#8
-
Mar 3rd, 2007, 02:10 PM
#9
Thread Starter
Addicted Member
Re: Rectangle animation
ok i only plan to run it under xp
-
Mar 4th, 2007, 07:51 AM
#10
Re: Rectangle animation
Hi,
You could read this 'Animation Overview', here's the link;
http://msdn2.microsoft.com/en-us/library/bb188569.aspx
Hope it helps,
sparrow1
-
Mar 6th, 2007, 01:25 PM
#11
Thread Starter
Addicted Member
Re: Rectangle animation
That was in XAML not VB but thanks for looking
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|