PC Review


Reply
Thread Tools Rate Thread

create design time library using vs.net

 
 
gerry
Guest
Posts: n/a
 
      1st Nov 2004
has anybody successfully created a design time version of a cf control
library from within VS.NET ?
i can create one from the command line fine but would much rather be able to
do everything from within vs.

from cf webcasts i have seen this is possible but there must be some trick
that is never being mentioned.
basically I a doing is :
- copy the runtime library project file to a new design time project file
within the same project directory
- add the new design time project to the solution within vs.net
- add the appropriate conditional compilation constant
- specify the new output file name
- add the approprriate System.CF references to the design time project
- edit the design time project.csdproj file & rearrange the references to
place the System.CF references before all other references

[ I found that if i create the design time project from scratch rather than
copy the runtime project that everything compiles ok and the controls can be
added to the toolbar and dropped on a cf form but the controls are never
actually added to the form - there are no errors generated but nothing seems
to happen. ]

here is a condensed version of the task list ouput after compiling
( i realize that the redefinition warnings can be ignored )

C:\...\CFLib\CFControl.cs(22): 'System.Drawing.Bitmap' is defined in
multiple places; using definition from
'c:\..\Designer\System.CF.Drawing.dll'
C:\...\CFLib\CFControl.cs(19): 'System.Drawing.Graphics' is defined in
multiple places; using definition from
'c:\..\Designer\System.CF.Drawing.dll'
C:\...\CFLib\CFControl.cs(13): 'System.Windows.Forms.Control' is defined in
multiple places; using definition from
'c:\..\Designer\System.CF.Windows.Forms.dll'
C:\...\CFLib\CFControl.cs(107): 'System.Windows.Forms.MouseEventArgs' is
defined in multiple places; using definition from
'c:\..\Designer\System.CF.Windows.Forms.dll'
C:\...\CFLib\CFControl.cs(142): 'System.Windows.Forms.PaintEventArgs' is
defined in multiple places; using definition from
'c:\..\Designer\System.CF.Windows.Forms.dll'

c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
'System.Windows.Forms.Control' has base class or interface
'System.ComponentModel.ISynchronizeInvoke' defined in an assembly that is
not referenced. You must add a reference to assembly 'System'.
c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
'System.Windows.Forms.Control' has base class or interface
'System.Windows.Forms.IWin32Window' defined in an assembly that is not
referenced. You must add a reference to assembly 'System.Windows.Forms'.

The dependency 'Accessibility' could not be found.
The dependency 'ConMan' could not be found.
The dependency 'ConManDataStore' could not be found.
The dependency 'EnvDTE' could not be found.
The dependency 'Microsoft.VisualStudio' could not be found.
The dependency 'Microsoft.VisualStudio.Designer.Interfaces' could not be
found.
The dependency 'System.Design' could not be found.
The dependency 'System.Drawing.Design' could not be found.
The dependency 'System.Runtime.Serialization.Formatters.Soap' could not be
found.

C:\...\CFLib\CFControl.cs(262): The type or namespace name 'Browsable' does
not exist in the class or namespace 'System.ComponentModel' (are you missing
an assembly reference?)
C:\...\CFLib\CFControl.cs(66): The type or namespace name 'Category' does
not exist in the class or namespace 'System.ComponentModel' (are you missing
an assembly reference?)
C:\...\CFLib\CFControl.cs(68): The type or namespace name 'Description' does
not exist in the class or namespace 'System.ComponentModel' (are you missing
an assembly reference?)

gerry


 
Reply With Quote
 
 
 
 
Chris Tacke, eMVP
Guest
Posts: n/a
 
      1st Nov 2004
You need to modify your build so that only certain imports are used for the
design version and others are used for the run time version. Look at any of
the OpenNETCF SDF controls - they all have design-time support.

--
<ctacke/>
www.OpenNETCF.org
Your CF searches start and end here


"gerry" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> has anybody successfully created a design time version of a cf control
> library from within VS.NET ?
> i can create one from the command line fine but would much rather be able
> to
> do everything from within vs.
>
> from cf webcasts i have seen this is possible but there must be some trick
> that is never being mentioned.
> basically I a doing is :
> - copy the runtime library project file to a new design time project file
> within the same project directory
> - add the new design time project to the solution within vs.net
> - add the appropriate conditional compilation constant
> - specify the new output file name
> - add the approprriate System.CF references to the design time project
> - edit the design time project.csdproj file & rearrange the references to
> place the System.CF references before all other references
>
> [ I found that if i create the design time project from scratch rather
> than
> copy the runtime project that everything compiles ok and the controls can
> be
> added to the toolbar and dropped on a cf form but the controls are never
> actually added to the form - there are no errors generated but nothing
> seems
> to happen. ]
>
> here is a condensed version of the task list ouput after compiling
> ( i realize that the redefinition warnings can be ignored )
>
> C:\...\CFLib\CFControl.cs(22): 'System.Drawing.Bitmap' is defined in
> multiple places; using definition from
> 'c:\..\Designer\System.CF.Drawing.dll'
> C:\...\CFLib\CFControl.cs(19): 'System.Drawing.Graphics' is defined in
> multiple places; using definition from
> 'c:\..\Designer\System.CF.Drawing.dll'
> C:\...\CFLib\CFControl.cs(13): 'System.Windows.Forms.Control' is defined
> in
> multiple places; using definition from
> 'c:\..\Designer\System.CF.Windows.Forms.dll'
> C:\...\CFLib\CFControl.cs(107): 'System.Windows.Forms.MouseEventArgs' is
> defined in multiple places; using definition from
> 'c:\..\Designer\System.CF.Windows.Forms.dll'
> C:\...\CFLib\CFControl.cs(142): 'System.Windows.Forms.PaintEventArgs' is
> defined in multiple places; using definition from
> 'c:\..\Designer\System.CF.Windows.Forms.dll'
>
> c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> 'System.Windows.Forms.Control' has base class or interface
> 'System.ComponentModel.ISynchronizeInvoke' defined in an assembly that is
> not referenced. You must add a reference to assembly 'System'.
> c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> 'System.Windows.Forms.Control' has base class or interface
> 'System.Windows.Forms.IWin32Window' defined in an assembly that is not
> referenced. You must add a reference to assembly 'System.Windows.Forms'.
>
> The dependency 'Accessibility' could not be found.
> The dependency 'ConMan' could not be found.
> The dependency 'ConManDataStore' could not be found.
> The dependency 'EnvDTE' could not be found.
> The dependency 'Microsoft.VisualStudio' could not be found.
> The dependency 'Microsoft.VisualStudio.Designer.Interfaces' could not be
> found.
> The dependency 'System.Design' could not be found.
> The dependency 'System.Drawing.Design' could not be found.
> The dependency 'System.Runtime.Serialization.Formatters.Soap' could not be
> found.
>
> C:\...\CFLib\CFControl.cs(262): The type or namespace name 'Browsable'
> does
> not exist in the class or namespace 'System.ComponentModel' (are you
> missing
> an assembly reference?)
> C:\...\CFLib\CFControl.cs(66): The type or namespace name 'Category' does
> not exist in the class or namespace 'System.ComponentModel' (are you
> missing
> an assembly reference?)
> C:\...\CFLib\CFControl.cs(68): The type or namespace name 'Description'
> does
> not exist in the class or namespace 'System.ComponentModel' (are you
> missing
> an assembly reference?)
>
> gerry
>
>



 
Reply With Quote
 
gerry
Guest
Posts: n/a
 
      1st Nov 2004
Hi Chris ,

thanks for the reply

writing controls with design time support isn't the issue , my controls also
have design time support which works just peachy.
I am thinking that maybe you missed the point of my original question which
was how to get the design time library built using a vs.net project from
within the vs.net ide. Responses to previous posts on this issue have
stated that opennetcf design time lib is always built using the command
line - my lib builds without problem using the command line , but i would
much rather manage this as a design time project from within the vs.net ide.

the only difference with imports between opennetcf controls and my own are I
have System.ComponentModel always included and opennetcf only includes it
for design time - making this inclusion only for design time has no effect.

am I still overlooking something in the openNETCF control source that would
allow the design time lib to be built using the command line but not via a
project within vs.net ?

gerry




"Chris Tacke, eMVP" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> You need to modify your build so that only certain imports are used for

the
> design version and others are used for the run time version. Look at any

of
> the OpenNETCF SDF controls - they all have design-time support.
>
> --
> <ctacke/>
> www.OpenNETCF.org
> Your CF searches start and end here
>
>
> "gerry" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > has anybody successfully created a design time version of a cf control
> > library from within VS.NET ?
> > i can create one from the command line fine but would much rather be

able
> > to
> > do everything from within vs.
> >
> > from cf webcasts i have seen this is possible but there must be some

trick
> > that is never being mentioned.
> > basically I a doing is :
> > - copy the runtime library project file to a new design time project

file
> > within the same project directory
> > - add the new design time project to the solution within vs.net
> > - add the appropriate conditional compilation constant
> > - specify the new output file name
> > - add the approprriate System.CF references to the design time project
> > - edit the design time project.csdproj file & rearrange the references

to
> > place the System.CF references before all other references
> >
> > [ I found that if i create the design time project from scratch rather
> > than
> > copy the runtime project that everything compiles ok and the controls

can
> > be
> > added to the toolbar and dropped on a cf form but the controls are never
> > actually added to the form - there are no errors generated but nothing
> > seems
> > to happen. ]
> >
> > here is a condensed version of the task list ouput after compiling
> > ( i realize that the redefinition warnings can be ignored )
> >
> > C:\...\CFLib\CFControl.cs(22): 'System.Drawing.Bitmap' is defined in
> > multiple places; using definition from
> > 'c:\..\Designer\System.CF.Drawing.dll'
> > C:\...\CFLib\CFControl.cs(19): 'System.Drawing.Graphics' is defined in
> > multiple places; using definition from
> > 'c:\..\Designer\System.CF.Drawing.dll'
> > C:\...\CFLib\CFControl.cs(13): 'System.Windows.Forms.Control' is defined
> > in
> > multiple places; using definition from
> > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > C:\...\CFLib\CFControl.cs(107): 'System.Windows.Forms.MouseEventArgs' is
> > defined in multiple places; using definition from
> > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > C:\...\CFLib\CFControl.cs(142): 'System.Windows.Forms.PaintEventArgs' is
> > defined in multiple places; using definition from
> > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> >
> > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > 'System.Windows.Forms.Control' has base class or interface
> > 'System.ComponentModel.ISynchronizeInvoke' defined in an assembly that

is
> > not referenced. You must add a reference to assembly 'System'.
> > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > 'System.Windows.Forms.Control' has base class or interface
> > 'System.Windows.Forms.IWin32Window' defined in an assembly that is not
> > referenced. You must add a reference to assembly

'System.Windows.Forms'.
> >
> > The dependency 'Accessibility' could not be found.
> > The dependency 'ConMan' could not be found.
> > The dependency 'ConManDataStore' could not be found.
> > The dependency 'EnvDTE' could not be found.
> > The dependency 'Microsoft.VisualStudio' could not be found.
> > The dependency 'Microsoft.VisualStudio.Designer.Interfaces' could not be
> > found.
> > The dependency 'System.Design' could not be found.
> > The dependency 'System.Drawing.Design' could not be found.
> > The dependency 'System.Runtime.Serialization.Formatters.Soap' could not

be
> > found.
> >
> > C:\...\CFLib\CFControl.cs(262): The type or namespace name 'Browsable'
> > does
> > not exist in the class or namespace 'System.ComponentModel' (are you
> > missing
> > an assembly reference?)
> > C:\...\CFLib\CFControl.cs(66): The type or namespace name 'Category'

does
> > not exist in the class or namespace 'System.ComponentModel' (are you
> > missing
> > an assembly reference?)
> > C:\...\CFLib\CFControl.cs(68): The type or namespace name 'Description'
> > does
> > not exist in the class or namespace 'System.ComponentModel' (are you
> > missing
> > an assembly reference?)
> >
> > gerry
> >
> >

>
>



 
Reply With Quote
 
=?Utf-8?B?QWxleCBZYWtobmluIFtNVlBd?=
Guest
Posts: n/a
 
      1st Nov 2004
Take a look at this articles:

http://msdn.microsoft.com/library/de...asp?frame=true


--
Alex Yakhnin, .NET CF MVP
www.intelliprog.com
www.opennetcf.org



"gerry" wrote:

> Hi Chris ,
>
> thanks for the reply
>
> writing controls with design time support isn't the issue , my controls also
> have design time support which works just peachy.
> I am thinking that maybe you missed the point of my original question which
> was how to get the design time library built using a vs.net project from
> within the vs.net ide. Responses to previous posts on this issue have
> stated that opennetcf design time lib is always built using the command
> line - my lib builds without problem using the command line , but i would
> much rather manage this as a design time project from within the vs.net ide.
>
> the only difference with imports between opennetcf controls and my own are I
> have System.ComponentModel always included and opennetcf only includes it
> for design time - making this inclusion only for design time has no effect.
>
> am I still overlooking something in the openNETCF control source that would
> allow the design time lib to be built using the command line but not via a
> project within vs.net ?
>
> gerry
>
>
>
>
> "Chris Tacke, eMVP" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > You need to modify your build so that only certain imports are used for

> the
> > design version and others are used for the run time version. Look at any

> of
> > the OpenNETCF SDF controls - they all have design-time support.
> >
> > --
> > <ctacke/>
> > www.OpenNETCF.org
> > Your CF searches start and end here
> >
> >
> > "gerry" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > has anybody successfully created a design time version of a cf control
> > > library from within VS.NET ?
> > > i can create one from the command line fine but would much rather be

> able
> > > to
> > > do everything from within vs.
> > >
> > > from cf webcasts i have seen this is possible but there must be some

> trick
> > > that is never being mentioned.
> > > basically I a doing is :
> > > - copy the runtime library project file to a new design time project

> file
> > > within the same project directory
> > > - add the new design time project to the solution within vs.net
> > > - add the appropriate conditional compilation constant
> > > - specify the new output file name
> > > - add the approprriate System.CF references to the design time project
> > > - edit the design time project.csdproj file & rearrange the references

> to
> > > place the System.CF references before all other references
> > >
> > > [ I found that if i create the design time project from scratch rather
> > > than
> > > copy the runtime project that everything compiles ok and the controls

> can
> > > be
> > > added to the toolbar and dropped on a cf form but the controls are never
> > > actually added to the form - there are no errors generated but nothing
> > > seems
> > > to happen. ]
> > >
> > > here is a condensed version of the task list ouput after compiling
> > > ( i realize that the redefinition warnings can be ignored )
> > >
> > > C:\...\CFLib\CFControl.cs(22): 'System.Drawing.Bitmap' is defined in
> > > multiple places; using definition from
> > > 'c:\..\Designer\System.CF.Drawing.dll'
> > > C:\...\CFLib\CFControl.cs(19): 'System.Drawing.Graphics' is defined in
> > > multiple places; using definition from
> > > 'c:\..\Designer\System.CF.Drawing.dll'
> > > C:\...\CFLib\CFControl.cs(13): 'System.Windows.Forms.Control' is defined
> > > in
> > > multiple places; using definition from
> > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > > C:\...\CFLib\CFControl.cs(107): 'System.Windows.Forms.MouseEventArgs' is
> > > defined in multiple places; using definition from
> > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > > C:\...\CFLib\CFControl.cs(142): 'System.Windows.Forms.PaintEventArgs' is
> > > defined in multiple places; using definition from
> > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > >
> > > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > > 'System.Windows.Forms.Control' has base class or interface
> > > 'System.ComponentModel.ISynchronizeInvoke' defined in an assembly that

> is
> > > not referenced. You must add a reference to assembly 'System'.
> > > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > > 'System.Windows.Forms.Control' has base class or interface
> > > 'System.Windows.Forms.IWin32Window' defined in an assembly that is not
> > > referenced. You must add a reference to assembly

> 'System.Windows.Forms'.
> > >
> > > The dependency 'Accessibility' could not be found.
> > > The dependency 'ConMan' could not be found.
> > > The dependency 'ConManDataStore' could not be found.
> > > The dependency 'EnvDTE' could not be found.
> > > The dependency 'Microsoft.VisualStudio' could not be found.
> > > The dependency 'Microsoft.VisualStudio.Designer.Interfaces' could not be
> > > found.
> > > The dependency 'System.Design' could not be found.
> > > The dependency 'System.Drawing.Design' could not be found.
> > > The dependency 'System.Runtime.Serialization.Formatters.Soap' could not

> be
> > > found.
> > >
> > > C:\...\CFLib\CFControl.cs(262): The type or namespace name 'Browsable'
> > > does
> > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > missing
> > > an assembly reference?)
> > > C:\...\CFLib\CFControl.cs(66): The type or namespace name 'Category'

> does
> > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > missing
> > > an assembly reference?)
> > > C:\...\CFLib\CFControl.cs(68): The type or namespace name 'Description'
> > > does
> > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > missing
> > > an assembly reference?)
> > >
> > > gerry
> > >
> > >

> >
> >

>
>
>

 
Reply With Quote
 
gerry
Guest
Posts: n/a
 
      2nd Nov 2004
Thanks Alex ,

that's what I needed - 100% within IDE and modifications no longer required
each time a source file is added or removed from the library project.

Tip for anyone else following this thread , in the NMAKE commands
"$(SolutionDir)xxx.cs" "$(SolutionDir)yyy.cs" "..." can be changed to
"$(ProjectDir)*.cs"

gerry



"Alex Yakhnin [MVP]" <(E-Mail Removed)> wrote in message
news:99810F9A-347F-4AE8-B9EA-(E-Mail Removed)...
> Take a look at this articles:
>
>

http://msdn.microsoft.com/library/de...asp?frame=true
>
>
> --
> Alex Yakhnin, .NET CF MVP
> www.intelliprog.com
> www.opennetcf.org
>
>
>
> "gerry" wrote:
>
> > Hi Chris ,
> >
> > thanks for the reply
> >
> > writing controls with design time support isn't the issue , my controls

also
> > have design time support which works just peachy.
> > I am thinking that maybe you missed the point of my original question

which
> > was how to get the design time library built using a vs.net project from
> > within the vs.net ide. Responses to previous posts on this issue have
> > stated that opennetcf design time lib is always built using the command
> > line - my lib builds without problem using the command line , but i

would
> > much rather manage this as a design time project from within the vs.net

ide.
> >
> > the only difference with imports between opennetcf controls and my own

are I
> > have System.ComponentModel always included and opennetcf only includes

it
> > for design time - making this inclusion only for design time has no

effect.
> >
> > am I still overlooking something in the openNETCF control source that

would
> > allow the design time lib to be built using the command line but not via

a
> > project within vs.net ?
> >
> > gerry
> >
> >
> >
> >
> > "Chris Tacke, eMVP" <(E-Mail Removed)> wrote in message
> > news:%(E-Mail Removed)...
> > > You need to modify your build so that only certain imports are used

for
> > the
> > > design version and others are used for the run time version. Look at

any
> > of
> > > the OpenNETCF SDF controls - they all have design-time support.
> > >
> > > --
> > > <ctacke/>
> > > www.OpenNETCF.org
> > > Your CF searches start and end here
> > >
> > >
> > > "gerry" <(E-Mail Removed)> wrote in message
> > > news:(E-Mail Removed)...
> > > > has anybody successfully created a design time version of a cf

control
> > > > library from within VS.NET ?
> > > > i can create one from the command line fine but would much rather be

> > able
> > > > to
> > > > do everything from within vs.
> > > >
> > > > from cf webcasts i have seen this is possible but there must be some

> > trick
> > > > that is never being mentioned.
> > > > basically I a doing is :
> > > > - copy the runtime library project file to a new design time project

> > file
> > > > within the same project directory
> > > > - add the new design time project to the solution within vs.net
> > > > - add the appropriate conditional compilation constant
> > > > - specify the new output file name
> > > > - add the approprriate System.CF references to the design time

project
> > > > - edit the design time project.csdproj file & rearrange the

references
> > to
> > > > place the System.CF references before all other references
> > > >
> > > > [ I found that if i create the design time project from scratch

rather
> > > > than
> > > > copy the runtime project that everything compiles ok and the

controls
> > can
> > > > be
> > > > added to the toolbar and dropped on a cf form but the controls are

never
> > > > actually added to the form - there are no errors generated but

nothing
> > > > seems
> > > > to happen. ]
> > > >
> > > > here is a condensed version of the task list ouput after compiling
> > > > ( i realize that the redefinition warnings can be ignored )
> > > >
> > > > C:\...\CFLib\CFControl.cs(22): 'System.Drawing.Bitmap' is defined in
> > > > multiple places; using definition from
> > > > 'c:\..\Designer\System.CF.Drawing.dll'
> > > > C:\...\CFLib\CFControl.cs(19): 'System.Drawing.Graphics' is defined

in
> > > > multiple places; using definition from
> > > > 'c:\..\Designer\System.CF.Drawing.dll'
> > > > C:\...\CFLib\CFControl.cs(13): 'System.Windows.Forms.Control' is

defined
> > > > in
> > > > multiple places; using definition from
> > > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > > > C:\...\CFLib\CFControl.cs(107):

'System.Windows.Forms.MouseEventArgs' is
> > > > defined in multiple places; using definition from
> > > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > > > C:\...\CFLib\CFControl.cs(142):

'System.Windows.Forms.PaintEventArgs' is
> > > > defined in multiple places; using definition from
> > > > 'c:\..\Designer\System.CF.Windows.Forms.dll'
> > > >
> > > > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > > > 'System.Windows.Forms.Control' has base class or interface
> > > > 'System.ComponentModel.ISynchronizeInvoke' defined in an assembly

that
> > is
> > > > not referenced. You must add a reference to assembly 'System'.
> > > > c:\...\Designer\System.CF.Windows.Forms.dll Referenced class
> > > > 'System.Windows.Forms.Control' has base class or interface
> > > > 'System.Windows.Forms.IWin32Window' defined in an assembly that is

not
> > > > referenced. You must add a reference to assembly

> > 'System.Windows.Forms'.
> > > >
> > > > The dependency 'Accessibility' could not be found.
> > > > The dependency 'ConMan' could not be found.
> > > > The dependency 'ConManDataStore' could not be found.
> > > > The dependency 'EnvDTE' could not be found.
> > > > The dependency 'Microsoft.VisualStudio' could not be found.
> > > > The dependency 'Microsoft.VisualStudio.Designer.Interfaces' could

not be
> > > > found.
> > > > The dependency 'System.Design' could not be found.
> > > > The dependency 'System.Drawing.Design' could not be found.
> > > > The dependency 'System.Runtime.Serialization.Formatters.Soap' could

not
> > be
> > > > found.
> > > >
> > > > C:\...\CFLib\CFControl.cs(262): The type or namespace name

'Browsable'
> > > > does
> > > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > > missing
> > > > an assembly reference?)
> > > > C:\...\CFLib\CFControl.cs(66): The type or namespace name 'Category'

> > does
> > > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > > missing
> > > > an assembly reference?)
> > > > C:\...\CFLib\CFControl.cs(68): The type or namespace name

'Description'
> > > > does
> > > > not exist in the class or namespace 'System.ComponentModel' (are you
> > > > missing
> > > > an assembly reference?)
> > > >
> > > > gerry
> > > >
> > > >
> > >
> > >

> >
> >
> >



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
What kind of search path is used in design time and run time when using class library. tony Microsoft C# .NET 0 3rd Apr 2006 08:25 AM
What kind of search path is used in design time and run time when using class library. tony Microsoft Dot NET 0 3rd Apr 2006 08:21 AM
Re: Get assembly/type library at design time WALDO Microsoft Dot NET 2 5th Sep 2003 03:06 PM
Re: Get assembly/type library at design time WALDO Microsoft VB .NET 2 5th Sep 2003 03:06 PM
Re: Get assembly/type library at design time WALDO Microsoft Dot NET Framework 2 5th Sep 2003 03:06 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:43 AM.