Creation of *.exe from VS2005

bharanidharanit

Well-known member
Joined
Dec 8, 2008
Messages
53
Location
India
Programming Experience
1-3
Hello sir,
I would like to create exe files from VS2005
From my project, on button click it automatically wants to create new project (compiled as single exe) with a label(captioned as "Sample") and textbox and Button on a form.
In that form it also wants to add coding for a button click.
VB.NET:
text1.text = "hi"
 
Simple to say, i want to create a project and in that,
The user must only specify what controls they need on the form, other than that, the project only automatically wants adds forms,controls and appropriate coding to it.
(Just like the starter kits.)
For example consider LoginScreen, the user must only specify that they need login screen (through mode of checkbox in IDE).
So the project Must automatically adds 2 labels(UserName and Password) and 2 Textboxes and a Login Button on the form, With this coding.
VB.NET:
Private sub cmdLogin_click()
if text1.text = "admin" and text2.text = "password" then
msgbox "Login Success"
else
msgbox "Login Fails"
end if
end sub

Is it possible?
 
An optimist would say all things are possible. The VB.NET compiler however, would say that that... is not
 
Back
Top