Search found 485 matches

by Wolfgang Ciriack
Mon Aug 14, 2023 4:40 am
Forum: Xbase++ 2.0
Topic: Malfunction round()
Replies: 5
Views: 1969

Re: Malfunction round()

That is the reason, i use the function roundZ() for some years:

Code: Select all

Function RoundZ(nValue)
Return (Round(Round(nValue, 4), 2))
by Wolfgang Ciriack
Sat May 20, 2023 2:35 am
Forum: eXpress++ Support
Topic: example of combobox + checkbox combined
Replies: 10
Views: 5037

Re: example of combobox + checkbox combined

Take a DCBrowse with a bitmap column, one bitmap with a selected checkbox, one with a non selected checkbox.
by Wolfgang Ciriack
Mon May 15, 2023 6:58 am
Forum: eXpress++ Support
Topic: HILITE and Right button in GET problems
Replies: 11
Views: 4878

Re: HILITE and Right button in GET problems

Hi Chris, you can try this function: Function GetTextDPI(nArt) ** Returns with nArt=1 DPI, nArt=2 Zoomfactor LOCAL oPS := XbpPresSpace():New():Create(AppDesktop():WinDevice(), {100, 100}, GRA_PU_LOENGLISH) LOCAL aTmp := oPS:SetViewport() oPS:Destroy() Default nArt to 1 Return (iif(nArt == 1, aTmp[3]...
by Wolfgang Ciriack
Sun Apr 30, 2023 3:04 am
Forum: Xbase++ 2.0
Topic: DBT memos with ADSDBE
Replies: 7
Views: 3104

Re: DBT memos with ADSDBE

Hello Roger,
CDX and DBT does not work with ADS, that was the reason i changed to FOXCDX and FPT some years ago.
by Wolfgang Ciriack
Tue Mar 21, 2023 2:54 am
Forum: CXP / Web Development
Topic: PowerWeb Demo Program Attachment
Replies: 22
Views: 8007

Re: PowerWeb Demo Program Attachment

It is realy annoying, that i can not get any attachment - always "The selected attachment does not exist anymore." :oops: :oops: :oops:
by Wolfgang Ciriack
Fri Feb 17, 2023 10:41 pm
Forum: eXpress++ Support
Topic: Error on printing
Replies: 3
Views: 1894

Re: Error on printing

Thanks, Roger.
by Wolfgang Ciriack
Fri Feb 17, 2023 4:40 am
Forum: eXpress++ Support
Topic: Error on printing
Replies: 3
Views: 1894

Error on printing

Hello Roger, sometimes i get this error: General Error Information: -------------------------- Xbase Error.: 2: Parameter hat falschen Typ Sub System..: BASE[1025] Operation...: ":init" Can Default.: No Can Retry...: No Can Substit.: Yes Severity....: Error Cargo.......: [None] Tries.......: 0 Threa...
by Wolfgang Ciriack
Thu Feb 16, 2023 6:05 am
Forum: eXpress++ Support
Topic: Problem with disabled windows on Terminal Server
Replies: 50
Views: 12601

Re: Problem with disabled windows on Terminal Server

My application is not as complex as this
I am missing the "Hello World" in your application :D
by Wolfgang Ciriack
Mon Dec 12, 2022 11:44 am
Forum: Xbase++ 2.0
Topic: Build 1689: Alaska has done a good job
Replies: 10
Views: 4715

Build 1689: Alaska has done a good job

With version 2.00.1689 all gui dialogs are opening 2 - 4.5 times faster ! :clap:
by Wolfgang Ciriack
Mon Nov 21, 2022 12:08 am
Forum: Xbase++ Support
Topic: help with please - Ayuda por favor
Replies: 1
Views: 2072

Re: help with please - Ayuda por favor

Hello Jose,
make a new array for display:

Code: Select all

FOR J=1 To Len(aArreglo)
   if (p := AScan(aNew, {|a| a[1] == aArreglo[J][1]}) == 0
      ** not in aNew
      AAdd(aNew, aArreglo[J])
   else
      ** add quantity to existing item
      aNew[p][3] += aArreglo[J][3]
   endif
NEXT
Then display aNew.