Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Power Lifting Lever Belt
SkullVamp
Updated:
Saturday at 10:32 PM
Ad icon
port.lk Domain for sale
Lankan-Tech
Updated:
Saturday at 3:55 PM
Colombo
Kaduwela - Two Storey House for Sale
dilrasan
Updated:
Thursday at 2:23 PM
Ad icon
Wechat qr verification
Pawan2005
Updated:
Thursday at 1:28 AM
🚀 GOOGLE AI PRO 18 MONTHS ACTIVATION 🚀
sayuru bandara
Updated:
Jun 10, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
Education
Build a simple windows mobile application Microsoft Visual Studio 2008
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="ra20002" data-source="post: 8305110" data-attributes="member: 110775"><p style="text-align: center">In this article I'll teach you how to <strong>create a simple windows mobile application using MVS2008.</strong></p> <p style="text-align: center">but first you have to install these softwares to develop mobile application.</p> <p style="text-align: center"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=06111a3a-a651-4745-88ef-3d48091a390b&displaylang=en" target="_blank">Windows SDK</a></p> <p style="text-align: center"><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c0213f68-2e01-4e5c-a8b2-35e081dcf1ca&displaylang=en" target="_blank">Windows DTK</a> </p> <p style="text-align: center"></p> <p style="text-align: center">First launch MVS2008 and Select New -> Project.</p> <p style="text-align: center">Under the Visual C# project types you can see Smart Device. Just click it and select the Smart device Project. Add a name for your project and select OK.</p> <p style="text-align: center"></p> <p style="text-align: center"><img src="http://3.bp.blogspot.com/_vEsc0m17Dec/TJUOypDRyjI/AAAAAAAAAA8/ozJc_BE7TJ8/s640/1.jpg" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p> <p style="text-align: center">after that Select Device Application in Device templates and click OK.</p> <p style="text-align: center"></p> <p style="text-align: center"><img src="http://3.bp.blogspot.com/_vEsc0m17Dec/TJUPKUk6MPI/AAAAAAAAABE/UYZvw48fXBo/s640/2.jpg" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p> <p style="text-align: center"></p> <p style="text-align: center">Now You will get something like this....</p> <p style="text-align: center"></p> <p style="text-align: center"><img src="http://3.bp.blogspot.com/_vEsc0m17Dec/TJUPZxy0XXI/AAAAAAAAABM/4596FRAsKNM/s640/3.jpg" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p> <p style="text-align: center"></p> <p style="text-align: center">Simply Drag and Drop a Label,Textbox and Button to the design area and change name and text as follows.</p> <p style="text-align: center">Label name - lblText , Text - null(empty space)</p> <p style="text-align: center">TextBox name - txtText</p> <p style="text-align: center">Button name - btnclick , Text - Click!</p> <p style="text-align: center"></p> <p style="text-align: center">Now your form look like this...</p> <p style="text-align: center"><img src="http://1.bp.blogspot.com/_vEsc0m17Dec/TJUQoeLAISI/AAAAAAAAABU/0OLZ-NzBHhk/s640/4.jpg" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p> <p style="text-align: center">Now double click the button and it will direct to the source code of the form. In the btnclick_Click() paste this code..</p> <p style="text-align: center">[CODE]private void btnclick_Click(object sender, EventArgs e)</p> <p style="text-align: center"> {</p> <p style="text-align: center"> lblText.Text = "Hi " + txtText.Text;</p> <p style="text-align: center"> }[/CODE]</p> <p style="text-align: center">After that right click the project and select Build. If there are no errors it will say Build succeed.</p> <p style="text-align: center">Now click the debug button to get the output.</p> <p style="text-align: center"></p> <p style="text-align: center">It takes little more time to compile and run the application. So you have to wait some time. After the application build you can check with sample inputs.</p> <p style="text-align: center"></p> <p style="text-align: center">You can download Sample Project In here...</p> <p style="text-align: center"><a href="http://hotfile.com/dl/70330219/2a5960d/MobileApp.rar.html" target="_blank">http://hotfile.com/dl/70330219/2a5960d/MobileApp.rar.html</a></p> <p style="text-align: center"></p> <p style="text-align: center"><a href="http://dummiestutorials.blogspot.com/" target="_blank">Source</a></p> <p style="text-align: center"></p></blockquote><p></p>
[QUOTE="ra20002, post: 8305110, member: 110775"] [CENTER]In this article I'll teach you how to [B]create a simple windows mobile application using MVS2008.[/B] but first you have to install these softwares to develop mobile application. [URL="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=06111a3a-a651-4745-88ef-3d48091a390b&displaylang=en"]Windows SDK[/URL] [URL="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c0213f68-2e01-4e5c-a8b2-35e081dcf1ca&displaylang=en"]Windows DTK[/URL] First launch MVS2008 and Select New -> Project. Under the Visual C# project types you can see Smart Device. Just click it and select the Smart device Project. Add a name for your project and select OK. [IMG]http://3.bp.blogspot.com/_vEsc0m17Dec/TJUOypDRyjI/AAAAAAAAAA8/ozJc_BE7TJ8/s640/1.jpg[/IMG] after that Select Device Application in Device templates and click OK. [IMG]http://3.bp.blogspot.com/_vEsc0m17Dec/TJUPKUk6MPI/AAAAAAAAABE/UYZvw48fXBo/s640/2.jpg[/IMG] Now You will get something like this.... [IMG]http://3.bp.blogspot.com/_vEsc0m17Dec/TJUPZxy0XXI/AAAAAAAAABM/4596FRAsKNM/s640/3.jpg[/IMG] Simply Drag and Drop a Label,Textbox and Button to the design area and change name and text as follows. Label name - lblText , Text - null(empty space) TextBox name - txtText Button name - btnclick , Text - Click! Now your form look like this... [IMG]http://1.bp.blogspot.com/_vEsc0m17Dec/TJUQoeLAISI/AAAAAAAAABU/0OLZ-NzBHhk/s640/4.jpg[/IMG] Now double click the button and it will direct to the source code of the form. In the btnclick_Click() paste this code.. [CODE]private void btnclick_Click(object sender, EventArgs e) { lblText.Text = "Hi " + txtText.Text; }[/CODE] After that right click the project and select Build. If there are no errors it will say Build succeed. Now click the debug button to get the output. It takes little more time to compile and run the application. So you have to wait some time. After the application build you can check with sample inputs. You can download Sample Project In here... [URL="http://hotfile.com/dl/70330219/2a5960d/MobileApp.rar.html"]http://hotfile.com/dl/70330219/2a5960d/MobileApp.rar.html[/URL] [URL="http://dummiestutorials.blogspot.com/"]Source[/URL] [/CENTER] [/QUOTE]
Insert quotes…
Verification
Dawasata paya keeyak thibeda?
Post reply
Top
Bottom