WindowsCE for MC3090

  • Thread starter Thread starter rcs768
  • Start date Start date
R

rcs768

Hi

I am developing one application for the the device MC3090. in my
application the device should connect to any server via wireless and
fetch some data from the server to diaplay in the appliction.

now i have developed the application (only desiging pat) but not able
to get the connection setting or not able to connect the device to
server through my application.

can anybody help me out from the beginneing, how to start as i am very
new in this field

thanks
 
That's not going to be valuable. If you don't understand what's going on at
all, we can't give you a complete beginner's tutorial in a newsgroup
posting. How is the data stored on the server? It's a file? An SQL Server
database? What? We can recommend what APIs/classes you should look at,
based on that. It's your job to figure out what exactly is required to
accomplish what you need.

Paul T.
 
hi paul,
I am also facing same problem
can u explain the step to connect device MC3090 with server database
I am using visual studio 2005
and sql server 2000 as a database
 
OK, so look at the Sqlxxx classes in the .NET CF documentation. For
example,

SqlConnection conn = new SqlConnection( yourconnectionstring );
conn.Open();
SqlDataAdapter adap = new SqlDataAdapter( "SELECT <something> FROM
<somewhere>;", conn );
DataTable dt = new DataTable();
adap.Fill(dt);
dataGrid.DataSource = dt;

or whatever. That should be enough to get your started, at least. It's not
necessarily true that creating a data adapter in this way is the right
thing, etc., etc. but you should see what to look up in the help.

Paul T.
 
Hi paul
I am using visual studio 2003
sql server 2000
and sql server ce

i have developed the application but problem is whenever i deploy the
application on any physically device it show error "Physical device is not
connected please connect it " while if i deploy in window ce .net Emulator.
it's working fine.can u tell me how i deploy application on my physical device
 
Look in the archives; as you might expect, when VS2003.NET was the current
version, this came up all the time. The steps to establish a connection
basically involve running the Smart Device Authentication Utility from the
VS2003.NET Tools menu and running sdauthutildevice.exe on the device, and
entering the device's IP address in the running tool on the desktop to make
them communicate. Then, in VS2003.NET's Options | Device Tools | Devices,
select your device type and change the TCP Connect options and enter the IP
address of the device there, too. Now you should be able to communicate.

Paul T.
 
Back
Top