473,782 Members | 2,554 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

name space "Microsoft.Wind owsCE.Form" is not found

Hi all,
While i try to build a example c# project, i get a error message "The type or namespace name 'Microsoft' could not be found (are you missing a using directive or an assembly reference?)". This error occures in "using Microsoft.Windo wCE
..Form".

I am installing .net visual studio 2003 and sp2. Do i need to get some .dll or i just need changing some setting in .net v.s 2003?? Actually, I am not sure if the lib "Microsoft.Wind owCE.Form" has installed in my computer, i just need to set assembly reference. Or i have to get this lib first!?

Nov 16 '05 #1
4 6092
Hello

I think you didnt installed lib while installing vs.net

You can install again in your VS.NET CD

Good Luck!

Jhin-Seok
_______________ ______
Have a Good Day
_______________ ______
Mail :le*****@korea. co
MSN :le*****@Korea. co
Tel. :33-1-7142-640
_______________ ______
http://leehack.sarang.ne
Nov 16 '05 #2
Hi Ginee,

Are you developing a Pocket PC app?
That namespace is intended for that, if this is the case you need to add a
reference to it in your project, you do not need to install nothing more.

Just go to project/Add Reference and find there the namespace

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"ginee" <an*******@disc ussions.microso ft.com> wrote in message
news:50******** *************** ***********@mic rosoft.com...
Hi all,
While i try to build a example c# project, i get a error message "The type or namespace name 'Microsoft' could not be found (are you missing a using
directive or an assembly reference?)". This error occures in "using
Microsoft.Windo wCE .Form".

I am installing .net visual studio 2003 and sp2. Do i need to get some ..dll or i just need changing some setting in .net v.s 2003?? Actually, I am
not sure if the lib "Microsoft.Wind owCE.Form" has installed in my computer,
i just need to set assembly reference. Or i have to get this lib first!?

Nov 16 '05 #3
ginee <an*******@disc ussions.microso ft.com> wrote:
While i try to build a example c# project, i get a error message "The
type or namespace name 'Microsoft' could not be found (are you
missing a using directive or an assembly reference?)". This error
occures in "using Microsoft.Windo wCE
.Form".

I am installing .net visual studio 2003 and sp2. Do i need to get
some .dll or i just need changing some setting in .net v.s 2003??
Actually, I am not sure if the lib "Microsoft.Wind owCE.Form" has
installed in my computer, i just need to set assembly reference. Or i
have to get this lib first!?


I haven't come across the Microsoft.Windo wCE namespace myself -
normally you just use System.Windows. Forms. How old is your example
project? It could be that it came out before the Compact Framework was
released, and that the name has changed.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #4
Hi Jon,

This namespace is intended to be used in the compact framework and provide
a couple of functionality not found in System.Windows. Form , in fact IIRC it
was added later, it did not exist in release 1, it provide two important
functionality, InputPanel that let you use the SIP ( before that you had to
use P/Invoke) and MessageWindow that export the hWnd property and override
the WndProc method.
Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Jon Skeet [C# MVP]" <sk***@pobox.co m> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
ginee <an*******@disc ussions.microso ft.com> wrote:
While i try to build a example c# project, i get a error message "The
type or namespace name 'Microsoft' could not be found (are you
missing a using directive or an assembly reference?)". This error
occures in "using Microsoft.Windo wCE
.Form".

I am installing .net visual studio 2003 and sp2. Do i need to get
some .dll or i just need changing some setting in .net v.s 2003??
Actually, I am not sure if the lib "Microsoft.Wind owCE.Form" has
installed in my computer, i just need to set assembly reference. Or i
have to get this lib first!?


I haven't come across the Microsoft.Windo wCE namespace myself -
normally you just use System.Windows. Forms. How old is your example
project? It could be that it came out before the Compact Framework was
released, and that the name has changed.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
17768
by: John Davis | last post by:
I want to know what's the differences between Request.Form("Field Name") and Request.QueryString("Field Name") OR they function exactly the same, which is to return the value of the field?? Thanks, John
4
3919
by: Aatu Koskensilta | last post by:
When processing HTML-files for various purposes, I run into a strange form action definition looking like "r/sx/*-http://somehow/somescript" In particular, the Yahoo search form uses a form action attribute which looks like this. What's the meaning of the "r/sx/*-"-prefix?
1
1570
by: ginee | last post by:
Hi all, While i try to build a example c# project, i get a error message "The type or namespace name 'Microsoft' could not be found (are you missing a using directive or an assembly reference?)". This error occures in "using Microsoft.WindowCE ..Form". I am installing .net visual studio 2003 and sp2. Do i need to get some .dll or i just need changing some setting in .net v.s 2003?? Actually, I am not sure if the lib...
3
2707
by: Pavils Jurjans | last post by:
Hello, I have bumped upon this problem: I do some client-side form processing with JavaScript, and for this I loop over all the forms in the document. In order to identify them, I read their "name" property (which sources from "name" HTML attribue). The problem is, that if the form contains form control named "name", it overwrites the form name property. In fact, I'm quite surprised that it's so easy to spoil any of the form object...
5
2286
by: Werner Partner | last post by:
On my testpage http://www.sonoptikon.de/test.php I have this <table><tr> <td valign="top" align="center" style="width:150px;"> <form action=test.php method="get">
4
7106
by: Barry Edmund Wright | last post by:
Hi All, I am using the code below to assign a form name to a form variable (vFrm). Is there a way to assign the Openargs string directly to vFrm, i.e. vFrm = Openargs ? Private Sub Form_Load() Public vFrm As Form If Openargs = "subfrmProjects" then
9
21495
by: Dan | last post by:
I am trying to use Request.Form("__EVENTTARGET") to get the name of the control that caused a post back. It keeps returning "". I am not really sure why, this happens for all of my controls that invoke are invoking a post back. I've never used this type of method before, but I need to get the name of the control doing the postback in the Form Load event, and cannot wait until the event of the target control that runs due to the...
1
1801
by: chas2007 | last post by:
I need to pass a variable from a php function to a form. Does anyone have an example of code that would do this? Below is the code. I need to pass the "return value" from the php function mem_cost to the "amount" listed in the "form" <?php function mem_cost() { $w_month = strftime("%m"); if (($w_month >= "01") && ($w_month <= "06"))
3
1917
by: eBob.com | last post by:
How does a "sub-form", i.e. one invoked by another form, determine anything about the form which brought it into existence, i.e., I suppose, instantiated it? I wanted to so something like this ... MsgBox("called by " & Owner.Name) .... but that throws a null reference exception. Parent.Name and ParentForm.Name also throw null reference exceptions. Form1.Name works - but that's not very flexible.
0
9639
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10308
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10076
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7486
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6729
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4040
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3633
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2870
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.