Search found 4853 matches

by rdonnay
Tue Feb 18, 2025 8:58 am
Forum: eXpress++ Support
Topic: DCGET COMBO AND WINDOWS 11
Replies: 6
Views: 1941

Re: DCGET COMBO AND WINDOWS 11

The reason is not the OS.
Possibly, an update to the latest version of Xbase++ may be required.
by rdonnay
Mon Feb 17, 2025 3:54 pm
Forum: eXpress++ Support
Topic: DCGET COMBO AND WINDOWS 11
Replies: 6
Views: 1941

Re: DCGET COMBO AND WINDOWS 11

I don't have Windows 11 so I'm not sure what is happening here.

Try removing the pushbutton from inside the GET object and see if it makes a difference.

Code: Select all

DC_GetPopupCaption( { "10.Marlett", "u", 0 } )
by rdonnay
Sat Feb 15, 2025 9:13 am
Forum: eXpress++ Support
Topic: DCCOMBOBOX
Replies: 5
Views: 2343

Re: DCCOMBOBOX

Here is an example of how to disable keys in the combobox using a custom event handler: #INCLUDE "dcdialog.ch" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList[0], GetOptions, aComboCaptions, aComboValues, ; bGetSet, cComboCaption, nComboValue, oComboBox aComboCaptions := { ; 'Nineteen Ninety Se...
by rdonnay
Fri Feb 14, 2025 11:06 am
Forum: eXpress++ Support
Topic: DCCOMBOBOX
Replies: 5
Views: 2343

Re: DCCOMBOBOX

It would require a change to express++ source code to allow a select from the right mouse button.
Do you also want to disable the left mouse button?
by rdonnay
Fri Feb 14, 2025 9:49 am
Forum: PostGreSQL
Topic: Case sensitivity in postgresql
Replies: 2
Views: 4203

Re: Case sensitivity in postgresql

Column names in SQL statements are NOT case sensitive.

Please clarify what you are asking.
by rdonnay
Wed Feb 12, 2025 9:32 am
Forum: Xbase++ 2.0
Topic: Post a mouse event
Replies: 3
Views: 3086

Re: Post a mouse event

You could try PostAppevent(xbeM_LbUp, ... )
if PostAppEvent(xbeM_LbClick, ... ) doesn't work.
by rdonnay
Thu Jan 16, 2025 8:44 am
Forum: eXpress++ Support
Topic: DCGET COMBO and DATA {||array}
Replies: 2
Views: 1493

Re: DCGET COMBO and DATA {||array}

Code: Select all

aArray := {"COBA","VANJA","MARKO","ANA"}
FOR i := 1 TO Len(aArray)
  aArray[i] := {aArray[i]}
NEXT
by rdonnay
Thu Jan 16, 2025 7:19 am
Forum: eXpress++ Support
Topic: The debug does not work stably
Replies: 2
Views: 5324

Re: The debug does not work stably

Which DEBUG are you using? xppdbg.exe ?

Or are you using the eXpress++ WTF command in your source code?
by rdonnay
Mon Jan 06, 2025 1:18 pm
Forum: eXpress++ Support
Topic: DCBROWSE AND MY PROBLEM
Replies: 4
Views: 2484

Re: DCBROWSE AND MY PROBLEM

Here is another way you can store the field name in the XbpColumn object: DCBROWSECOL FIELD CUSTOMER->bill_name HEADER 'Billing Name' WIDTH 25 PARENT oBrowse ; EVAL {|o|o:_fieldname := 'BILL_NAME'} DCREAD GUI EVAL {||(wtf oBrowse:getColumn(1):_fieldName} You can assign any new variable to the column...
by rdonnay
Thu Dec 19, 2024 12:42 pm
Forum: Xbase++ 2.0
Topic: Build 2.00.2307
Replies: 11
Views: 23231

Re: Build 2.00.2307

I updated _DCXBROW.PRG to use the new hide() and show() methods. http://bb.donnay-software.com/donnay/_dcxbrow2307.zip This sample program should now work: #INCLUDE "dcdialog.CH" #INCLUDE "Directry.CH" // This example shows how to use the new hide() and show() methods of XbpColumn class, // by using...