My Coding!

My Coding!- The place where you find the solution of every code....

This blog is developed to solve the comman problems of computer programming and to provides free codes for educational purpose.


Following are the some of the Advantages of this blog:-

  • Easy to Read and use. just copy and paste
  • Fully working codes.
  • Free Projects for educational purpose only.

Sunday 12 April 2015

// // 3 comments

How To Start Blogging You Should Never Make ?

How to start blogging

When we talk about blogging many question arise in our mind.


Why Blog


Why one should write a blog ?

I have lots answer for this question few are the following.
  • You can express yourself to the world without any cost.
  • If you have knowledge and want to share with many people you can share it.
  • Best part is you can earn some money using blog without much effort. and so many benefit 
If you think I am joking please Click Here once.

How to Start Blogging ?

When we decide to blogging we need resources like below..
  • Domain name
  • Web hosting
  • CMS (Content Management System)
Friends these are the very basic things need to start the blog
some other resources you also need  like below..
  • Professional theme 
  • Social Plugins 
Domain Name : Domain Name is the address of your blog like www.example.com. You can use free domain name like www.example.blogspot.com or you can buy your own domain from web hosting sites like Hostgator, Dreamhost, Blue Host, etc. I will advice you to buy your own domain name to get more traffic and earning.

The web hosting sites also provide hosting in cheaper rate. But for starting Blue host is good for start up. 

CMS (Content Management System)  : Content Management System User interface Application which allows you to manage your stuff like images, post, template designing etc. With the help of CMS you can easily manage your blog without much technical knowledge. Few examples are blogger, wordpress, blogpost etc.


Now its time to setup your own blog ...

Friends you can setup your own blog very easily using blogger.
It is very easy to use and free of cost if you don't know anything about blog then it is the best choice for blog. For blogger you need  gmail id only as it is the Google product and you know one Google account for everything Google so lets start. 

Step 1: Go to the blogger.com  
Step 2: Login to the blogger using your gmail id if you don't have it you can create here.
Step 3: Now Clock on New Blog button left side of screen 


New Blog

Step 4: Now Fill the details in the popup form like 
Title 
Address (Domain Name if you have own domain name otherwise blogger will give you sub domain as mention above) 
www.example.blogspot.com

Create Blog

Step 5: Choose your theme as per your need and click on Create Blog button

Step 6: Click on  Start Posting Orange Button in right side. 
New Post


Step 7: After clicking on Start Posting you will be able to post you want. Write title of the post and content and then click on publish button to publish it that's it.

Congrats you started the blogging  now enjoy.

Hope you liked this and enjoyed  and please don't forget to share this. If you want Updates in your inbox feel free to subscribe your email will be safe with us and inbox will not be spam. 

Thank You.
Shriram Bisen
Read More

Thursday 2 April 2015

// // 1 comment

How to earn Free Recharge or Free Mobile Recharge in 7 Steps?


Hello friend, are you talking on mobile and tired of paying much money so  uminto.com. is for you.

I know you think what is this? Wait here is an answer

free recharge

yes free Mobile Recharge.

Since I bought mobile, I was expense much money for talk time and data. But from last 3 month I am not expense any amount of money because I got free recharge from uminto  and here is a proof below.


Recharge Proof

Since last 3 month I got Rs. 300+.  So what are you waiting for here are the steps to get free recharge. 

1.  Become a member of the site (Click on below image)


Join Uminto

2. After that you can signup using facebook or by filling Sign up form.


3. Now verify the email id (Skip if you sign up using fb).
4. Now verify mobile no. 

5. Go to My Profile and complete your profile.



6. Now Click on Inbox, you can see the various offers complete them so that you can earn talktime.

7. Click on Proceed button and complete the offer once complete it you will get recharge and once you reach the minimum recharge amount Rs. 10 you can recharge.

You can also earn free recharge by sharing your referral link. Whenever someone will join via your referral link you will get 
Rs. 5. You cat see your referral list in Invited friend list tab in right side bar. 


Hey friends you can earn more points other than recharge which are use to convert into recharge amount by simply doing daily task like sending free SMS, yes you can also send free SMS to any mobile number(except DND activated no.), you can built address book, also post, review about movies so that you can earn more points and recharges. (Tip - write movie review and also vote so you can got 130 pt. ). One more thing don't forget to login daily as you got 20 pt. for login only. You can also play games and earn point.

Once you reach minimum points to redeem you can use them.
Don't forget you will got 9000 points as signup bonus. 

You can see your activity point, Instant recharge point also you can redeem instant recharge point from right sidebar.




Hope you will like this and enjoy free enjoy. Don't forget to share this post so that other people can also get benefit of this free site.

Thanks for reading this. 
Read More

Wednesday 1 April 2015

// // Leave a Comment

How to Perform String Operation in Windows Application?


Hi friends today we learn about the various string operations.


In many application we need to perform strings such as we need only upper case letters, but user enter lower case letters, in this case we have to convert them into upper case. Like this there are many string operations which we discuss here. 


1.    Making Upper case letter

Step 1: Take New Form. You can take new form by following steps.
    
 Click on “Project” Menu.
 Click on “Add Windows Form ”, you can see in below image




Step2 :  Take two “TextBox” , one for display unformatted text and another for formatted text.

Step3 : Take one “RadioButton”. You can take simple button also from Toolbox

Step4 : Double click on that RadioButton and write below code.

            TextBox2.Text = UCase(TextBox1.Text)

In TextBox2, the formatted text i.e. Upper Case Letters will be displayed and text will be input by user in TextBox1.    It will look like below picture.

Upper Case

Now similarly you can perform different operation using radio button. You have to take another RadioButtons and write below code. On each radio button by double click on it.

1.    Making Lower Case Letter

Source Code :  
TextBox2.Text = LCase(TextBox1.Text)
Lower Case


1.    Extract Character
     TextBox2.Text = Mid(TextBox1.Text, Val(TextBox5.Text), Val(TextBox6.Text))        If RadioButton3.Checked = False Then            TextBox5.Clear()            TextBox6.Clear()            RadioButton3.Enabled = False    End If

Explanation:

Mid(integer 1, integer 2) is a function used to extract the character from string. First argument defines the starting position of string, and second argument defines the number of characters.  
Clear() function is used to clear the textbox or any input done by user.
Checked is the property of radio button and CheckBox (we will discuss latter it). It is a    boolean property and either True or False.
 Enabled . It is a property which decide that  the tool will be work or not.

Extract Character


4.    Count Character without space
 Dim i As Integer        Dim c As Integer        For i = 1 To Len(TextBox1.Text)            If Mid(TextBox1.Text, i, 1) <> "" Then                c = c + 1            End If        Next        TextBox2.Text = c

Explanation :  i and c are the variables. In VB.Net <> means not equal to.

5.    Count word
 Dim s As String        Dim s1, s2 As String        s = TextBox1.Text        s1 = UCase(Mid(s, 1, 1))        s2 = ""        Dim i As Integer        For i = 2 To Len(s)
            s2 = s2 & LCase(Mid(s, i, 1))        Next        TextBox2.Text = s1 & s2




6.    Count capital Letters

Dim i, c As Integer        For i = 1 To Len(TextBox1.Text)
    If Asc(Mid(TextBox1.Text, i, 1)) >= 65 And Asc(Mid(TextBox1.Text, i, 1)) <= 90 Then                c = c + 1            End If        Next        TextBox2.Text = c

7.    Count Small Letters

 Dim i, c As Integer     For i = 1 To Len(TextBox1.Text)
     If Asc(Mid(TextBox1.Text, i, 1)) >= 97 And Asc(Mid(TextBox1.Text, i, 1)) <= 122 Then                c = c + 1            End If        Next        TextBox2.Text = c

Here is a complete design


 Here is a complete code .

    Public flag, z As Integer    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        RadioButton3.Enabled = False        Button2.Hide()
    End Sub 
    Private Sub RadioButton1_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton1.CheckedChanged
        TextBox2.Text = UCase(TextBox1.Text)
    End Sub 
    Private Sub RadioButton2_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton2.CheckedChanged
        TextBox2.Text = LCase(TextBox1.Text)
    End Sub 
    Private Sub RadioButton3_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton3.CheckedChanged
        TextBox2.Text = Mid(TextBox1.Text, Val(TextBox5.Text), Val(TextBox6.Text))
        If RadioButton3.Checked = False Then            TextBox5.Clear()
            TextBox6.Clear()
            RadioButton3.Enabled = False        End If    End Sub 
    Private Sub RadioButton4_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton4.CheckedChanged
        Dim i As Integer        Dim c As Integer        For i = 1 To Len(TextBox1.Text)
            If Mid(TextBox1.Text, i, 1) <> " " Then                c = c + 1
            End If        Next        TextBox2.Text = c
    End Sub 
    Private Sub RadioButton5_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton5.CheckedChanged
        Dim i As Integer        Dim c As Integer        Dim s1 As String        s1 = Trim(TextBox1.Text)
        For i = 1 To Len(s1)
            If Mid(s1, i, 1) = " " Then                If Mid(s1, i - 1, 1) <> " " Then                    c = c + 1
                End If            End If        Next        TextBox2.Text = c + 1
    End Sub 
    Private Sub TextBox5_TextChanged(sender As Object, e As EventArgs) Handles TextBox5.TextChanged, TextBox6.TextChanged
        If Not ((TextBox5.Text = "") Or (TextBox6.Text = "")) Then            RadioButton3.Enabled = True 
        End If    End Sub 
    Private Sub RadioButton7_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton7.CheckedChanged
        Dim i, c As Integer        For i = 1 To Len(TextBox1.Text)
            If Asc(Mid(TextBox1.Text, i, 1)) >= 65 And Asc(Mid(TextBox1.Text, i, 1)) <= 90 Then                c = c + 1
            End If        Next        TextBox2.Text = c
    End Sub 
    Private Sub RadioButton9_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton9.CheckedChanged
        Dim i, c As Integer        For i = 1 To Len(TextBox1.Text)
            If Asc(Mid(TextBox1.Text, i, 1)) >= 97 And Asc(Mid(TextBox1.Text, i, 1)) <= 122 Then                c = c + 1
            End If        Next        TextBox2.Text = c
    End Sub 
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        Timer1.Enabled = False        Button1.Show()
        Button2.Hide()
        TextBox2.Clear()
        flag = 1
    End SubEnd Class
Public Class Form1


Read More