VoiceIt Technologies, LLC

Web Based Support
It is currently Tue Sep 07, 2010 10:24 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Calling other Palm Programs inside a PS2 Program
PostPosted: Mon May 16, 2005 2:50 pm 
Offline

Joined: Mon May 16, 2005 2:39 pm
Posts: 1
Location: Brazil
Hello.

Please is there any code to input in a program to call another Palm program (i.e. a personal app written in PS2 calling Dataviz Excel to Go)?


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 24, 2005 1:12 am 
I haven't tackled this myself, but you need to access the Palm system call

SysAppLaunch

Good luck.


Top
  
 
 Post subject: Try This
PostPosted: Wed Sep 14, 2005 9:47 pm 
procedure FindAndLaunchByName(Name: PChar; launchCode: Word; CmdPBP : Pointer);
var
CardNo : UInt16;
// ListPrefs : ListPrefsPtr;
DBid: LocalID;
//Status : Err;

begin
//
CardNo := 0;

DBid := DmFindDatabase(CardNo, Name);

if DBid <> 0 then
begin
if CmdPBP <> nil then
SysUIAppSwitch (0, DBid, launchCode, CmdPBP)
else
SysUIAppSwitch (0, DBid, launchCode, nil);
end
else
begin
showmessage('could not find app fallback');
if FindAppDB(SFACreator,Name,DBid) then
SysUIAppSwitch (0, DBid, sysAppLaunchCmdNormalLaunch, mPowerCtx);
end;
end;


Top
  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group