SDE for visual studio.net

G

Guest

Hi all
I've been trying to get hold of the Smart device extensions of visual studio.net but have been unsuccessful so far. Can somebody tell me where to download/order this
Thanks
 
G

Guest

I've got one on cd. Contact me so I give you an access to it

Kind regard
Krzysztof Kazmierczak
 
C

Chris Tacke, eMVP

The SDE is old, unstable, and not compatible with the released CF. It's
very unwise to use it (and likely against the EULA to distribute it) since
apps developed against it will not work on any device with the actual CF on
them.
 
G

Guest

;-
Then what tools other than Embedded Visual Basic 3.0 should be used
Mirsosoft advices to use SDE to repace EVB ..

PS. I am a current user of Embedded Visual Basic 3.
 
P

Paul G. Tobey [eMVP]

Just get the VS.NET Professional 2003 release and you'll have what you need.

Paul T.
 
G

Guest

I am sure I have the VS.net 2003 Pro and in the Add/Remove Programs it states that and I have installed it fully and still I dont see the smart device application. i am going crazy here.........
 
P

Paul G. Tobey [eMVP]

Sure sounds like it ;-)

When you start VS.NET 2003, look at the splash screen and verify what
version of the product you have there. Make sure it's 2003 and Pro or
better.

Once VS.NET has started, select New Project. Select either Visual Basic
Projects or Visual C# Projects in the Project Types list. Smart Device
Application should be one of the available types in the Templates pane.

Paul T.


samsam said:
I am sure I have the VS.net 2003 Pro and in the Add/Remove Programs it
states that and I have installed it fully and still I dont see the smart
device application. i am going crazy here.........
 
G

Guest

Well... when I run it the splash screen shows "MS visual studio.Net professional" with no 2003 appearing.... It is composed of 4 CDs + 1 component upgrade....

:-(
 
P

Paul G. Tobey [eMVP]

The About... box should show Microsoft Development Environment 2003 in its
first line, if it's VS.NET 2003.

Paul T.

samsam said:
Well... when I run it the splash screen shows "MS visual studio.Net
professional" with no 2003 appearing.... It is composed of 4 CDs + 1
component upgrade....
 
G

Guest

At last I got the VS.Net 2003 enterprise architect version :).......

Now I wonder what is the best approach to develop a small application (for PPC) in which I can use Javascript.......
 
G

Ginny Caughey [MVP]

samsam,

Only VB.Net and C# support PocketPC development with Visual Studio 2003.

--
Ginny Caughey
..Net Compact Framework MVP



samsam said:
At last I got the VS.Net 2003 enterprise architect version :).......

Now I wonder what is the best approach to develop a small application (for
PPC) in which I can use Javascript.......
 
P

Paul G. Tobey [eMVP]

Are you talking about writing a C# or VB.NET application and somehow making
it scriptable with JavaScript? If not, tell us more about what you're
really talking about?

Paul T.

samsam said:
At last I got the VS.Net 2003 enterprise architect version :).......

Now I wonder what is the best approach to develop a small application (for
PPC) in which I can use Javascript.......
 
G

Guest

Well... the main purpose is to access the IP cam from the ppc and control its tilt/pan feature. the IP cam I have can be accessed by using a block of Javascript code (to get the streaming video) and the tilt/pan can be controled by using its URL with specific parameters (ex: http://62.75.45.26/cgi-bin/.......move=right). Is it possible to embedd the javascript in VB.net or C#.net and use the URL (maybe in as dummy links just to make the cam move).....????

I really appreciate any help possible.......It is urgent..........
 
P

Paul G. Tobey [eMVP]

No, it's not possible to embed Javascript in VB.NET or C#. You can probably
do the URL thing with no problems, but you'll have to read, understand, and
duplicate what the JavaScript code does (or maybe switch to C++ and COM).
If you want to post the JavaScript, someone may be able to direct you.

Paul T.

samsam said:
Well... the main purpose is to access the IP cam from the ppc and control
its tilt/pan feature. the IP cam I have can be accessed by using a block of
Javascript code (to get the streaming video) and the tilt/pan can be
controled by using its URL with specific parameters (ex:
http://62.75.45.26/cgi-bin/.......move=right). Is it possible to embedd the
javascript in VB.net or C#.net and use the URL (maybe in as dummy links just
to make the cam move).....????
 
G

Guest

:(
the code is:
document.write("<OBJECT ID=\"VaCtrl\" WIDTH=362 HEIGHT=306");
document.write(" CLASSID=CLSID:A93B47FD-9BF6-4DA8-97FC-9270B9D64A6C");
document.write(" CODEBASE=\"http://24.45.76.223:5004/plugin/h263ctrl.cab#version=1,7,0,5\">");
document.write("<PARAM NAME=\"Url\" VALUE=\"http://24.45.76.223:5004/cgi-bin/video.vam\">");
document.write("<PARAM NAME=\"VSize\" VALUE=\"SIF\">");
document.write("<PARAM NAME=\"RemoteIP\" VALUE=\"24.45.76.223:5004\">");
document.write("<PARAM NAME=\"RemotePort\" VALUE=\"5001\">");
document.write("</OBJECT>");

this will display the streaming video from the cam.
 
C

Chris Tacke, eMVP

That's simply code to output HTML to use a COM object. It would run on the
web server itself, so if you've got the control installed on the device,
simply navigating to the page will do it.

The paradigm between what this is doing and doing it from a local app is way
different, so even if you could run this code it woudln't do what you want.

-Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top