Search found 60 matches

by Eugeniusz Owsiak
Mon May 29, 2017 12:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OT: Network-Problem
Replies: 3
Views: 558

Re: OT: Network-Problem

try on win10
run script secpol.msc as admin
on local parameters find where is option "Enable security signature" and set this option to disable
next restart computer
by Eugeniusz Owsiak
Tue Oct 28, 2014 7:13 am
Forum: FiveWin for Pocket PC
Topic: Marvell, PXA310 Win CE 6.0
Replies: 5
Views: 4331

Re: Marvell, PXA310 Win CE 6.0

Antonio, in code there is
Init function RddInit()

When I add lines with REQUEST DBFNTX etc
I get the same errors.

What else ?


Regards Eugeniusz
by Eugeniusz Owsiak
Mon Oct 27, 2014 8:36 pm
Forum: FiveWin for Pocket PC
Topic: Marvell, PXA310 Win CE 6.0
Replies: 5
Views: 4331

Re: Marvell, PXA310 Win CE 6.0

Thanks Antonio. The next problem: Some code: #include "FWCE.ch" function Main()    local oWnd, oBrw    local oSay, cSearch := ""    USE ( CurDir() + "\Customer" ) VIA "DBFCDX"    if ! File( CurDir() + "\LAST.CDX" )       INDEX ON Customer->Last TO ( ...
by Eugeniusz Owsiak
Sun Oct 19, 2014 9:05 pm
Forum: FiveWin for Pocket PC
Topic: Marvell, PXA310 Win CE 6.0
Replies: 5
Views: 4331

Marvell, PXA310 Win CE 6.0

Hi. Many years ago i wrote some program for HP2790 with Win 6.5 with winsock and it was ok. Now i must do the same work with device Datalogic Memor X3 with processor Marvell PXA310 Win CE 6.0. I made some test on this device but programms can not be executed - i get none message. I have fwppc 2009 v...
by Eugeniusz Owsiak
Thu Apr 17, 2014 11:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: WinSNMP
Replies: 2
Views: 654

Re: WinSNMP

Hi Here is my solution: function Client()     local cData, nOdb,cBuf     WSAStartUp(0x101)     oSocket := Socket(2,2,17)         Connectto( oSocket,161,"10.189.33.29" ) // use the server IP address here     cData := chr(48)+chr(42)+chr(2)+chr(1)+chr(0);         +chr(4)+chr(6)+'public'+ chr...
by Eugeniusz Owsiak
Tue Apr 15, 2014 10:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: WinSNMP
Replies: 2
Views: 654

Re: WinSNMP

So, here is my way ... I found an example in c. It work. MIB : 1.3.6.1.2.1.43.10.2.1.4.1.1 -> Count32: number of printed pages #include <windows.h> #include <stdio.h> #include <winsock.h> #pragma warning(disable : 4996) unsigned char kk[1000],ll[1000]; void abc(char *p) {     FILE *fp=fopen("c:...
by Eugeniusz Owsiak
Wed Apr 09, 2014 10:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: WinSNMP
Replies: 2
Views: 654

WinSNMP

Hi All

Has anyone connected to a MFP device using WinSNMP with xHarbour.

I want manage over 600 devices in my workplace - i must get counters of printed pages and prepare some reports.


Regards

Eugeniusz
by Eugeniusz Owsiak
Wed Jun 29, 2011 8:38 am
Forum: FiveWin for Pocket PC
Topic: Sockets
Replies: 11
Views: 3569

Re: Sockets

Hi Jeff Function Connect()     memvar oSocket    oSocket = TSocket():New( 2000 )    oSocket:bRead    = { | oSocket | OnRead( ) }    oSocket:bConnect = { | oSocket | OnConnect( ) }    oSocket:bClose   = { | oSocket | OnClose( ) }    oSocket:Cargo := ST_COMMAND    oSocket:Connect( "192.168.1.2&qu...
by Eugeniusz Owsiak
Fri May 23, 2008 9:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Date time update SQL Server
Replies: 5
Views: 1162

Rick, set date american set century on ... oRs:Source := "Update <your table> set <your datetime field> = '"+; dtoc(date())+" "+time()+"' where ......" ... oRs:Open() This update work for me and i get a proper datetime value in table. Maby I don't understand your proble...
by Eugeniusz Owsiak
Wed May 07, 2008 11:23 am
Forum: FiveWin for Pocket PC
Topic: ADOCE
Replies: 1
Views: 789

ADOCE

Hi Is there any solution to connect palmtop on TCP/IP to MS SQL Server 2005 on net. I have working programms on palmtop - connection is realized on socket technic (socket client on palm - > socket server on MS Server 2000 side). This programms are based on dbf files and now is time to move to SQL wo...
by Eugeniusz Owsiak
Sat Mar 01, 2008 11:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO -ms-sql - xharb 1.0 - create database user schema?
Replies: 8
Views: 2201

Mr Lowenstain You can also from management studio 1. make setup of database, users, logins schemas etc 2. creating backap to file, 3. copying backap file to your didrtibution media 4.restoring database with this script: #INCLUDE "FIVEWIN.CH" //---------------------- Function main() LOCAL o...
by Eugeniusz Owsiak
Tue Feb 26, 2008 9:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: ADO -ms-sql - xharb 1.0 - create database user schema?
Replies: 8
Views: 2201

It works for me on MS SQL server 2005 #INCLUDE "FIVEWIN.CH" #INCLUDE "xbrowse.CH" //---------------------- Function main() LOCAL oRs1,oRs2,oRs3,oErr,cSQl1,cSql2, cSQL,cTitle,oBrw,oWnd msgInfo("Start") cSQL := "create database jbc" cSql1:= "CREATE LOGIN jb...
by Eugeniusz Owsiak
Mon Feb 18, 2008 10:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse in 2 windows
Replies: 3
Views: 789

xBrowse in 2 windows

I have a small problem in displaing info from two dbf.files with relation. 1. In first main window i want to display list of simple information from 1-st base, second should contain filtered info from second base. By move in master window the list in detail must be refreshed. 2. Can I do this with M...
by Eugeniusz Owsiak
Wed Jan 30, 2008 1:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse display
Replies: 6
Views: 1231

try

oBrw:refresh(.T.)

regards
by Eugeniusz Owsiak
Mon Nov 26, 2007 11:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: OT: Multiedit
Replies: 15
Views: 3703

Otto.

Tools->Customize->Search->File Find->Starting Path

regards Eugeniusz