Search found 126 matches

by pawelu
Fri Apr 27, 2012 4:16 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Porting FWPPC app to iPhone
Replies: 1
Views: 1051

Porting FWPPC app to iPhone

Antonio,
It's possible port FWPPC database application to iPhone platform ? What tools is needed ?
Thank for your reply.
Pawel
by pawelu
Tue Sep 25, 2007 5:24 am
Forum: FiveWin for Pocket PC
Topic: Advise
Replies: 5
Views: 2282

Colin, You may use free Pelles C IDE to create dialog for Pocket PC. When you run your applications real device is good choice to test them. In my projects default font is System 10. This is larger font than default (8) but it's more readable for users. Sample dialog: #include "c:\vce\include\a...
by pawelu
Fri Jun 15, 2007 10:14 am
Forum: FiveWin for Pocket PC
Topic: Combobox and database
Replies: 9
Views: 2167

Antonio,

Yes, please.

Thanks
Pawel
by pawelu
Fri Jun 15, 2007 9:22 am
Forum: FiveWin for Pocket PC
Topic: Combobox and database
Replies: 9
Views: 2167

Combobox and database

Antonio,

Is this possible to use combobox control with database alias (one or more character fields) where items are read from database ?

Thanks
Pawel
by pawelu
Wed Mar 21, 2007 4:54 pm
Forum: FiveWin for Pocket PC
Topic: Window CE
Replies: 1
Views: 1072

Hoe,

Windows Mobile is little diffrent from Windows CE but FWPPC works great on WM 2003, WM 5 and WCE 4.20, WCE 5.00.

Regards
Pawel
by pawelu
Wed Mar 14, 2007 4:45 am
Forum: FiveWin for Pocket PC
Topic: Using archives ZIP
Replies: 25
Views: 9380

Richard, Alternative way to use compress send data is rsync based transfer. My program MoBi using this method works very good. Compress ratio for DBF and FPT file is ca 10 times and better. Youn don't need compress data to zip or other format before transfer but you need accesible address on interne...
by pawelu
Thu Mar 08, 2007 2:01 pm
Forum: FiveWin for Pocket PC
Topic: Error when compiling HB_FUNC (GPRSCONNECTION) of Pawelu
Replies: 10
Views: 5405

Vilian,

Try to compile this code with -TP switch.

Pawel
by pawelu
Tue Mar 06, 2007 11:10 am
Forum: FiveWin for Pocket PC
Topic: Dialog title
Replies: 6
Views: 2415

Antonio, Is there a method to set focus to dialog control ? In window this command work as expected: Activate Window oWnd On Init oCtl : SetFocus () In dialog focus is set to first control with WS_TABSTOP message. Command: Activate Dialog oDlg On Init oCtl : SetFocus () don't move focus to oCtl cont...
by pawelu
Tue Mar 06, 2007 9:08 am
Forum: FiveWin for Pocket PC
Topic: Dialog title
Replies: 6
Views: 2415

Enrico,

Method cTitle() doesn't exist in dialog and window source. SetText() exists but doesn't work for second dialog call.

Regards
Pawel
by pawelu
Tue Mar 06, 2007 7:53 am
Forum: FiveWin for Pocket PC
Topic: Dialog title
Replies: 6
Views: 2415

Dialog title

Antonio, How to set to second dialog title ? When second dialog is loaded, dialog title doesn't change. Regards Pawel // prg file #Include 'FwCe.Ch' Function Test1 () Local oDlg := Nil Define Dialog oDlg Resource 'TEST1' ReDefine Button Id 1001 of oDlg Action Test2 () Activate Dialog oDlg On Init Dl...
by pawelu
Sun Mar 04, 2007 10:21 am
Forum: FiveWin for Pocket PC
Topic: Dialog with menu
Replies: 1
Views: 1226

Dialog with menu

Antonio, I'm trying to create fullscreen dialog with menu. When menu is set to dialog window, push button in dialog doesn't work. Buttons in dialog without menu works ok. What is wrong in my code ? Thanks Pawel // prg file #Include 'FwCe.Ch' Function TestDlgm1 () Local oDlg := Nil Local oMnu := Nil ...
by pawelu
Thu Mar 01, 2007 7:55 pm
Forum: FiveWin for Pocket PC
Topic: MenuItem with Checked clause
Replies: 2
Views: 1207

Antonio,

Checked menu type is possible or not ?

Thanks
Pawel
by pawelu
Wed Feb 21, 2007 7:37 pm
Forum: FiveWin for Pocket PC
Topic: MenuItem with Checked clause
Replies: 2
Views: 1207

MenuItem with Checked clause

Antonio,

Is this possible work with menu this type.

Thanks
Pawel
by pawelu
Tue Jan 23, 2007 8:47 am
Forum: FiveWin for Pocket PC
Topic: Kill Process at end of program ?
Replies: 6
Views: 2379

Richard,

Add your source tlhelp32.h and link app with toolhelp.lib.

Regards
Pawel
by pawelu
Sun Jan 21, 2007 7:40 pm
Forum: FiveWin for Pocket PC
Topic: Kill Process at end of program ?
Replies: 6
Views: 2379

Richard, I use this code for testing "sleep" program process. Regards Pawel #define MAX_TASKS 256 #define PROCESS_SIZE 128 #define TITLE_SIZE 64 typedef struct _TASK_LIST { DWORD cntUsage; DWORD dwProcessId; DWORD dwInheritedFromProcessId; DWORD cntThreads; DWORD th32ModuleID; DWORD th32De...