Search found 60 matches

by Eugeniusz Owsiak
Tue Apr 11, 2006 9:21 am
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio,
Nothing better
Program stop at resolving GetHostByName()

At emulator it works and I get number '127....'

Regards
Eugeniusz
by Eugeniusz Owsiak
Tue Apr 11, 2006 8:13 am
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio,
on PPC is the same result
GetHostName() -> WM_Administr2 -> ok
GetHostByName('WM_Administr2') hung up PPC

Regards Eugeniusz
by Eugeniusz Owsiak
Mon Apr 10, 2006 9:21 pm
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio,
We are a little piece closer to final.
The next stop is

Code: Select all

  ::cIPAddr  = GetHostByName( GetHostName() )
When I make this ::cIPAddr := '192.168.1.146'
the program works

BTW to compile winsock.c I need fwce.h

Regards Eugeniusz

PS My probe is doing on pair PC (WinXP) and iPaq hx2790
by Eugeniusz Owsiak
Mon Apr 10, 2006 11:58 am
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio, WSAStartup() return 0 -> ok socket(2,1,0) return 1 -> ok oSocket:connect('192.168.1.2') hang up PPC (20 sec) and terminate with no message. In winsock.c is #include <WinSock.h> maby it should be <WinSock2.h> BTW can You send me how can I compile winsock.c to obj I have several errors Regard...
by Eugeniusz Owsiak
Mon Apr 10, 2006 9:03 am
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio, I think I found a reason. Can You recompile winsock.c with some changes? //----------------------------------------------------------------------------// CLIPPER WSASTARTUP( PARAMS ) { WSADATA wsa; _retni( WSAStartup( 0x202, &wsa ) ); //was 0x101 } WSAStartup(0x101,&wsa) -> call win...
by Eugeniusz Owsiak
Fri Apr 07, 2006 11:25 pm
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio,
The same socket server on Win 2000 server, 2 different client program:
1. eVC++ -> works
2. FW PPC -> I get no connection

Regards
Eugeniusz

PS I must have something to digg in winsock2 to understand how it work.
by Eugeniusz Owsiak
Fri Apr 07, 2006 8:57 pm
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Antonio, It works properly when socketserver is located on PC and socketclient is on PPC. I just rewrite my socket client aplication and execute on PC connected via LAN to Win 2000 serwer with socket server program - it connect properly as I expect. I cannot understand why it dont work in pair PPC -...
by Eugeniusz Owsiak
Thu Mar 30, 2006 4:01 pm
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio,

This piece of program on WM 5.0 (shared SD) and on my Pocket PC connected via WiFi to my computer return 'no'.
So emulator work properly just like PPC.

regards
Eugeniusz
by Eugeniusz Owsiak
Thu Mar 30, 2006 10:45 am
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio,

> If we can not assign it then we can not open a DBF located there

But path mapping works and I can execute exe with opening a dbf file in share mode on a 'net disk'. This is all I want to get testing procedures with file shering

regards
Eugeniusz
by Eugeniusz Owsiak
Thu Mar 30, 2006 9:25 am
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio, Emulator WM 5.0 is instaled and work perfectly. :P I can map path of my computer thru the option "Configure" in menu "File" and open it from "Storage Card" like in previous version of emulator. Behavior of program executed this way is the same like on realy PPC...
by Eugeniusz Owsiak
Thu Mar 30, 2006 5:58 am
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio,
I have some trouble with instalation WM 5.0 emulator on my computer.
I have downloaded a Windows Mobile 5.0 Pocket PC SDK.msi but at instalation time I get error.
Can You send me USA_PPC.bin (if it is not to big )

regards ,
Eugeniusz
by Eugeniusz Owsiak
Wed Mar 29, 2006 8:56 pm
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio, On my PocketPC I can map any path of my LAN computer. I use TotalCommander for PPC or simply File Explorer - it has ability do make net path mapping. So I open both exe file and dbf file from PPC on LAN. USE (CurDir()+"\dbffile") new shared alias wd if wd->(rLock()) wd->field1:=&q...
by Eugeniusz Owsiak
Wed Mar 29, 2006 6:30 pm
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio,
Maby I do something wrong, result is the same.
rLock(), fLock() return .F. :(

Have anybody pocketPC with WM 5.0 to help us testing?

regards,
Eugeniusz
by Eugeniusz Owsiak
Wed Mar 29, 2006 3:19 pm
Forum: FiveWin for Pocket PC
Topic: Record locking on Windows Mobile 5.01
Replies: 25
Views: 8076

Antonio,
Thanks for Your great work - but effects are not optimistic.
When I try lock record on local 'drive' it works ok. I cannot do this on server - wd->(rLock()) return .F. - don't know why.

regards,
Eugeniusz
by Eugeniusz Owsiak
Wed Mar 29, 2006 12:27 pm
Forum: FiveWin for Pocket PC
Topic: Socket on Windows Server 2000
Replies: 23
Views: 7878

Socket on Windows Server 2000

I have some program written in eVC++ communicating with socket server running on WServer 2000 and all works properly. Socket server is based on FWH 2.6. The next program is on FWPPC and it cannot communicate with this socket server but it have made connection to any other socket server running on Wi...