The question in
|
A Coding Program in VB |
Can a Coding software be developed by a visual basic coding...??
"Yeah..!! of course.."
"This Software can create a simple webpage only in 3.99 sec"
i have personally developed an html "autocoding" software with manual editing and update system.I am uploading my this project in a meanwhile when it is completed..However i can give you a code for it if you are interested..
Note : this code does not include a software update system.I will give it soon..
first you have to make following things as shown in the picture..
You can also leave the update system and the generated code portion is actually a textbox which is disabled and can be enabled by clicking the button "edit code manually"
|
HTML AutoCoder by visual basic
|
Below is the code for your software :
Public Class Form1
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
code.Text = "<html>" + "<title>" + TextBox1.Text + "</title>" + "<h1>" + TextBox2.Text + "</h1>" + "<p>" + TextBox3.Text + "</p>" + "</html>"
save.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
code.Enabled = True
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles save.Click
SaveFileDialog1.Filter = ".html|*html"
SaveFileDialog1.ShowDialog()
Dim writer As New IO.StreamWriter(SaveFileDialog1.FileName + ".html")
writer.Write(code.Text)
writer.Close()
MsgBox("Page created successfully !")
End Sub
Private Sub SaveFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SaveFileDialog1.FileOk
End Sub
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Me.Close()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
End Sub
Private Sub code_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles code.TextChanged
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Form2.Show()
End Sub
End Class
copy this code and follow the steps given above..you will be able to program this software...
thank you..!! i hope you got the basic concept about developing a coding program...
if you want this program then please mention your email in the comment i will personally send it to you through email for free..read more
here