Search:

Type: Posts; User: petevick

Page 1 of 13 1 2 3 4

Search: Search took 0.13 seconds.

  1. Re: Would you participate in a community project?

    Happy to help
  2. Re: Report this postReply with quoteHow to sync DB in windows mobile app with SQL CE

    SQLCe has replication to SQL Server built in - http://msdn.microsoft.com/en-us/library/ms151198.aspx
  3. Re: Report this postReply with quoteHow to sync DB in windows mobile app with SQL CE

    You can sync using replication.

    Are you sure you aren't using the desktop dll's on your device - this looks to be the likely culprit
  4. Re: Difference between Pocket PC 2003 and WM 6.5 runtime?

    Hi,
    it sounds as though the application is still running when the updater tries to update it.

    They do a hard reset in code? I don't think you can do a hard reset in code in 6.5 - they have leaped...
  5. Replies
    1
    Views
    1,182

    Re: several wm questions

    Hi,
    if you can't load sms.dll then this suggests it is a PocketPC without a phone - sms.dll comes when a PPC has phone capability

    Pete
  6. Replies
    9
    Views
    1,568

    Re: want to learn android programming

    Tools for writing apps
    Native development for Android is Java
    Native development for iPhone is Objective C
    Native development for Windows Phone is c#/VB.Net

    The above tools help target all...
  7. Replies
    9
    Views
    1,568

    Re: want to learn android programming

    See Post 2
  8. Replies
    9
    Views
    1,568

    Re: want to learn android programming

    No - sorry
  9. Replies
    9
    Views
    1,568

    Re: want to learn android programming

    Mono seems the most popular - but not PHP/MySql - sorry.
    There are Mono, PhoneGap, NS Basic, RhoElements, AppCelerator and others
  10. Re: Font problem on windows mobile 6.5?

    Generally you are better sticking to the native fonts - Tahoma is the one most used on Windows Mobile

    Pete
  11. Replies
    6
    Views
    3,862

    Re: Controlling Camera Flash in WP 7.5

    Hi,
    people have done it in flashlight applications, but I think they do it by constantly turning the camera on and off, although looking at Zune for flashlight apps, that appears to be cured
  12. Replies
    6
    Views
    819

    Re: Expert help please !!

    Hi,
    unless Oracle do a WM Client, you will need to use web services or a 3rd part solution (such as our SqlLinkCE - http://www.gui-innovations.com/html/sqllinkce.html :) )

    Pete
  13. Replies
    6
    Views
    819

    Re: Expert help please !!

    What database?
    You can connect to SQLServer using the SQLClient namespace
  14. Re: WP7 PivotTables PanoramaPage Transitions Slow performance

    If you have a large number of pages in the panorama - it will take time.

    Try a test with a one page panorama and then start increasing
  15. Replies
    5
    Views
    2,342

    Re: WP7 - OnBackKeyPress Dispose()?

    Hi,
    if it is opening pages you navigated through to get to the panorama page - that is correct. The back key should always take you to the screen you came from, and the back key on the main page...
  16. Replies
    5
    Views
    2,342

    Re: WP7 - OnBackKeyPress Dispose()?

    Forms should be closed automatically when the back button is pressed - and objects disposed of.
    Are you talking about forms here, or panorama pages?

    the OnNavigatedFrom event is fired when you...
  17. Re: WP7 PivotTables PanoramaPage Transitions Slow performance

    Is this on a device or an emulator?
    Panorama do take a lot of memory, depending on the background.

    Start simple - is that slow then?
  18. Re: Draw movable circle\ellipse using vb.net and Silverlight

    Lookup the '<Canvas> directive in Silverlight, or try playing around in Expresion Blend
  19. Replies
    2
    Views
    737

    Re: Simple things for WP7?

    I dont know of any controls like that exactly like that.

    Download the Silverlight control toolkit if you haven't already (http://silverlight.codeplex.com/) and the Coding4Fun stuff...
  20. Replies
    5
    Views
    2,854

    Re: Windows CE 6 Registry flush issues

    how are you doing the registry entries - via the installer cab file?

    Is it worth adding /confignotify and possibly removing /noui to make sure it isn't doing any prompting?

    Have you checked...
  21. Re: Connecting remote db from .net CF application via (device)

    Hi,
    try dropping the firewall temporarily and see if that helps
  22. Re: Connecting remote db from .net CF application via (device)

    You can use a web service but you would probably have to write it.

    You should be able to get a connection from your device - I have used devices to access SQL Servers on the network and over GPRS...
  23. Replies
    10
    Views
    3,225

    Re: Setting Key State

    Search the motorola site for EMDK - their development SDK. The latest verion for .Net is 2.5

    There are loads of sample apps included
  24. Re: What are main differences between CE.net 5.0 and Win Mobile 6.5?

    The link you point to doesn't mention Compact Framework - but I don't know a definitive answer
  25. Re: What are main differences between CE.net 5.0 and Win Mobile 6.5?

    It shouldn't be too bad then - just make the decision in code what to do.

    Daniel Moths article on sharing code between device and desktop may help -...
  26. Re: Connecting remote db from .net CF application via (device)

    Hi
    yes - look at the connection threads in the search link I gave you - it goes through all the problems - honest :)

    Pete
  27. Re: Connecting remote db from .net CF application via (device)

    I THINK you may need an IP address, and you may not need SQL Express - read the connection thread - it should sort you out
  28. Re: Connecting remote db from .net CF application via (device)

    HP-PC\SQLEXPRESS was my SQLServer name and 39250 was the port number I used on TCP/IP

    Just use your own database - are you using SQLExpress of full SQL Server?

    If you look at the search thread...
  29. Re: What are main differences between CE.net 5.0 and Win Mobile 6.5?

    Depends on the version of CE - 4.2 doesn't have the connection manager for example.

    It is possible to use the same code base as I said before. Identify your platform when you start, and set a...
  30. Re: Connecting remote db from .net CF application via (device)

    http://www.vbforums.com/showthread.php?t=583497&highlight=connect+sqlserver should tell you a lot of what you need

    Also an (old) link to an article I wrote a while ago on using SQL Client
  31. Re: What are main differences between CE.net 5.0 and Win Mobile 6.5?

    Hi,
    I am not clear - is it running Windows CE or Windows Mobile (Pocket PC)?

    Either way, it is possible to use the same code base to target Windows CE and PPC, although there are a few...
  32. Re: Connecting remote db from .net CF application via (device)

    Hi,
    you can't connect to an Access db, but using the SQLClient namespace, you can connect to the SQLServer 2008 database.

    There are answers on here showing you how to connect
  33. Re: transfer code written in Windows CE 5.0 to Pocket Pc(Samsung Galaxy Tab)

    The native kit is http://developer.android.com/sdk/index.html

    Google for Appcelerator, Mono etc., some of which come at a cost
  34. Re: transfer code written in Windows CE 5.0 to Pocket Pc(Samsung Galaxy Tab)

    Well - why not ask him :)

    There ARE applications that should produce code that runs on multi-platform (appcelerator, mono), but you can't run applications written for PocketPC/Windows CE on an...
  35. Replies
    3
    Views
    3,533

    Re: Get serial number and model number

    That should be it - it should work as is.
  36. Replies
    3
    Views
    3,533

    Re: Get serial number and model number

    Hi,
    try this...

    Imports System.Text
    Imports System.Runtime.InteropServices
    Imports System.ComponentModel

    Public Class frmMain

    Declare Function KernelIoControl Lib "CoreDll.dll" ( _
  37. Replies
    10
    Views
    3,225

    Re: Setting Key State

    Telerik code convertor suggests:-


    DeviceIoControl(hKPD, IOCTL_SET_KEYPAD_STATE, (LPVOID) And setState, sizeof(setState), 0, 0, _
    NULL, NULL)
  38. Thread: Phone Express

    by petevick
    Replies
    3
    Views
    1,410

    Re: Phone Express

    Hi,
    as I said - for phone tools, the C# edition is free, but I don't think it would integerate with Visual Basic Express 2010. If you want to use VB to develop for phone, it is only available as an...
  39. Thread: Phone Express

    by petevick
    Replies
    3
    Views
    1,410

    Re: Phone Express

    The link seems just to go to VB Express so I presume you want to add the phone development tools to the installation?

    If you want to use VB to develop on the phone, you need 2010 Professional...
  40. Re: [RESOLVED] Error Unable to evaluate expression using NavigationContext.QueryStrin

    Glad you got it sorted :)

    I would advise putting code in the 'Page_Loaded' event, as it is much safer
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width