Click here to Skip to main content
15,900,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I want to know what is the C# windowsform type?
(e.g. in vb windowsform type is .ODB)
I think in c# it is .PDB , that's right?
Please help me
I wanna it in 2 days :sigh:
Posted
Updated 29-May-10 23:20pm
v2
Comments
AspDotNetDev 30-May-10 4:11am    
By "ODB" did you mean "OCX"?

I'm not entirely sure what your asking, there is no winforms file type. PDB files just contain a load of debugging information as far as I'm aware.

There are .res files that may contain strings or images used on a form, but really a form is built up from whatever instructions (code) you use to make it.
 
Share this answer
 
There are two possible answers, neither of which fits where you are leading your question.

1. A Form is stored in between 1 and 3 files normally.
FormName.cs
FormName.Designer.cs
FormName.resx

2. A Form is a ContainerControl. The full inhertance is:
Form
  ContainerControl
    ScrollableControl, IContainerControl
      Control, IComponent, IDisposable
        Component, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable
          MarshalByRefObject, IComponent, IDisposable
 
Share this answer
 
dream_land wrote:
n vb windowsform type is .ODB

In VB (VB 6.0) form uses the file extension .frm.

In C#, the form file extension is .cs (i.e. a class file).
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900