Answer Questions
fgalarraga sending message
hi, i want to create device application,that client(device) send a data(msg) to the server and invoke the webservice.The server get the data via clientwebservice.Any sample code related to this send me Why can't you implement/run the webservice from the Client If you have a Server/client application, simply send a message via the network stream to your connected server, a simple string for example to tell the server that it should invoke a webservice, then return the value back to the client. You have to implement your own methods of ways of recieving/understanding data. here is a VERY SIMPLE and basic example. //client code this.theNetworkStream.Send(System.Text.Encodi ...Show All
Cygon4 SmartPhone (WM5) Regestry Lock
I work in a software company and we have an application that should run on smartphones (WM5). Several of the devices we got, are locked for registry editing. Where can I find help in unlocking those devices (and I don't mean finding cracks on the net :-) Thanks, Rotem Find more info on how to join the Mobile2Market here: http://msdn.microsoft.com/windowsmobile/partners/mobile2market/participatevendors.aspx Most mobile operators do have the privileged and the unprivileged certs on their devices. One your app is signed, it sould work on all devices with the Mobile2Market certs installed. See more here: http://msdn.microsoft.com/windowsmobile/partners/mobile2market/smartphoneapps/default.aspx ...Show All
Mystagogue Anyone using the AddCampaigns, AddOrders, etc from Excel using VBA?
Good Morning fellow developers, I have a fully functioning desktop integration to the API's via Excel 2003, VBA and .NET that stopped working upon moving from the V1 to the V3.x version of the API's. These applications no longer function due to the mandated migration from .NET 1.1 to .NET 2.0. The simple VBA app uses the .NET app to perform the API calls, upon completion, the .NET function returned the EntityResultType enumeration results, the ID's for the successfully completed campaigns. The campaign IDs are then added to the worksheet and are then used for the AddOrders and the process continues for the AddOrderItem. This tight desktop integration was designed by our tacticians in order to easily mass update/add/delete their numerous a ...Show All
manju4999 PostGIS, MSVE and alot pf Polylines/Polygons
I've been hacking at this problem for a while, and I'm sure tis been doen a thousand times by now by others but I've only just started playing with both PostGIS and MSVE so Its really messing with my head. Basically we have a several databases full of statistics for geographical locations which could be represented as polylines or polygons and actually both will have to be used... I'm trying to figure out a way of fetching this data from the databases but I want it to remain as polys for future adaptability. I've figured out the code in VE that would select the area and hence the queries I need from PostGIS but I just cant figure out how to join the two things together. I've been pointed at doing some kind of Java servlet and I've had a go ...Show All
Jayyde Revisited - How to retrieve PPC phone number
Hello, I am trying to retrieve the phone number of the a HP 6925 device running on the cingular network. I have not been able to successfuly do this. I have been succesful getting the device phone number on a HP 6500 running on the Rogers network in Canada. In this forum I found this class: (which works great on Rogers networks - located below++) . This is a guess but I think Rogers keeps the phone number in the SIM card, but cingular does not. Here is the question: Is there a way to get the phone number on a HP 6925 device running on the cingular network public class Sim { private static long SERVICE_PROVIDER = 0x00006F46; [ StructLayout ( LayoutKind .Sequential)] priv ...Show All
Nightowly FireFox bug in V3
I tried my VE v3 app in FireFox and I got the following error: Error: [Exception... "'Msn.Drawing.Exception: Your Web browser does not support SVG or VML. Some graphics features may not function properly.' when calling method: [nsIOnReadystatechangeHandler::handleEvent]" nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)" location: "<unknown>" data: no] Any help is appreciated. Dilipk, I encountered the same errors in firebug. Did you resolve the problem I would appreciate help. Thanks. It appears that the map.Load() function fails. I tried both the ways like: map.LoadMap(); // OR map.LoadMap(new VELatLong(3 ...Show All
Thap c++ dll for x86
Hello, I'm using VisualStudio 2005 and with you create Smartdevice projects for "SmartPhone 2003" and for "PocketPC 2003", but I need to develop an dll for an x86-Processor (with Windows CE installed). I read somewhere that in VisualStuido 2003 you could also chose "x86" as building plattform. Is this correct And what do I have to install on my development PC in order to create a Project for x86 Many thanks for your help! SabineA Hi Sabine No, Visual Studio.NET 2003 does not support native C++ development for mobile devices at all. To get x86 support in Visual Studio 2005 - you'll have to install the SDK for your OS design. In case you are using a 'off the she ...Show All
SP534 Treeview keypress event
Hai how can i detect a key is pressed ( say enter button in a smart phone) when the focus is on the tree view I had tried KeyDown , KeyUp, KeyPress events but they didnt catch the key pressing Please help me.. Regards Ratheesh Hi the key press event for the treeview ddnt worked in emulator..but it worked in Smart phone device.. my form contains no other control other than treeview Hi Ratheesh, I tried this on a Pocket PC 2003 application using Pocket PC 2003 SE Emulator. I am able to get both KeyPress and KeyDown events when the focus is on the treeview. This works regardless of whether there are any nodes in the tree or not. Please send more information on the type of project you are having and any other con ...Show All
ctssoms can windows mobile 5 connect to sel server 2005 express ?
can wm5 connect to sql server 2005 express is it need to install other software on pocpet pc , free or not thank you Let's see... You're looking into using SQL Express on NETCF, perhaps ”SQL Express NETCF" would do... i test my web services by create Win Application and connect to ws (using add web reference, localhost) i work! but on ppc and emulator error at this line object [] results = this .Invoke( "testR" , new object [] { testMsg }); $exception {"Could not establish connection to network."} System.Exception {System.Net.WebException} how to reslove this thank you!! thank you plese give me an example keywordto search, i'm newbie with .NET thank :) Yes, you can conn ...Show All
XIAIX StructLayoutAttribute problem
Hi everybody, I wrote this code... This is a test structure [ StructLayout ( LayoutKind .Explicit)] public struct structure { [ FieldOffset (0)] public byte number1; [ FieldOffset (1)] public int number2; } .... private void button1_Click( object sender, EventArgs e) { structure s = new structure (); s.number1 = 20; s.number1 = 30; } It allways throw TypeLoadException... but Pack Field is not supported in CF, and I need to pack my structures. I realy don't know how to do this. Thanks All fields must be properly aligned, e.g. 32 bit integers must be 4 byte aligned per ARM CPU requirements. So second integer can't be at ...Show All
maderito Type is not defined
Hi, I have a create a new project (Control Library). And I am using this code. However it returns the following error: Type 'PasswordDeriverBytes' is not defined regarding the SetKey function. (highlighted in bold) What am I missing out. I originally took this code from a windows form (for a desktop not PPC). I really need to get this fixed. Thanks in advance Imports System.Security.Cryptography Imports System.IO Public Class PDACrypt Public Sub New () MyBase . New () InitializeComponent() clientRC2CryptoServiceProvider = New RC2CryptoServiceProvider() End Sub Public Shared clientRC2CryptoServiceProvider As RC2CryptoServiceProvider Private Function SetEncKey( ByVal pwd As String ) As Byte () Dim dr ...Show All
bxchan Windows CE.Net Version 4.20
Ok, I have an application developed on VS 2005, and it runs fine on Windows Mobile 5.0. Now, I've tried to install and run on CE.Net Ver 4.20 and it doesn't run at all. I've had a look around on this site and found some info, and I installed the .NET framework service pack 1 patch, and then I copied over the NETCFv2.wce4.ARMV4.cab file. Then it goes wrong! I try to install, and it doesn't want to know it - I get a message '....failed to install because the installation file is not intended for this device' So, is there any way around this, or is that it, no go Ilya, Thankyou for your replies. It is beginning to make sense! Ok, I have looked everywhere for the NETCFv2.wce4.armv4i cab file Does one exist Can I download i ...Show All
Francesco De Vittori Reverse Geocoding
Hi, I'm trying to get an address from geographic coordinates (lng, lat). I tried with the Find, FindLocation and FindNearby methods with no result, and I can't find any documentation about it. Can somebody help me Thanks, Greg. Greg Geonames is currently testing some street level geocoding services for the US : http://www.geonames.org/export/reverse-geocoding.html there is also a visualisation of the street segments used for the service: http://www.geonames.org/maps/reverse-geocoder.html Maybe this could help you. Regards Marc Thank you. This is the service I use, waiting to find better. Thank you too, Caleb. I though this feature was available in VE, I'l ...Show All
NickiC Due to a connection problem, changes you make might not be applied to other computers you use
Hi, Due to a connection problem, changes you make might not be applied to other computers you use I am getting this error in Live Messenger for last few days... As a result, my contact list is not appearing correctly and all the contacts are missing. Anyone having same issue Thanks Fahad I don't know what they did, but they did it right...... today the message is gone. I am quite surprised that so many people having same issue... and yet there is no official solution available... I am using MSN 7.5 for the time being... until we got some update on this issue from MS... cheers Just to add another fun tidbit, I got this problem after changing workstations at work (yesterd ...Show All
Mad_Box Where is Firefox support?
Does anybody have any ideas why my site loads in IE7 but not firefox 2.0.0.1 I have tried the work around from Marc Sutton (Codev Ltd) but it doesn't seem to have resolved anything. If anyone code take a look I'd really appreciate it. http://www.gisconsultancy.com/photomap/photomap.html Kind Regards, Rob I added the following to the onLoad for the map and my app works in FF2.0.x and IE 6/7 after having worked only in IE. Other than that the MS VE API is very very primitive and lacks a LOT of real world stuff other APIs have. I chose MS for the project as maps themselves cover more world but I am asolutely upset by the breadth of the API. As much as I dislike G I am upset by the technology of th ...Show All
