Answer Questions
mmagri Porting WORKING MFC Application and depricated classes
I am trying rather unsuccessfully to port a WORKING eVC4 MFC application to VS2005 under the Mobile 5.0 SDK. It would appear that microsoft has dropped some classes from support in the latest version of MFC. The two that are hitting me the hardest right now are CSplitterWnd and CEditView though I assume the CDumpContext is going to come around to be pretty troublesome as well. Are there replacement classes that we are supposed to use, or a ...Show All
Wilj Call a Web Service hosted on a XP home with WSE3.0 installed
Is it possible to call a web service from PPC The web service is hosted on a XP home with WSE3.0 installed and using TCP. If it is possible, how to add web reference on the ppc project Yes, it is possible. However, WSE 3.0 is not supported on devices. I believe some WSE support is offered by OpenNetcf.org. Procedure for adding web reference to the device project is exactly the same as for desktop: References/Add Web Reference ...Show All
SunilBansal Can i use the Windows Media Player Control in my application ?
Hi, I want to play .mpeg/.avi files in Pocket PC using C#.NET and Pocket PC SDK. In .NET I'm able to get the instance of Windows Media Player, but in CE.NET i'm not getting that. How to use that control in my application to play media files Plz give me ideas if any...!!! Thanks, ramakrishna. take a look at a presentation by Alex on http://blog.opennetcf.org/afeinman/CommentView ...Show All
Jeff Cieslik When using "InternetOpen()"...
I am working on a smartphone 2003 project. I want to use the " InternetOpen " function. What to import Where is it Thanks! InternetOpen is defined in #include <wininet.h> Is it what you want --- Lao K Visit my Blog for Windows Mobile Pocket PC Smartphone Programming Hints and Tips Refer to this post for details http://blogs.msdn.com/windowsmobile/archive/2005/09/14/466579.aspx ...Show All
cs96ai Why GetRequestStream() cannot work well in PDA?
here is the source code ....................... WebRequest myRequest = WebRequest.Create(url); myRequest.Method = "POST"; UTF8Encoding encoding = new UTF8Encoding(); byte[] postData=encoding.GetBytes(strToSubmit); myRequest.ContentType="application/x-www-form-urlencoded"; myRequest.ContentLength=postData.Length; Stream newStream=myRequest.GetRequestStream(); ........................... when i debuged the code i ...Show All
TheToefistJU enable the internet connection pocket pc 2003 emulator
Hi, How could i enable the internet connection in pocket pc 2003 emulator Check the following blog written by Abhiram Khune. http://blogs.msdn.com/akhune/archive/2005/11/16/493329.aspx Hope it helps. Regards Gaurav ...Show All
Carsoni C# + Check online status
Hi Gurus: How do I check the network status (whether i'm online or not) from a C# + .net compact framework application. I did some google, but was futile. Thanks in advance. cool, simple solution ...is to use P/Invoke method. http://www.gotdotnet.com/Community/MessageBoard/Thread.aspx id=203405&Page=1#204077 You can also call Dns.GetHostEntry(Dns.GetHostNam ...Show All
Steve Nye Hide and Show Startbar
Hello everybody, Does somebody know how to hide and show the windows startbar. (the bar with the clock, Windows logo and so on) I have a form in fullscreen mode and I what to show the startbar on an button click. Any ideas Regards Karin Hi, You could try searching this forums for Kiosk and Start menu or Search using your fav. search tool Imports System.Runtime.InteropService ...Show All
SPC Posson C++ and C#
Hi, I outsourced a C#-code to C++ for performance reasons. I put the code int a new C++ class libary source code, did some changes to meet the C++-rules and compiled it. I looked for CLR support in the compiler options, but I can't find them. Also adding /clr manually didn't solve the problem. Subsequently I can't import the DLL into my C#-application. Note, that the application is a Smart Device Application. /cls works fine on Desktop applicati ...Show All
Ergin speed up app?
Hi there. I am deving an application for smartphone. It sends and recieves data from a server computer (also made in C#) The thing is, I have a while loop going on in order to check for incoming data and it can slow down the application a fair amount Is there a better way to check for incoming data without the need for a while loop going on continuesly void Recieve() { while (! this .readData && this .ns.CanRead) { if ...Show All
Brett Blatchley could .netcf 2.0 serialport component not support windows mobile 5.0 ?
Hi everybody : I read many articles in forum ; there are many people having this problem. could anyone have solution in this problem Hi Ilya Tumanov : ok , I describe clearly again First , I don't have any pocketpc or smartphone , so I develop program in emulator. Second , I have one usb gps receiver , I think that I can use .netcf 2.0 serialport componet to open COM port and get gps data ...Show All
dedwaazhaaz New DVD for installation?
I've recently received a Visual Studio Team Edition CD/DVD that contains corrupt files on it. Hopefully someone can direct me to a link or email address of the person that can help me "re-obtain" a no corrupt CD/DVD. Thanks. Venn Well still no luck. It seems that there was a previous install that is holding things up. If anyone has any information on how to fix this it would be greatly a ...Show All
wfw How to convert a WM5.0 Project to PPC 2003 project
Hi I have a VS2005 targeting WM5.0 device project How could I chanage this to PPC 2003 project Is there any auto wizard to do or must I re-create another project and copy file manually Thanks for help. Stefen Huynh There are lots of new API Function on WM5.0, if you did not use them, conversion will be easier! You can change project's target via Project/Change target platform menu. Recreating project and adding existing fi ...Show All
Vagif Installing Framework 2.0 over 1.1.
Hi, It seems that i need to use some classes that are available only in 2.0, but i have 1.1. Is there some articles about reinstalling 2.0 over 1.1 I have lots of development stuff on my comp and i dont want to harm anything uninstalling 1.1 and installing 2.0. Currently i have 1.1. and VS 2003. So, if i take 2.0 Framework and 2.0 SDK and install both of them, not removing 1.1., will everything work fine Will my VS 2003 work with 2.0 sinc ...Show All
zobrakster connection string to MSDE database
Hi, I'm developing smart device application in VB.NET. I couldn't make the connection with MSDE. I used the following connection string. myConnection = "server=10.0.0.8;Integrated Security=SSPI;User ID=sa;Initial Catalog=Example;Data Source=PPL\SQLSERVER;Trusted_Connection=yes;" MSDE is on the same machine where i'm developing my apps. & testing the result with emulator. (NOt using RDA or Replication).Simply using ADO.NET comm ...Show All
