views:

246

answers:

2

Hi folks, new to winform development. I am trying to add a 'login form' to my project in vs2008 but the template is missing. When i do 'add new item', i don't see 'login form'. However i do see mainform, aboutbox form templates.

TIA

A: 

Winforms apps assume you're using Windows authentication. If you need to provide a login, you'll have to code it yourself. Here's an example.

http://www.vbforums.com/showthread.php?t=499888

David Stratton
SoftwareGeek
A: 

There is no template for 'Login Form' under C# unlike in VB.NET. So i created them manually in my C# project.

SoftwareGeek