Software Development Network Logo
  • Visual Basic
  • Microsoft ISV
  • Audio and Video
  • Visual C++
  • Windows Vista
  • IE Development
  • Game Technologies
  • Visual C#
  • Visual Studio
  • .NET Development
  • Smart Devicet
  • SQL Server
  • Windows Forms
  • Visual FoxPro
  • SharePoint Products

Software Development Network >> Smart Devicet

Smart Devicet

New Question

Encryption And Decryption
Windows Mobile 2005, keyboard
How to determine if phone has SMS capability?
Pocket PC applications
An alternative to Netshareadd
Mega Cluster logic
Any examples of new SDK's custom tile layer, but loading a mapcruncher created layer instead of the custom tile layer?
page close button if browse from emulator ie.
How to pair my Windows Mobile 2003 with GPS Bluetooth Device programmaticaly
Problems to open PR_BODY message property - CEMAPI

Top Answerers

Hamez
DKB
nigel.uk
killerless
levi.rogers
Blueforce
TopperDEL
DreamingBear
R Raghu
Ibrahim Hamouda
sitemap
Only Title

Answer Questions

  • AlexBB VS .NET to VS.NET 2005

    I have a problem with the conversion of dates after migrate of VS.NET 2003 to VS.NEt 2005 Test: Dim oDate As DateTime = DateTime.Parse(oDst.Tables(0).Rows(1).Item("mydate").ToString()) Error: invalidcastexception ..... In my project of vs.net 2003 worked well that code I sorry for my inlges ... i speak spanish Thanks. Please create new thread for each new question. Use correct forum, in this case that would be SQL CE forum. Thanks Ryan .... work!!!!!!! Assuming your column holds DateTime already please try this: Dim oDate As DateTime = CType(oDst.Tables(0).Rows(1).Item("mydate"), System.DateTime) Also keep in m ...Show All

  • MMDG Winmobile 5.0 Emulator & DHCP Connection

    Hi, We are currently developing application using WinMobile 5.0 SDK for Pocket PC using Visual Studio 2005 and Device Emulator 1.0. Everything was working fine till now and the emulator on startup used to get the IP address from the DHCP Server. But all of a sudden, the emulator has now stopped getting IP address from the server. As a workaround I have done the following to fix the problem but no avail: a) Checked the DHCP server, It is working fine. b)Cleared the saved states from the Device Emulator manager. c) Deleted the Device Emulator directory from all users profile. d) Reinstalled the Virtul network driver(netsvwrap.msi) and Winmobile 5.0 SDK for pocket pc. But the problem is not solved. If I assign the I ...Show All

  • Silent.Killer List like Contact list

    Hello, I'd like to create a list like the contact list in Windows Mobile (more than 1 line by item). Does somebody have an idee how to do that. CF 2.0, on Windows Mobile 5.0. Ownerdraw is not supported by CF for listview. Thanks JF Hi JF As .NET CF 2.0 does not support Owner drawing out of the box you'll have to create your own implementation: Here is a sample how to do this: http://www.opennetcf.org/PermaLink.aspx guid=d88b1a1a-a866-4247-a0c8-94ab3c124f63 The OpenNETCF.org SDF v1.4 provides a base class you could use to implement this. Hope this helps Michael ...Show All

  • VSUser2k5 WCELOAD & NETCFv2.wm.armv4i.cab

    I am trying install NETCFv2.wm.armv4i.cab using WCELOAD with "/SILENT" via CreateProcess. I am unable to WaitForSingleObject or GetExitCodeProcess as this cab remains ' STILL_ACTIVE' indefinately. I have done this many times for other Cab installs, without any issues. The only difference i am aware of with NETCFv2.wm.armv4i.cab is that you receive a message 'You must restart the device to complete installation' , if you run this manually. I want to avoid using a 'poke &hope' timer on the GetExitCodeProcess. Can another suggest a way i can monitor the CreateProcess'es completion No, I don't believe /silent is correct for WM 5.0 and I think article is curren ...Show All

  • M. Shariq Muzaffar Retrieving Path of the file

    Hi Friends, I am presently using the path like "\\Program Files\\Images\\image001.gif" But If my application get install on memory card, path may get change. How can we know the path programatically. Thanks in Advance, You can add the image as embedded resource and use like this, Bitmap bannerImage = new Bitmap(Assembly.GetExecutingAssembly(). GetManifestResourceStream("Images.Banner.gif")); pictureBox1.Image = bannerImage; Hi, Thanks for your response. I will place my images in my application folder when I deploy and want to use the path something like "..\\Images\\1.gif" but its not working. Can ...Show All

  • jwhansen updating a progressbar from a Thread

    Hi, I have a class to do the socket communication. is it possible to launch a thread to process the socket communicaiton and in the same time update a progressbar in another form. I would appreciate a sample code if possible. Thanks in advance. The process of connecting does not stop on opening a port but it also includes sending a set of SIP messages and registering with the server. So what I want to do is to manually increment the progoressbar.value by 10 after performing each step. Opening a port +10 Sending a request to Login +10 receiving a successful request +10 then SIP messages... Sending a Register request +20 Receving successful 30 something like that. I do not know if t ...Show All

  • MJC2006 Type.GetConstructors() - InvalidProgramException on CF, works fine on the standard framework

    I have a piece of generated code that the CF (2.0SP1, August patch) just won't accept. The code is working just fine on the big framework, but mscorlib in CF gives me an InvalidProgramException. The context of the call to Type.GetConstructors(): protected virtual object CreateInstanceWrapper(Type type, params object[] args) { object instance; #if !CF instance = Activator.CreateInstance( type, args ); #else ConstructorInfo constructor; Type[] argTypes; argTypes = GetTypeArray(args); constructor = type.GetConstructor(argTypes); if (constructor == null) throw new ArgumentException("There is no matching constructor"); instance = Activator.CreateInstance(type); constructor. ...Show All

  • p_shah Use VB2005, the command for a WM5.0 device program that needs to download a file

    Hello, I have a small program that runs on a smart device that needs to download a text file from an ftp site on the Internet. I can't seem to find the command to do that; can anyone help me Thank you You shouldn't give up. Just download the current build of OpenNETCF SDF from http://www.opennetcf.org/getfile.asp file=SmartDeviceFramework20&dir=bin and use the OpenNETCF.Net.FTP class. IT should be fairly easy Thank you sir. I have already done that as per Mr. Tumanov's recommendation. I still have much to learn and I am not going to give up; just get extremely frustrated at time but who does not. Let me take this space to rant a tiny bit about Microsoft. I say 'tiny' because I am absolutely flummoxed by the ef ...Show All

  • aguess Receive data from a web server in Compact Framework

    I'm developing an application for a PDA and i want to read a text file (that i have uploaded on a web server) and store every line in a String Array on the PDA. In .NET Framework, it can be easily done with webclient class but Compact Framework doesn't support this class. How can i receive/open a file uploaded on a server in Compact Framework Thanks, Socrates On NETCF it's done by using HttpWebRequest class. This is a common question, please search or look it up on MSDN if you'd like a sample. ...Show All

  • ultek Cross-thread operation not valid

      Hi, I am have a chatting application. I try to write the received messages to a text box but I got the following error: "Cross-thread operation not valid: Control 'textBox4' accessed from a thread other than the thread it was created on." How can I solve that Thanks in advance. There's no such message on NETCF (there’s a similar one) so either you using 3 rd party control or you’ve posted to the wrong forum. Anyway, it means you have to use Control.Invoke to access UI controls from worker thread.   That was discussed countless times, so search would reveal an answer it you don't know what Control.Invoke is or how to use it. MSDN article on Control.Invoke ...Show All

  • Bernd Wechner Simultaneous GPRS & GSM on Class A device (part 2)

    Hi all! Apparently, an admin locked my previous thread on the subject . I'm not a native English speaker, & I don't live in America either. I'm still wondering something that wasn't answered in the previous thread, & that is not off subject of the theme of this forum. As I said before, I haven't bought any device yet, & the software I'm planning to code is still in the state of project. Let's suppose I have a Class A peripheral, & that my phone provider supports simultaneous GPRS & GSM too, I guess my software to be working both the Windows Mobile 5 (or more) Operating System & the .NET Compact Framework v2 SP1 have to support simultaneous GPRS & GSM too. If either of them don't support it, it will never work, ...Show All

  • AratiR 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. I'm running FF 2 RC2 and the following works for me: try{ map.LoadMap(new VELatLong(-34.92, 138.59),11,VEMapStyle.Road,false); }catch(e){ //Browser does not support SGV or VML } Just by adding a try/catch statement around the LoadMap method allows the exception to get caught, ...Show All

  • Tamila location of os sample GeoRSS XML file

    Can someone provide a link to a sample GeoRSS XML file. I want to see if my code is working Maybe the VE team should keep a sample file permanently available for developer to test against. jerry Okay I'm assuming you've already implemented the Firefox hack on the wiki.  After trying to duplicate it on my machine, I'm seeing this error off of firebug: Permission denied to call method XMLHttpRequest.open Apparently this is caused by an un-signed script in a Mozilla based browser.  Namely when trying to use XMLHttpRequest (from calling the veLayerSpec.LayerSource) off a remote computer.   I'd recommend looking this up further on google or check out the following l ...Show All

  • swine How To Define Global Variable?

    Hi, I want to define a global variable which can store information like Database Connection String and can be accessed accross all the forms and classes in my application. While loading the application, I would like to set this once and then use it throughout my application. How to do this Also, what is the use of Resources.resx and AssemblyInfo.cs files in the application Can they be of any use Regards, Suman I use structs for my defines and globals. Just declare a struct like this outside any existing class but still inside the namespace: public struct Global { public const int aDefine; public int aVar; } Then when you want to use that variable or define in any class you just write a line like this: G ...Show All

  • Heenix How to iterate an ArrayOfAdCenterAccount and/or an ArrayOfAdCenterCampaign?

    Hi there, I am wondering how I can iterate such types of objects. I need to get all my accounts and for each of those accounts, retrieve all the campaigns and ask for a keyword performance report. It is nice to have get an ArrayOfAdCenterAccount but I don't see any method to get the size of this array or how I can instanciate an iterator over this array in order to get all the account ids. The same for the ArrayOfAddCenterCampaign. From an AdCenterAccount, I can retrieve the ArrayOfAddCenterCampaign. But for getting a keyword performance report of these campaigns, I have specify an ArrayOfInt with the campaign ids. Once again, how do I instanciate an ArrayOfInt from the ArrayOfAdCenterCampaign Did I miss a point or are such methods not a ...Show All

454647484950515253545556575859606162

©2008 Software Development Network

powered by phorum