Answer Questions
Spinlock TypeLoadException in a C#-Library
Hi all, I have written a class library, that is a wrapper to the PocketPC-Notification API (SHNotificationAdd, etc.). I have compiled the library succressful, created a test-application, added a reference to the library. Starting the new project (which is a Windows Forms application) throws a System.TypeLoadException with the following message: // --------------------------------------------------------------------------------------------------------- System.TypeLoadException was unhandled Message="Could not load type 'NotifyEx.CNotificationEx' from assembly 'NotifyEx, Version=1.0.2554.19848, Culture=neutral, PublicKeyToken=null'." StackTrace: at System.Windows.Forms.Form.OnLoad() at System.Windows.Forms.Form._Se ...Show All
Mark Flamer How do I set a project to use .NET CF 1.1
I have an exsisting windows mobile project, and don't want to be force to use .NET CF 2.0, how can I set a project to use only .NET CF 1.1 I'm using VS 2005 Hi Petchey, As petevick said, you can select from the projects templates the .NETCF version you want to use. But if you mean you have allready a .NET CF 2.0 project and want to use CF 1.0 only on it, then you can't. Instead, you can create another project from the begining for CF 1.0 and import the forms, classes or any used components in the current project to the new one, and fix it if unsupported used classes found. Regards, If this post was helpfull, please press "Yes". Ahmed H. Waly Hi, ...Show All
durianpuff I Have a problems to use a certificate into me code in Windows Mobile 2003
In me application to windows mobile 2003, i was needed use a certificate conection to webservice. In me Project add a new Item Class and copying the example code from "X509Certificate.CreateFromCertFile Method", but in the code section " X509Certificate.CreateFromCertFile(Certificate)" VS2005 displaying this message "CreateFromCertFile is not a member of System.Security.Criptography.X509certificate.x509certificate". What is the problem the Compact framework not support this method how can use a certificate in me application Please help me. That is the part of the sourcecode UrlAllz = "https://www.lkxsoftware.com" If Ramo = "2019" Then AplicaAllz = ":55 ...Show All
Michael Ressler PlatformNotSupportedException and the ResourceManager
Hi all, I hope this is the right forum for this kind of problem... My device is ETEN M600 with Mobile 5.0 and CF 2.0 SP1 (the following error was produced by the previous version of CF 2.0 as well) I'm trying to use the ResourceManager on the most common way - add an image to the resource tab of the project properties and assign it by code to a picturebox. this is the code: Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me .PictureBox1.Image = My .Resources. Calculator End Sub when the auto-generated code comes to the Dim obj As Object = ResourceManager.GetObject( "Calculator" , resourceCulture) I get a PlatformNo ...Show All
mr4100 Installation of Compact Framework 2.0 failed. Why?
Hi all, can somebody tell me why my installtion of the cf 2.0 on an HP 2490 PDA failed Log file of installation: 26/02/2006 23:14:42: Entered Install_Init(). First Call: Yes Previously Installed: No Installation folder is: '\Programme\.NET CF 2.0'. 26/02/2006 23:14:42: Build 2.0.5238.00 26/02/2006 23:14:42: Device CPU: 'ARMV4I', 05020000 (84017152) 26/02/2006 23:14:42: PocketPC 5.01 26/02/2006 23:14:42: Our trust level is: 2 26/02/2006 23:14:42: User LCID: 1031 26/02/2006 23:14:42: System LCID: 1031 26/02/2006 23:14:42: Invoker's command line: '0x822bd84e-0' 26/02/2006 23:14:42: Memory status, K -------------------------- 26/02/2006 23:14:42: Load : 58 26/02/2006 23:14:42: Physical : 5794 ...Show All
CBueche OpenWave add-in
Hello, is the OpenWave phone simulator able to be intergrated into VB Express thanks for any assistance Sorry, but this forum is for questions about the DeviceEmulator. Please check with OpenWave to see if/how their product integrates into Visual Studio. Barry ...Show All
Richard Berg MSFT 'System.Xml.Serialization.XmlElementAttribute' does not contain a definition for 'Form'
Hello, I'm getting the above error message in the generated client code for a web service. The web service is a JAXWS 2.0 and I'm generating the client part with VS 2003. What I found was that the Form property is supported in CF 2.0 but not CF 1.0. I need to use VS 2003 so I'm limited to CF 1.0. How to solve the problem Thanks Pls let me know if u were able to get it through. I am facing very similar problem. Trying to get JBOSS web service with .Net compact framework 1.0. Did u try upgrading to .net cf version 2.0 Regards Tapesh Also when I remove the form property I compile successfully, but the methods return null. I made a client in ...Show All
krsarge How to show the pop up on click of push pin?
Hi, I am using custom pushpins in my VEMap. Also i am able to get the custom pop up on mouse over. But my requirement is to show the pop up only on click of the push pin. I don't want to show the pop up on mouse over or on call back event. Can anyone please help me to overcome my problem Its a real pain but there is an easy solution: http://viavirtualearth.com/Wiki/ClickablePin.ashx function AddClickablePin(location, icon_url, title, details, iconStyle) { var pin = new VEPushpin(pinID, location, icon_url, title, details, iconStyle); map.AddPushpin(pin); var element = document.getElementById(pinID); element.onclick = EventHandlerOnClick; pinID++; } function EventHandlerOnClick( ...Show All
Roger Mitchell MSN Messenger Activity SDK
Hi, Im totally new to MSN programming (what i call it), so i have totally no idea how and what to do to get started. My aim, is to use an existing javascript (which writes in my native language, hindi) in MSN Messenger. This script is available at http://www.hindi.uni.cc, what it does is that it processes the last typed character, and then generates appropriate ASCII char when the next letter is typed. What i wanted to do is to run this in the message box in MSN Messenger, but as that may not be possible (i dont know, im just guessing!), i want to try to create a single use activity which enables me to achieve this. I saw some examples on the next (as well as the SDK), but even after i put the XML file in MSN's folder, i did not get it in ...Show All
TonyP19389 EVC4 help
Hi, I am currently developing a tiltControl application in embedded visual C++ and my active platform is pocket pc 2003. I do have the tiltControl SDK installed as well for the readings. So far, I have been able to take the tiltControl readings but my doubt starts here. The PDA is supposed to be the client and it is to connect to a server(a PC). This connection is done using sockets. Now, I have the PDA side socket program written using Visual Studio 2003. I would be very thankful if some can suggest how to pass the readings taken from the tilt control device using eVC4 to the visual studio smart device application so as to pass the readings onto the server side through socket. Is File I/O the right option f yes, please d ...Show All
Duncan_311 CrashAParty/StartAParty
I would like to see sources for the demo crash a part/start a party. I am close to moving to G API if documentation for VE keeps being that poor. Any chances for the spources to be loacted someplace as work in progress 00ps, i apologize for makin fun on you, Tomek, i thought you are just talking bullsh1t Yeah, DJ Tomek, move to google maps, the VE Community doesnt need such a damn cool party crasher like you! So what is this then http://www.microsoft.com/downloads/details.aspx FamilyId=F44F9AC4-EBF5-4CB1-A696-352FA5D5B5A3&displaylang=en John. Ah, I've missed your posts Jeff! Yeah I bothered to even enter it into google and only got this post and some bartending site! But seriously unles ...Show All
barryt Problem - data undefined
I cant get the gadget to work. I did what the instructions said but cant get it to work http://www.izonnet.se/msntest.php/ Hi, i cant download the http://dev.live.com/scripts/AddressManager/channel.htm file, when I try to download it, it shows me a blank page. it still doesnt execute even though that I've edited out that error. whats wrong I meet some trouble too: http://kenico.free.fr/livemess/test.php Display seems to be ok, I can select contact, but when I send information, nothing happen. I think the issue is from the channel.htm file, cause with or without, the behavior is the same. The channel.htm file is in the same ...Show All
Grotius process on cf 2.0 ???
hi, i need make a listview with all the process running on a pocket, but i had read very much information about process, launch with process.start.....but i don’t know how to make a list of process on memory on cf, because the Diagnostics.Process.GetProcesses.GetEnumerator isn’t not to cf. i need list this process because i think select any to kill him, and win memory to my program On my aplicattion the user can launch some another programs, like wor, excel...but i need close and dispose of memory when the user "close" word or excel. any idea thanks. You can use this even though it's designed for NETCF V1: http://msdn.microsoft.com/library/default.asp url=/library/e ...Show All
UniRyan Max zoom out or zoom in parameters?
Is there a way to set the max zoom-put or zoom in MAP parameters Yeah, the zoom control works but only after it's zoomed past a max or min, then zooms back in or out. Not perfect. If we knew if the user wants to zoom in OR out we could catch it onstartzoom instead of onendzoom. Thoughts Unfortunately, e.view.zoomLevel only returns the current zoom level. So if you use an onstartzoom it gives you the current zoom prior to clicking... onendzoom gives you zoom after the click. So it's doesn't tell you which way your going. :( If we knew the ID of the button zoom element or something maybe we could at something to it... If you use a cuztom zoom in and zoomou ...Show All
Nikhil Doshi Stop flickering
Does anyone know a way of eliminating flickering in a pocket pc's picture box I guess double buffering would be the answer but the examples I've seen are always to the entire Form, and not to a picture box. Thanks! Create a custom control that inherits from PictureBox. Override OnPaintBackground() and do nothing. Note, this should work if the image you are displaying takes the entire PictureBox client area. If you are displaying different sized images in your picture box, you'll need to do some paint logic, probably in your OnPaintBackground override. ...Show All
