Click here to Skip to main content
15,899,754 members
Home / Discussions / C#
   

C#

 
AnswerRe: Game Creation Pin
Luc Pattyn4-Dec-10 13:56
sitebuilderLuc Pattyn4-Dec-10 13:56 
GeneralRe: Game Creation Pin
SRJ924-Dec-10 14:09
SRJ924-Dec-10 14:09 
GeneralRe: Game Creation Pin
Luc Pattyn4-Dec-10 14:16
sitebuilderLuc Pattyn4-Dec-10 14:16 
GeneralRe: Game Creation Pin
SRJ924-Dec-10 14:21
SRJ924-Dec-10 14:21 
GeneralRe: Game Creation Pin
Pete O'Hanlon5-Dec-10 9:33
mvePete O'Hanlon5-Dec-10 9:33 
GeneralRe: Game Creation Pin
Luc Pattyn5-Dec-10 13:56
sitebuilderLuc Pattyn5-Dec-10 13:56 
QuestionwindowsForms Pin
nasis14-Dec-10 2:16
nasis14-Dec-10 2:16 
AnswerRe: windowsForms Pin
Eddy Vluggen4-Dec-10 2:37
professionalEddy Vluggen4-Dec-10 2:37 
Hi,

A bit of a broad answer, but I'm having trouble trying to figure out what you're trying to do, and how.

nasis1 wrote:
how we can make an windows forms with own codes?

Using Visual Studio? Start a new project of the type "Windows Application". That should open a new template for a Windows-Application, including a single form that you can edit to your liking.

If you're on a different system, or don't have Visual Studio, you'd create a new project, add the reference to "System.Windows.Forms.dll", add the "using System.Windows.Forms" on top of your file, and then you can declare new forms;
C#
class MyForm: System.Windows.Forms.Form
{
}

static class Program
{
  static void Main (String args[])
  {
    System.Windows.Forms.Application.Run (new MyForm);
  }
}

There's a lot of information to be found on MSDN[^], if you scoll halfway the page you'll find some common walkthroughs.

Hope this helps a bit Smile | :)
I are Troll Suspicious | :suss:

AnswerRe: windowsForms Pin
Keith Barrow4-Dec-10 5:16
professionalKeith Barrow4-Dec-10 5:16 
GeneralRe: windowsForms Pin
Not Active4-Dec-10 5:50
mentorNot Active4-Dec-10 5:50 
GeneralRe: windowsForms Pin
fjdiewornncalwe4-Dec-10 7:53
professionalfjdiewornncalwe4-Dec-10 7:53 
GeneralRe: windowsForms Pin
Pete O'Hanlon4-Dec-10 11:47
mvePete O'Hanlon4-Dec-10 11:47 
GeneralRe: windowsForms Pin
Keith Barrow4-Dec-10 11:48
professionalKeith Barrow4-Dec-10 11:48 
AnswerRe: windowsForms Pin
PIEBALDconsult4-Dec-10 6:42
mvePIEBALDconsult4-Dec-10 6:42 
Questioncomponent Pin
nasis14-Dec-10 2:10
nasis14-Dec-10 2:10 
AnswerRe: component Pin
PIEBALDconsult4-Dec-10 6:44
mvePIEBALDconsult4-Dec-10 6:44 
AnswerRe: component Pin
Luc Pattyn4-Dec-10 7:39
sitebuilderLuc Pattyn4-Dec-10 7:39 
GeneralRe: component Pin
PIEBALDconsult4-Dec-10 8:31
mvePIEBALDconsult4-Dec-10 8:31 
AnswerRe: component Pin
RaviRanjanKr15-Dec-10 17:48
professionalRaviRanjanKr15-Dec-10 17:48 
Questionindex of items in CheckedListBox Pin
navidsoft4-Dec-10 1:50
professionalnavidsoft4-Dec-10 1:50 
AnswerRe: index of items in CheckedListBox Pin
Abhinav S4-Dec-10 2:05
Abhinav S4-Dec-10 2:05 
AnswerRe: index of items in CheckedListBox Pin
Luc Pattyn4-Dec-10 2:07
sitebuilderLuc Pattyn4-Dec-10 2:07 
QuestionDatagrid view's Event Control Pin
toetoeag3-Dec-10 21:04
toetoeag3-Dec-10 21:04 
AnswerRe: Datagrid view's Event Control Pin
Eddy Vluggen4-Dec-10 2:25
professionalEddy Vluggen4-Dec-10 2:25 
QuestionHow to return an environment variable? [modified] Pin
turbosupramk33-Dec-10 7:16
turbosupramk33-Dec-10 7:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.