Search found 499 matches

by Wolfgang Ciriack
Thu May 15, 2025 3:38 am
Forum: Xbase++ 2.0
Topic: XbpFileDialog() problem
Replies: 1
Views: 1367

Re: XbpFileDialog() problem

Seems to be a memory or icon cache problem on these PC.
by Wolfgang Ciriack
Wed May 14, 2025 8:02 am
Forum: eXpress++ Support
Topic: ADS ERROR
Replies: 2
Views: 1572

Re: ADS ERROR

I do not know, if you have the advantage help file. So here is this to error 5185: Advantage Local Server connections are restricted when used from a web server, an application server, a terminal server, or any other type of middleware or server product used to access data on behalf of remote comput...
by Wolfgang Ciriack
Mon May 05, 2025 5:36 am
Forum: eXpress++ Support
Topic: Function for a sensitive search
Replies: 3
Views: 2424

Re: Function for a sensitive search

Hello, you can use the DC_BrowseAutoSeek function with: without ADS: bSeekBlock := {|a| ordwildseek("*"+alltrim(upper(a))+"*"), DC_GetRefresh(oBtWs), .T.} with ADS: bSeekBlock := {|a| cfilter := "{|| contains(<your dbf fieldname>,'*"+a+"*'),'*"+a+"*')}", bfilter := &cfilter, ; (sel)->(DbSetFilter(bf...
by Wolfgang Ciriack
Sat Apr 05, 2025 11:05 pm
Forum: eXpress++ Support
Topic: dc_findbrowse
Replies: 5
Views: 6633

Re: dc_findbrowse

Hello Miguelon,
I'm sending you a screenshot so you can see how it looks, and you can see that the color change isn't clear in some fields.
I see that in my browses, too.
What two issues do you fix, that it work perfectly ?
by Wolfgang Ciriack
Wed Apr 02, 2025 10:46 pm
Forum: eXpress++ Support
Topic: dc_findbrowse
Replies: 5
Views: 6633

Re: dc_findbrowse

You can use the Subclass for a Browse: browsedata := {|| field->mystring} cHeader := .... cAlias := @2.5, 1 DCBROWSE oBrowse SIZE 40, 20 ; DATA cAlias ; CURSORMODE XBPBRW_CURSOR_ROW ; FIT ; SUBCLASS 'XbpBrowseHighlight()' ; EVAL {|o| o:UseVisualStyle:=.F.} ; TABSTOP DCBROWSECOL DATA browsedata HEADE...
by Wolfgang Ciriack
Tue Mar 18, 2025 1:18 pm
Forum: eXpress++ Support
Topic: ODBC driver
Replies: 4
Views: 30540

Re: ODBC driver

I have downloaded a vfpodbc_German.msi some time ago, this works fine.
Its attached.
by Wolfgang Ciriack
Sat Mar 08, 2025 11:42 pm
Forum: eXpress++ Support
Topic: How can you activate the xbeM_Wheel in a DCDIALOG
Replies: 3
Views: 5809

Re: How can you activate the xbeM_Wheel in a DCDIALOG

if you are using XBase++ 1.9 you have to disable "scrolling of inactive windows, if the cursor is over it" in the windows mouse scrolling settings.
by Wolfgang Ciriack
Thu Dec 05, 2024 2:19 pm
Forum: Xbase++ 2.0
Topic: ZIP library
Replies: 12
Views: 48502

Re: ZIP library

I still use XbZLib.
by Wolfgang Ciriack
Wed Dec 04, 2024 1:53 pm
Forum: eXpress++ Support
Topic: printing to pdf error
Replies: 8
Views: 19330

Re: printing to pdf error

You can try to open the pdf exclusive, f.e.

Code: Select all

do while (nH := FOpen(outfile, FO_EXCLUSIVE)) <= 0 .and. counter < 10
   sleep(100)
   counter++
enddo
if nH > 0
    FClose(nH)
endif
if counter > 10
    err := 1
endif