Search found 1416 matches

by Auge_Ohr
Mon Apr 09, 2012 11:48 am
Forum: Xbase++ Support
Topic: Clipper Incompatible CDX Indexs
Replies: 3
Views: 8805

Re: Clipper Incompatible CDX Indexs

dbeinfo(COMPONENT_ORDER, CDXDBE_MODE, CDXDBE_COMIX) your Code is OK, but it is for COMPONENT_ ORDER only. you need to open DBF "prepared" for Cl*pper using COMPONENT_ DATA // // using Cl*pper Comix/SixDrive // DbeInfo( COMPONENT_DATA, FOXDBE_CREATE_2X, .T. ) DbeInfo( COMPONENT_DATA, FOXDBE_LOCKMODE...
by Auge_Ohr
Mon Apr 02, 2012 7:50 am
Forum: eXpress++ Support
Topic: Questions of zero level
Replies: 96
Views: 125115

Re: Questions of zero level

hi,

VB need its Runtime, VC need its Runtime so same with Xbase++ need its Runtime
by Auge_Ohr
Mon Apr 02, 2012 7:13 am
Forum: Xbase++ Support
Topic: DBZAP() Corrupted
Replies: 10
Views: 19970

Re: DBZAP() Corrupted

hi,

are these Files "local" or on "Server" ?
what OS() ?

have DBF used before ZAP ?

greetings by OHR
Jimmy
by Auge_Ohr
Sun Mar 18, 2012 12:13 pm
Forum: Xbase++ Support
Topic: Operating System Error
Replies: 8
Views: 16934

Re: Operating System Error

FUNCTION DC_SetCPU( nCPU, cFile ) DEFAULT nCPU := 15 // 7 = 3 CPUs // 3 = 2 CPUs // 1 = 1 CPU ... FOR i := 1 to 32 // create new bitmask nSet[i] := (i = aSet[nLast]) // switch on appropriate bit NEXT DllCall("xpprt1.dll", DLL_CDECL, "_sysSetCPU", nSet) ENDIF RETURN nil as i know Xbase++ just run on...
by Auge_Ohr
Sun Mar 18, 2012 9:04 am
Forum: Xbase++ Support
Topic: Operating System Error
Replies: 8
Views: 16934

Re: Operating System Error

hi, try Xppload.exe to see from where *.DLL is load from. if it is in same Directory you can try this too #include "dll.ch" #include "Directry.ch" procedure main() LOCAL aDLLfiles := Directory("*.DLL") LOCAL nCount := Len(aDLLfiles) LOCAL n, nPosi LOCAL lFlag := .F. LOCAL I,J,DllName,hDll,aVersion,f...
by Auge_Ohr
Fri Mar 09, 2012 5:00 pm
Forum: eXpress++ Support
Topic: Getting internal IP address
Replies: 8
Views: 12043

Re: Getting internal IP address

I downloaded the latest ot4xb, and tried the following functions: aEval(_aGetAdapterInfo(.T.,.T.), {|o| DisplayAdapter(o) } ) aEval(_aGetTcpTable(.t.) , {|o| DisplayTcpConnection(o)}) aEval(_aGetUdpTable(.t.) , {|o| DisplayUdpConnection(o)}) I can't get them compiled. Unresolved external symbol. di...
by Auge_Ohr
Wed Mar 07, 2012 7:42 pm
Forum: eXpress++ Support
Topic: Cell merge in DBF Browsing?
Replies: 25
Views: 34150

Re: Cell merge in DBF Browsing?

Is it possible and if it is how to accomplish this: So to conclude my question is it possible to merge the fields in Database like that or at least browse them like they are merged. i think yes ... but not in a "normal" Calender which work with 24 hour / Day / Week / Month. Roger and Chris point to...
by Auge_Ohr
Fri Mar 02, 2012 3:38 pm
Forum: eXpress++ Support
Topic: Bitmap Printing
Replies: 4
Views: 7472

Re: Bitmap Printing

hi, i´m not Roger but i try to answer your question For many years our users have printed their logo on their forms and invoices. Due to path changing on their work station, we have had to stipulate location in an ini file, such as w:\oiswin\mylogo.bmp. We have one very large user that has users pri...
by Auge_Ohr
Thu Mar 01, 2012 12:58 pm
Forum: eXpress++ Support
Topic: Questions of zero level
Replies: 96
Views: 125115

Re: Questions of zero level

At scientific researches I sometimes solve problems of very big dimensions. and you have to find a solution to "compress" it. data send from scientific equipment most as binary so you can use a Structur an write it binary into memory. this is what FORTRAN was doing ...if i remember right ... long t...
by Auge_Ohr
Thu Mar 01, 2012 12:35 pm
Forum: eXpress++ Support
Topic: Modification DC_FindBrowse
Replies: 4
Views: 7288

Re: Modification DC_FindBrowse

digitsoft wrote:Add this Modification to when it arrives at the beginning or end of the database not Blink
what about :hitTopBlock() and :hitBottomBlock() ?