Now hide your personal files, i mean any files into a jpeg file.

Steps to Hide the Files : 

  1. Put all the file you wanted to hide in a Single Folder and add that folder into zip file.
  2. Now make a folder and place a jpeg file and the zip file you made now.
  3. Now go to Start > Run > type cmd and press enter, this will open a command prompt i.e. a black screen.
  4. Now i assume that the Folder you created is in D: Drive.
  5. In Command Prompt type Cd\ and Press Enter.
  6. Now type cd d: and press enter.
  7. The zip file Name i used here is NewFolder.zip
  8. Now cmd is in d:\> if you are right.
  9. Now type cd NewFolder and press enter.
  10. Now type the following command without Double codes "Copy /b Muthu.jpg + NewFolder.zip Muthu.jpg" and press Enter
  11. that's it.
Steps to get the Files Back : 
  1. One is you simply change the extension from .jpg to .zip.
  2. second right click the image and select open with and select winrar or winzip .
  3. that's it.
Conditions apply * This method wont work with AMD Processor

To Download the Source Code Click Here > Text to Voice.rar

 It is very easy to convert the text to voice in VB.Net.

  1. Open Visual Studio and Click on New Project Windows form Template.
  2. Place a Text box control from toolbox to Form and set its Multiline properties to "True".
  3. Place a Button Control from toolbox to Form and set its Text Properties to "Speak". 
  4. place a NumericUpDown Control from the toolbox to the form and set its Maximum Properties to "25" and Minimum Propertied to "-25".
  5. Right click on the Form and Click on View Code.
  6. And type the following code.

Public Class Form1

    Private Sub btnSpeak_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSpeak.Click

        Dim Speak As Object = CreateObject("SAPI.SPVOICE")
        'Pitch has a range of -25 to 25
        Speak.Speak(txtMessage.Text, 1)

    End Sub
End Class



Help From : http://www.visualbasicscript.com/m63061.aspx

To Download the Source Code Click Here >Text to Voice.rar

To Download Source Code Click Here > TextBox User Control

You can create your own Custom Text box and and Custom Properties and select the Custom Text box's properties as per your requirement.

Lets Start... 

  1. Open Visual Studio and open new Project under Visual basic, Windows form Template.
  2. Now right click in the solution explorer, click on add, click on User Control, which will give you a blank form without any boarder. 
  3. Now add a Text Box Control to that form, and re-size the form according to the size of the Text box Control.
4. Now right click on the Text box added and click on View Code and type the following code.

Public Class MyTextbox 

     Enum txt
          Numeric
          Alphabet
          AlphaNumeric
     End Enum 

     Dim txtbx As txt = txt.Alphabet 

     Property txtStyle() As txt
          Get
               Return txtbx
          End Get
          Set(ByVal Value As txt)
               txtbx = Value
          End Set
     End Property

     Private Sub TextBox1_KeyPress(ByVal Sender As Object, ByVal e As System.Windows.Forms.keyPressEventArgs) Handles TextBox1.KeyPress

          Select Case txtbx

               Case txt.Numeric

                    Textbox1.MaxLength = 11

                    If Char.IsDigit(e.KeyChar) Or Asc(e.KeyChar) = 8 Or TextBox1.MaxLength > 11 Then  
                    Else
                         e.Handled = True   
                    End If

               Case txt.Alphabet

                    Textbox1.MaxLength = 11
 
                    If Char.IsAlphabet(e.KeyChar) Or Char.IsWhiteSpase(e.KeyChar) Or Asc(e.KeyChar) = 8 Or TextBox1.MaxLength > 20 Then  
                    Else
                         e.Handled = True   
                    End If

               Case txt.AlphaNumeric

                    Textbox1.MaxLength = 11

                    If Char.IsAlphaNumeric(e.KeyChar) Or Char.IsWhiteSpase(e.KeyChar) Or Asc(e.KeyChar) = 8 Or TextBox1.MaxLength > 50 Then  
                    Else
                         e.Handled = True   
                    End If
          
          End Select

     End Sub

End Class      
               

5. Go to Build Menu and Click on Build "Your Project Name"
6. Go to Solution Explorer right Click on Form1 and Click on View Designer.
7. Place three Labels and Set its Text Properties to Name, Address, Mobile Accordingly.
8. Now go to Tool Box you will find a new Control added to Your tool Box at the top, ad three of that new tool to your form and set its property as per your need.
9. Now press F5 key from the keyboard and try entering the values to the text box.

Thats all...

Help From : http://www.codeproject.com/KB/vb/customTextBox.aspx.aspx

To Download Source Code Click Here > TextBox User Control       

To download Source Code Click here > Convert To PDF.rar 

This article will explain on how to create a pdf document using VB.Net 2005.
I used the itextSharp.dll to achieve this task.
iText# or iTextSharp is a port of the iText open Source Java Library for PDF Generation written entirely in C# for the .Net Platform.

  1. Download iTextSharp.dll. To download click here > Download iTextSharp.dll
  2. Create New Windows Form Project in VB.Net.
  3. Go to Solution Explorer Right Click on the Project and click on Add Reference.
  4. Browse to iTestSharp.dll and click Ok.










  1. Add TextBox to the Form and Set its MultiLine Properties to True.
  2. Add a Button to the Form and Set its Text Properties to "Save to PDF".
  3. Add a SaveFileDialog to the Form.
  4. Now Right Click the Form and Click On View Code.
  5. Now Import the Following References 
Imports System.IO
Imports System.Linq
Imports System.Text
Imports System.Collections.Generic
Imports iTextSharp.text
Imports iTextSharp.text.pdf

      6.  Now Double Click on the Button and write the following code :

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If SaveFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
            'Create Docu ment class obejct and set its size to letter and give space left, right, Top, Bottom Margin
            Dim doc As New Document(iTextSharp.text.PageSize.LETTER, 10, 10, 42, 35)
            Try
                Dim wri As PdfWriter = PdfWriter.GetInstance(doc, New FileStream(SaveFileDialog1.FileName  & ".pdf", FileMode.Create))
                'Open Document to write
                doc.Open()
                'Write some content
                Dim paragraph As New Paragraph(TextBox1.Text)
                ' Now add the above created text using different class object to our pdf document
                doc.Add(paragraph)
            Catch dex As DocumentException
                'Handle document exception
            Catch ioex As IOException
                'Handle IO exception
            Catch ex As Exception
                'Handle Other Exception
            Finally
                'Close document
                doc.Close()
                MessageBox.Show("Pdf File Created Successfully", Me.Text, MessageBoxButtons.OK, MessageBoxIcon.Information)
            End Try
        End If
    End Sub

That's All  

To download Source Code Click here > Convert To PDF.rar  

Help From : http://www.dotnetspark.com/kb/654-simple-way-to-create-pdf-document-using.aspx 

The way to get the public key token using the .NET 2.0 provided utilities is to open a Visual Studio 2005 command prompt and typing: sn.exe -T [full path to strong named assembly]
However, there's an even easier way using the external tools dialog in Visual Studio 2005

  1. In Visual Studio 2005, click Tools -> External Tools...
  2. Click Add and enter the following into the different fields as displayed in the following screen shot:  
    •  Title: Get Public Key 
    • Command: C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\sn.exe  
    • Arguments: -Tp "$(TargetPath)" 
    • Uncheck all options, except Use Output window\
Now, you have a new entry listed in the Tools menu titled Get Public Key as shown in the following screenshot:




Assuming you have a project open that has been configured to be signed when built, and you've built it at least one time, selecting the new Get Public Key menu item from the Tools window to get the public key token and blob in the Output window, as shown here:





 Very slick! You can even take this one step further by adding a button to a toolbar by customizing your toolbar and adding a button from the Tools category. you should pick External Command # where # is the index of the external command from the External Tools window (in my screen shots above, this is External Command 3). Then you can change the name of the button to be Get Public Key as shown below:


Very cool!


Help From : http://www.andrewconnell.com/blog/archive/2006/09/15/4587.aspx