MONTHCALENDAR under HMG and MiniGUI.

General Help regarding HMG, Compilation, Linking, Samples

Moderator: Rathinagiri

Post Reply
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

MONTHCALENDAR under HMG and MiniGUI.

Post by AUGE_OHR »

hi,

i use MONTHCALENDAR under HMG and MiniGUI.
after create i re-size to

Code: Select all

   SetProperty( "BigCalendar", "MONTHCALENDAR_1", "WIDTH", 600 )
   SetProperty( "BigCalendar", "MONTHCALENDAR_1", "HEIGHT", 600 )
CAL_Diff.JPG
CAL_Diff.JPG (158.09 KiB) Viewed 4233 times
using HMG i got 12 Month and with MiniGUI 9 Month :o
how can it be different :?:

p.s. both Image have same Size

---

under MiniGUI i can "set Color" to MONTHCALENDAR but how under HMG :idea:

Code: Select all

    hDPick := GetControlHandle( "MONTHCALENDAR_1", "BigCalendar" )
    SetMonthCalendarColor(hDPick, MCSC_BACKGROUND , BLACK)           // in SOURCE\h_monthcal.prg
    SendMessage( hDPick, MCM_SETCOLOR, MCSC_BACKGROUND , {56, 56, 56 })
but i get no Color :(
have fun
Jimmy
User avatar
srvet_claudio
Posts: 2224
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: MONTHCALENDAR under HMG and MiniGUI.

Post by srvet_claudio »

Hi Jimmy,
Maybe:
SendMessage( hDPick, MCM_SETCOLOR, MCSC_BACKGROUND , RGB(56, 56, 56 ))
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: MONTHCALENDAR under HMG and MiniGUI.

Post by AUGE_OHR »

hi Claudio,
srvet_claudio wrote: Sat Oct 30, 2021 1:11 pm Maybe:
SendMessage( hDPick, MCM_SETCOLOR, MCSC_BACKGROUND , RGB(56, 56, 56 ))
Thx for Answer.
i have try it and it crash with "Application Internal Error"

p.s. i have "disable Theme" to get Color
have fun
Jimmy
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: MONTHCALENDAR under HMG and MiniGUI.

Post by AUGE_OHR »

hi,

have made Sample to "show" Problem with HMG
TESTMCAL.ZIP
(1.16 KiB) Downloaded 99 times
have fun
Jimmy
Post Reply