Page 4 of 8

Re: Your application contest!

Posted: Sun Jan 16, 2011 5:34 pm
by CleverBoy
WorkPad ( OLD VERSION ) - viewtopic.php?f=70&t=4054

Hope you like it hehaho;

Re: Your application contest!

Posted: Sun Jan 16, 2011 6:26 pm
by M1z23R
This is my Chat app i am working on :) It is finished but i am implementing more features ;)

Re: Your application contest!

Posted: Sun Jan 16, 2011 6:33 pm
by M1z23R
Please rate and comment my app ;)

Re: Your application contest!

Posted: Mon Jan 17, 2011 8:38 am
by volttide
If the application is Visual basic.Net I'll be join in cooll;

Re: Your application contest!

Posted: Mon Jan 17, 2011 8:40 am
by volttide
I'am Volttide, join cooll;

Re: Your application contest!

Posted: Mon Jan 17, 2011 9:32 am
by volttide
my project is screen capture
form 1 need:
one button, text = capture
Form 2 need:
one picture box
and two button
button 1, text = save
button 2, text = new
Form1:
screencapture.jpg
Form2:
screencapture2.jpg
Code form 1:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Opacity = 0%
Dim bounds As Rectangle
Dim screenshot As System.Drawing.Bitmap
Dim graph As Graphics
bounds = Screen.PrimaryScreen.Bounds
screenshot = New System.Drawing.Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
graph = Graphics.FromImage(screenshot)
graph.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
Form2.PictureBox1.Image = screenshot
Form2.Show()
Opacity = 100%
End Sub
End Class
Code form 2:
Public Class Form2

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim savefiledialog1 As New SaveFileDialog
Try
savefiledialog1.Title = "Save File"
savefiledialog1.FileName = "*.jpg"
savefiledialog1.Filter = "Bitmap |*.bmp"
If savefiledialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
End If
Catch ex As Exception
'Do Nothing End Try
End Try
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
PictureBox1 = Nothing
Me.Hide()
Form1.Show()
End Sub

Re: Your application contest!

Posted: Mon Jan 17, 2011 7:42 pm
by mandai
M1z23R wrote:
This is my Chat app i am working on :) It is finished but i am implementing more features ;)
When I try creating an account it says failure sending mail. It is also quite unsecure the way anyone can edit the files on that FTP server.

Re: Your application contest!

Posted: Mon Jan 17, 2011 7:50 pm
by M1z23R
I know it is not secure, but not in the way you said, it is insecure because anyone can see the "accounts" file on the internet if they only have the code :/ And about "Sending mail failed" i don't know what happened :/
I'll send you serial key on pm :)
And i'll also try to fix that :) And coderboy, please comment i see you registered !

Re: Your application contest!

Posted: Mon Jan 17, 2011 8:24 pm
by mandai
I didn't need the code to figure out the account password (begins with 7DU9...).

Re: Your application contest!

Posted: Tue Jan 18, 2011 11:30 am
by Usman55
People, please vote in my section so I can decide which application to put in this awesome contest.