Error on Win CE 5.0

Post Reply
Wolfgang Ciriack
Posts: 37
Joined: Sun Aug 03, 2008 8:02 am
Location: Germany, Berlin

Error on Win CE 5.0

Post by Wolfgang Ciriack »

Hi,
i get the error
Cannot find "program.exe" (or one of its components). Make sure the path and filename are correct and that all the requiered libraries are available.
on an PC with Windows CE 5.0 and Marvell XScale-PXA320.

My program runs fine on Windows Mobile 5/6.

What do i have to change - if possible - to run my program on this machine ?
(I have tried to compile with /SUBSYSTEM:WINDOWSCE,4.20 /MACHINE:THUMB, but this does not work, too)

Regards Wolfgang
Best regards
Wolfgang Ciriack
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Error on Win CE 5.0

Post by Antonio Linares »

Wolfgang,

Please build and run this test:

Code: Select all

// FiveWin for Pocket PC - Hello World! sample
#include "FWCE.ch"

//----------------------------------------------------------------------------//

function Main()

   MsgInfo( "Hello World!", "FiveWin for Pocket PC" )
   
return nil

//----------------------------------------------------------------------------//

// Add these functions for Windows CE
function CeSetmenu() ; return nil
function GetMenu() ; return nil
function ReadBitmap() ; return nil
function PalBmpRead() ; return nil
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply