Search found 1416 matches

by Auge_Ohr
Tue May 23, 2023 10:04 am
Forum: eXpress++ Support
Topic: example of combobox + checkbox combined
Replies: 10
Views: 5194

Re: example of combobox + checkbox combined

hi Diego, as i say you can use Ownerdraw, which is like "Printing" on oPS :drawItem := {| oPS, aInfo, self | ... } Array aInfo hold Information. look at XbpListbox() -> :drawItem --- it is "hard" to have "Image" on right Side as you must "calculate" longest String before when place it on left Side i...
by Auge_Ohr
Sat May 20, 2023 9:58 am
Forum: eXpress++ Support
Topic: example of combobox + checkbox combined
Replies: 10
Views: 5194

Re: example of combobox + checkbox combined

hi,

XbpListbox() / XbpCombobox() have Ownerdraw so you can use "drawItem" Codeblock Slot to "paint" your Item

Code: Select all

   :drawItem := {| oPS, aInfo, self | ... }
by Auge_Ohr
Mon May 15, 2023 10:00 am
Forum: eXpress++ Support
Topic: HILITE and Right button in GET problems
Replies: 11
Views: 5077

Re: HILITE and Right button in GET problems

hi, i do use DESKTOPHORZRES and LOGPIXELSX to find "Scale" Factor #INCLUDE "Common.CH" #INCLUDE "GRA.CH" #INCLUDE "ot4xb.CH" #include "WinUser_constants.ch" #include "WinGdi_constants.ch" PROCEDURE MAIN LOCAL aSize := AppDeskTop():CurrentSize() LOCAL hDC := @user32:GetDC( HWND_DESKTOP ) LOCAL nXLogP...
by Auge_Ohr
Sat May 13, 2023 5:11 pm
Forum: eXpress++ Support
Topic: HILITE and Right button in GET problems
Replies: 11
Views: 5077

Re: HILITE and Right button in GET problems

hi Chris, how does your XP Manifest look like :?: you can add this in Manifest <application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware> </windowsSettings> <windowsSettings> <dpiAwareness xmlns=...
by Auge_Ohr
Thu May 11, 2023 2:02 pm
Forum: eXpress++ Support
Topic: Sleepmodus PC and timerevents.
Replies: 2
Views: 1977

Re: Sleepmodus PC and timerevents.

hi Chris,

have you try

Code: Select all

   oDlg:systemPowerStatus := {| nChange, uNIL, oSelf | NoDown(nChange, oSelf) }
   
FUNCTION NoDown(nChange, oSelf)
   TONE(1234)
RETURN XPP_POWERQUERY_DENY   
by Auge_Ohr
Wed Mar 29, 2023 9:05 pm
Forum: Xbase++ 2.0
Topic: re : Pound Sign and Char 194
Replies: 5
Views: 2780

Re: re : Pound Sign and Char 194

hi,

did we talk about Console or GUI ?

have you change AppSys() ?
which FONT do you use ?

---

have a look at SetLocale() in help File
it have a Sample for Euro Sign (check it) but you can enhance it for Pound Sign
by Auge_Ohr
Wed Mar 08, 2023 6:59 pm
Forum: eXpress++ Support
Topic: help with please - Ayuda por favor
Replies: 4
Views: 2412

Re: help with please - Ayuda por favor

hi,

the "best" to "repair" is to use a "Backup" ;)

---

what Type of DBF :?:
if Memo what Type :?:

---

it will not help much when DBF get "corrupt" again ...
show use your DBESYS how you "configure" DBE
by Auge_Ohr
Mon Mar 06, 2023 6:17 pm
Forum: eXpress++ Support
Topic: Codejock Skinframework
Replies: 12
Views: 10955

Re: Codejock Skinframework

Can you pls give me simple sample program that work for you. Xbase++ ::oSkin := XBPACTIVEXCONTROL() :new( ::drawingArea,, { 0, 0 }, { 0, 0 } ) ::oSkin:CLSID := "{16378D39-12CF-4C7D-8769-DFAAF02FD1F5}" ::oSkin:License := "Skin Framework Control Copyright (c) 2003-2009 Codejock Software" + CHR( 13 ) ...
by Auge_Ohr
Sun Mar 05, 2023 1:46 pm
Forum: eXpress++ Support
Topic: What could be the reason for such an error?
Replies: 20
Views: 7379

Re: What could be the reason for such an error?

hi,

i wonder that People in this Forum ask other User for a Political Statement
there are "other" place where People can talk about such Theme but PLEASE not in xBase Forum

we want to help each other regardless where People come from or which Color they have
by Auge_Ohr
Sun Mar 05, 2023 1:31 pm
Forum: eXpress++ Support
Topic: Codejock Skinframework
Replies: 12
Views: 10955

Re: Codejock Skinframework

hi Joe, I saw your post shown below, does it work with SL1? Yes, Codejock Skinframework still work with Xbase++ the Benefit is that User "can" change Style if he/she don´t like Default --- every Windows Version have "other Theme" also Apps like Office change Theme using a "Skin-Tool" for own App can...