Search Results
Search results 1-9 of 9.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
Listview
Raffa - - emWin related
PostHi, is it possible to have more than 58 rows at a Listview? Raffa
-
Fonsize ist not correct
Raffa - - emWin related
PostHi, when I draw a string with emWin in a Propotional Font like ..16_ASCII. Why is the actual hight on the Display not 16 Pixels? It ist with every Font like that!
-
emWin with KeilOS
Raffa - - emWin related
PostI know this, but my Debugger is telling me sth. different....
-
emWin with KeilOS
Raffa - - emWin related
PostHi, thanks for your quick answer. The Problem is, I set a breakpoint in the wait funktion, but the System never enters it. why is that? I use a Touch for input.
-
emWin with KeilOS
Raffa - - emWin related
PostHi, I am running the emWin in a Multitasking system and it is working well. But there is one Problem. In the User Manual is a discription of GUI_X_WAIT_EVENT and GUI_X_SIGNAL_EVENT. I defined the Macros with the folloing code: static OS_TID os_evt_id; void GUI_X_WaitEvent(void) { os_evt_id = os_tsk_self(); os_evt_wait_or(1,0xFFF0); } void GUI_X_SignalEvent(void) { if (os_evt_id) { os_evt_set(1, os_evt_id); } } While the SignalEven funktion ist called automatic within the emWin, the wait funktion…
-
Hide the Menu Widget
Raffa - - emWin related
PostIch tryed to create and delete the Menu now. The chreating is possible, aber after the deleting the systme, crashes. I think it has sth. to do with the Handle.
-
Hide the Menu Widget
Raffa - - emWin related
PostHi, I want the Menu Widget to disappear when no Item is Highlighted, or until a special Menu Button is pressed. I have a Frame window on the desktop with the Menu widget, but there are several Problems. When I Hide the Menu with WM_Hide..., there is a black frame left where the Menu used to be and I don't know where or when to reactivate it. I am using callbacks. Any Solutions?