Search found 33 matches

by yardenmo
Thu May 06, 2010 9:25 am
Forum: FiveWin for Pocket PC
Topic: BEEP() / TONE()
Replies: 1
Views: 584

BEEP() / TONE()

Hello,

When I use Tone() in my application I get a message: "not implemented yet"

Is there other way create a tone alarm?


Thanks,
Moshe Yarden
by yardenmo
Wed Nov 18, 2009 10:50 am
Forum: FiveWin for Pocket PC
Topic: garbage collector?
Replies: 6
Views: 1454

Re: garbage collector?

Antonio,

Thanks a lot.

I'll check it all.

Regards,
Moshe Yarden
by yardenmo
Wed Nov 18, 2009 10:35 am
Forum: FiveWin for Pocket PC
Topic: garbage collector?
Replies: 6
Views: 1454

Re: garbage collector?

Antonio,

Thanks. I'll add it.
Is there a full list of FWPPC FUNCTIONS?
FTP between PPC and PC using GPRS, and automatic internet open: had it been added to the samples?

Regards,
Moshe Yarden
by yardenmo
Wed Nov 18, 2009 9:46 am
Forum: FiveWin for Pocket PC
Topic: garbage collector?
Replies: 6
Views: 1454

garbage collector?

Hello, It happens that there is a need to reset the PPC before running again the FWPPC application. After closing the application if I try to copy a new version of the application from the PC to the PPC it can be done just after reseting the PPC. Or, when trying to run the application again there is...
by yardenmo
Sun Jan 25, 2009 12:28 pm
Forum: FiveWin for Pocket PC
Topic: SAY <--> REDEFINE
Replies: 3
Views: 590

Re: SAY <--> REDEFINE

Hi Antonio,

Thanks.
Now it works very good.


Regards,
Moshe Yarden
by yardenmo
Sun Jan 25, 2009 10:24 am
Forum: FiveWin for Pocket PC
Topic: SAY <--> REDEFINE
Replies: 3
Views: 590

SAY <--> REDEFINE

Hi, 1. Is there a way to change/redefine the prompt of a SAY? 2. The REDEFINE cmnd: is it just to redefine a resource SAY? I'm trying to change the prompt of the SAY in: @ 4, 0 SAY oSay1 PROMPT cImpExp OF oWnd @ 4, 13 SAY oSay2 PROMPT cManifest OF oWnd @ 4, 27 SAY oSay3 PROMPT cDschLoad OF oWnd The ...
by yardenmo
Sun Jan 25, 2009 6:07 am
Forum: FiveWin for Pocket PC
Topic: FONT samples
Replies: 2
Views: 479

Re: FONT samples

Thanks. I've tried it, and it works nice.
by yardenmo
Fri Jan 23, 2009 12:57 pm
Forum: FiveWin for Pocket PC
Topic: FONT samples
Replies: 2
Views: 479

FONT samples

Hi,

Where can I find a sample for using FONTS?


Thanks,
Moshe Yarden
by yardenmo
Fri Jan 23, 2009 12:49 pm
Forum: FiveWin for Pocket PC
Topic: Change BOX content
Replies: 4
Views: 680

Re: Change BOX content

Thanks EMG, Now it is shown. I've used row and column like in BTNBMP. I'm trying to use the SAY and then redefine it (with each click, on another button) When trying: @ 4, 10 SAY oSay cManifest OF oWnd COLOR nRGB( 255, 255, 255 ), nRGB( 0, 255, 0 ) I receive: "syntax error at '@'" Using SA...
by yardenmo
Fri Jan 23, 2009 9:30 am
Forum: FiveWin for Pocket PC
Topic: Change BOX content
Replies: 4
Views: 680

Re: Change BOX content

Hi, If I need just to show a string somewhere on the screen, how can I use the SAY command? I'm trying: @ 0, 0 BTNBMP NAME "setup" SIZE 40, 30 OF oWnd ACTION TalySetupMain() @ 0, 40 BTNBMP NAME "DschLoad" SIZE 40, 30 OF oWnd ACTION TalyHeadMain() @ 0, 80 BTNBMP NAME "shfting...
by yardenmo
Fri Jan 23, 2009 9:04 am
Forum: FiveWin for Pocket PC
Topic: Automatic ASORT()?
Replies: 3
Views: 558

Re: Automatic ASORT()?

Thanks. It works good.

Moshe Yarden
by yardenmo
Thu Jan 22, 2009 7:34 pm
Forum: FiveWin for Pocket PC
Topic: Change BOX content
Replies: 4
Views: 680

Change BOX content

Hi, On a main screen that shows few buttons, I need to create another button which, when clicking it, it will show another permanent BOX / SAY with a string. Each click changes the string in the box from "DISCHARGE" <--> "LOAD". I don't want to draw all the screen on each click, ...
by yardenmo
Thu Jan 22, 2009 7:16 pm
Forum: FiveWin for Pocket PC
Topic: Automatic ASORT()?
Replies: 3
Views: 558

Automatic ASORT()?

Hi,

In:
REDEFINE COMBOBOX o[ O_INCD_RECORD ] VAR v[ O_INCD_RECORD ] ITEMS aIncdRecord ID ID_INCD_RECORD OF o[ O_DLG_GET_INCD ]

From some reason the array, aIncdRecord , is sorted automatically. I don't need it sorted. How can I omit it?


Thanks,
Moshe Yarden
by yardenmo
Mon Sep 22, 2008 12:07 pm
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2586

Thanks.

With : IF( EMPTY( aArray ), "", aArray[ 1, nCur ] ),;
It doesn't give error, however it shows just 3 records when there are about 180.

I changed to use 3 arrays and it looks ok now.


Thanks again,

Moshe Yarden
by yardenmo
Mon Sep 22, 2008 8:32 am
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2586

Antonio and EMG, Thanks. With: SELECT Nombre FOR "Laureano" TO "Paco" Can the SELECT / FOR be with more than one field? like: FistName + FamilyName I was trying EMG's example for arrays. It works good. My problem is with the multi dimensional array filled from a data base. I'm tr...