Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached

4 Posted Topics

Member Avatar for emko

Or try this :) [CODE] Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click PictureBox1.ImageLocation = "C:\\image.jpg" ' Dim bm As Bitmap = New Bitmap(PictureBox1.ClientSize.Width, PictureBox1.ClientSize.Height) PictureBox1.DrawToBitmap(bm, PictureBox1.ClientRectangle) bm.Save("C:\test.ico", System.Drawing.Imaging.ImageFormat.Icon) PictureBox2.ImageLocation = "C:\\test.ico" End Sub End Class [/CODE] Software developer

Member Avatar for emko
0
4K
Member Avatar for R1Programmer

[CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click OvalShape1.BringToFront() Timer1.Enabled = True End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick OvalShape1.Anchor = AnchorStyles.None OvalShape1.Width = Val(OvalShape1.Width) - 1 'OK,Ovalshape decreases when timer enabled OvalShape1.Height = Val(OvalShape1.Height) - 1 'OK …

0
68
Member Avatar for Mr.Kazaam
Member Avatar for Alex Sterling

in html you can change the link colors this way:>> enter this code between <body here </body>, or copy this code to your html page <body style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);" alink="#ff0000" link="#0000fd" vlink="#6600cc"> // link colors <a href="http://home.html">Home</a><br> <a href="http://contact.html">Contact</a><br> <a href="http://facebook.com">facebook</a><br> <a href="http://somelink.html">somelink</a> </body> [B]alink …

Member Avatar for JRM
0
172

The End.