|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
windows.forms.controlsI want to use it to plug an aplication into a spell checker. I'm using VS2005, with framework.NET v2.050727 to avoid ticking off customers who don't like having to download yet another .NET framework upgrade to make my gear work. I've got to be missing something here. In fact I hope I'm missing a few things and someone can find them for me: 0001. Where is that windows.forms.namespace or where do I find it? 0010. Does SP3 for Windows XP ship with framework.NET? Which version? Thanks in Advance... ____________________________________________________________ Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. Philosophical Essays: http://timothycasey.info Speed Reading: http://speed-reading-comprehension.com Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security. Science & Geology: http://geologist-1011.com;http://geologist-1011.net Technical & Web Design: http://web-design-1011.com -- GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC The General Public Electronic Mail Contract is free for public use. If enough of us participate, we can launch a class action to end SPAM Put GPEMC in your signature to join the fight. Invoice a SPAMmer today! As you use VS 2005 then only Framework 2.0 is used.
That is downwards compatible with Framework 3.5 (The latest official version) Service packs only contain thing that were not in it before. In general does a service pack contains only newer frameworks as there is something new which was included in the original package or bug fixes. Cor Show quoteHide quote "Number Eleven - GPEMC!" <eleven_is_the_num***@timothycasey.info> wrote in message news:4a1a0a67$0$9134$afc38c87@news.optusnet.com.au... > I'm embarrassed to admit that I seem to have lost > "windows.forms.controls". > I want to use it to plug an aplication into a spell checker. > > I'm using VS2005, with framework.NET v2.050727 to avoid ticking off > customers who don't like having to download yet another .NET framework > upgrade to make my gear work. I've got to be missing something here. In > fact > I hope I'm missing a few things and someone can find them for me: > > 0001. Where is that windows.forms.namespace or where do I find it? > 0010. Does SP3 for Windows XP ship with framework.NET? Which version? > > Thanks in Advance... > > ____________________________________________________________ > Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. > Philosophical Essays: http://timothycasey.info > Speed Reading: http://speed-reading-comprehension.com > Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security. > Science & Geology: http://geologist-1011.com;http://geologist-1011.net > Technical & Web Design: http://web-design-1011.com > -- > GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC > The General Public Electronic Mail Contract is free for public use. > If enough of us participate, we can launch a class action to end SPAM > Put GPEMC in your signature to join the fight. Invoice a SPAMmer today! > > My Project>References>Add>.NET>System.Windows.Forms
Top section is whether the reference is in your project, bottom section determines whether you need to add "Imports System.Windows.Forms" to each module to access the classes therein. By default for windows forms projects, the System.Windows.Forms namespace is selected in the bottom window, meaning that you can access windows forms controls without importing the namespace each time. -- Show quoteHide quoteDavid Streeter Synchrotech Software Sydney Australia "Number Eleven - GPEMC!" wrote: > I'm embarrassed to admit that I seem to have lost "windows.forms.controls". > I want to use it to plug an aplication into a spell checker. > > I'm using VS2005, with framework.NET v2.050727 to avoid ticking off > customers who don't like having to download yet another .NET framework > upgrade to make my gear work. I've got to be missing something here. In fact > I hope I'm missing a few things and someone can find them for me: > > 0001. Where is that windows.forms.namespace or where do I find it? > 0010. Does SP3 for Windows XP ship with framework.NET? Which version? > > Thanks in Advance... > > ____________________________________________________________ > Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. > Philosophical Essays: http://timothycasey.info > Speed Reading: http://speed-reading-comprehension.com > Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security. > Science & Geology: http://geologist-1011.com;http://geologist-1011.net > Technical & Web Design: http://web-design-1011.com > -- > GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC > The General Public Electronic Mail Contract is free for public use. > If enough of us participate, we can launch a class action to end SPAM > Put GPEMC in your signature to join the fight. Invoice a SPAMmer today! > > > "SurturZ" <surturz@newsgroup.nospam> wrote in message Thankyou and sorry about the confused namespace. That should have been:news:3F2AFB58-BF1C-4B28-9EA7-0891F5426672@microsoft.com... > My Project>References>Add>.NET>System.Windows.Forms > > Top section is whether the reference is in your project, bottom section > determines whether you need to add "Imports System.Windows.Forms" to each > module to access the classes therein. By default for windows forms projects, > the System.Windows.Forms namespace is selected in the bottom window, meaning > that you can access windows forms controls without importing the namespace > each time. > system.windows.controls I double-checked your suggestion but system.windows.controls (that hooks into the system spellchecker) is not on the list. Any idea what might be going on? Did I miss something when I installed this or inadvertently mess up a setting somewhere? Or is .NET 2.0 too old for this namespace...? TIA ____________________________________________________________ Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. Philosophical Essays: http://timothycasey.info Speed Reading: http://speed-reading-comprehension.com Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security. Science & Geology: http://geologist-1011.com;http://geologist-1011.net Technical & Web Design: http://web-design-1011.com -- GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC The General Public Electronic Mail Contract is free for public use. If enough of us participate, we can launch a class action to end SPAM Put GPEMC in your signature to join the fight. Invoice a SPAMmer today! The System.Windows.Controls namespace was new in Framework 3.0 and exposes
functionality for WPF. So, if you want to use it you're just going to have to tick those customers off. Show quoteHide quote "Number Eleven - GPEMC!" <eleven_is_the_num***@timothycasey.info> wrote in message news:4a1a70ca$0$29316$afc38c87@news.optusnet.com.au... > "SurturZ" <surturz@newsgroup.nospam> wrote in message > news:3F2AFB58-BF1C-4B28-9EA7-0891F5426672@microsoft.com... >> My Project>References>Add>.NET>System.Windows.Forms >> >> Top section is whether the reference is in your project, bottom section >> determines whether you need to add "Imports System.Windows.Forms" to each >> module to access the classes therein. By default for windows forms > projects, >> the System.Windows.Forms namespace is selected in the bottom window, > meaning >> that you can access windows forms controls without importing the >> namespace >> each time. >> > > Thankyou and sorry about the confused namespace. That should have been: > > system.windows.controls > > I double-checked your suggestion but system.windows.controls (that hooks > into the system spellchecker) is not on the list. > > Any idea what might be going on? Did I miss something when I installed > this > or inadvertently mess up a setting somewhere? Or is .NET 2.0 too old for > this namespace...? > > TIA > > ____________________________________________________________ > Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. > Philosophical Essays: http://timothycasey.info > Speed Reading: http://speed-reading-comprehension.com > Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security. > Science & Geology: http://geologist-1011.com;http://geologist-1011.net > Technical & Web Design: http://web-design-1011.com > -- > GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC > The General Public Electronic Mail Contract is free for public use. > If enough of us participate, we can launch a class action to end SPAM > Put GPEMC in your signature to join the fight. Invoice a SPAMmer today! > > "Stephany Young" <noone@localhost> wrote in message Thank you Stephany.news:uJvAqbS3JHA.240@TK2MSFTNGP06.phx.gbl... > The System.Windows.Controls namespace was new in Framework 3.0 and exposes > functionality for WPF. > > So, if you want to use it you're just going to have to tick those customers > off. Decisions, decisions... ___________________________________________________________ Timothy Casey GPEMC - Eleven is the num***@timothycasey.info to email. Philosophical Essays: http://timothycasey.info Speed Reading: http://speed-reading-comprehension.com Software: http://fieldcraft.biz; Scientific IQ Test, Web Menus, Security… Science & Geology: http://geologist-1011.com;http://geologist-1011.net Technical & Web Design: http://web-design-1011.com -- GPEMC! Anti-SPAM email conditions apply. See www.fieldcraft.biz/GPEMC The General Public Electronic Mail Contract is free for public use. If enough of us participate, we can launch a class action to end SPAM Put GPEMC in your signature to join the fight. Invoice a SPAMmer today!
is it save to call functions from another form?
Bracketed types use variable as textbox name? treeview in windowsdialog Call button click event Visual Studio 2008 and Classes Inheriting From System.Web.UI.WebControls.Style Problem with embedded carriage returns trouble reading word documents Good tutorial for working with XML Using function with PChar data type |
|||||||||||||||||||||||