Search found 188 matches
- Wed Jan 01, 2025 5:38 pm
- Forum: HowTos
- Topic: icons on Debian
- Replies: 0
- Views: 3497
icons on Debian
I installed 3.20.3 on Debian 12 bookworm latest. I had the OA icons for a few days and a number of reboots. Now I cannot find them, and I had added console to the "pin to dash". I tried to re-install sudo apt-get install ./WinCCOA-3.20.3-DesktopUIShortcuts-debian.amd64.deb How can such thi...
- Thu Dec 26, 2024 11:56 pm
- Forum: HowTos
- Topic: beep() on linux
- Replies: 7
- Views: 5756
Re: beep() on linux
case opened, I will update here when I find out
- Fri Dec 20, 2024 10:17 pm
- Forum: HowTos
- Topic: beep() on linux
- Replies: 7
- Views: 5756
Re: beep() on linux
we need beep() to work on linux. @gschijndel I use Linux about every 3-4 years, maybe you can give me a command to try to know about Console device, that is what the error message reference; NoPosix::beep():, Could not open /dev/consol Since this is a standard OA function, I assume it is part of the...
- Mon Nov 25, 2024 4:55 pm
- Forum: HowTos
- Topic: beep() on linux
- Replies: 7
- Views: 5756
Re: beep() on linux
I tried to install beep from debian
apt install beep
but that seems to be an OS level function
apt install beep
but that seems to be an OS level function
- Mon Nov 25, 2024 4:39 pm
- Forum: HowTos
- Topic: beep() on linux
- Replies: 7
- Views: 5756
beep() on linux
Does anyone know how to setup Debian to get the beep() command to work?
it has a message in the logviwer
Could not open /dev/console
Not sure what it is looking for in terms of devices? The help for beep() does not mention anything nor does the Linux install notes.
thanks,
Todd Malone
it has a message in the logviwer
Could not open /dev/console
Not sure what it is looking for in terms of devices? The help for beep() does not mention anything nor does the Linux install notes.
thanks,
Todd Malone
- Fri Nov 22, 2024 1:24 am
- Forum: HowTos
- Topic: table wordwrap
- Replies: 5
- Views: 3717
Re: table wordwrap
the default for QT TableView is wordWrap = TRUE. I assume that we inherited that same property value. Yes, I know that the messages have a CRLF in the message. Are you suggesting that I change the message? Do you happen to have an idea how that code would do that? Seems easier to just force the word...
- Thu Nov 21, 2024 2:39 am
- Forum: HowTos
- Topic: table wordwrap
- Replies: 5
- Views: 3717
table wordwrap
it appears that QTtableView has a property of wordWrap, but I cannot seem to find either the property on the tab, or by typing this.? Does anyone know if you can set the wordWrap to FALSE using the cascading style sheet? Or with a fancy way to call QT properties that ETM has not exposed? The reason ...
- Thu Aug 01, 2024 5:40 pm
- Forum: HowTos
- Topic: how to get an event when window/module goes behind?
- Replies: 4
- Views: 2946
Re: how to get an event when window/module goes behind?
solution for me: stayOnTop(TRUE); windowStyle(myModuleName(), "", 0, 0); that forces the window to be always on top, and also disables the minimize and close function in the window title bar. The title bar allows the window to be moved to see behind it. (the help AI bot helped me find the ...
- Thu Aug 01, 2024 5:20 pm
- Forum: HowTos
- Topic: how to get an event when window/module goes behind?
- Replies: 4
- Views: 2946
Re: how to get an event when window/module goes behind?
thanks for the suggestions. The AI bot helped me a little bit, but "windowStateChanged" does not help for a loss of focus, only when the window functions are called like minimize. the stayOnTop might be some magic. Let me see if that would be useful. Some more background, I am making these...
- Thu Aug 01, 2024 12:32 am
- Forum: HowTos
- Topic: how to get an event when window/module goes behind?
- Replies: 4
- Views: 2946
how to get an event when window/module goes behind?
I am using ModuleOnWithWindow and either need to find a way to make a window like this modal, or to close it if it looses focus. I looked but could not find a uiConnect event for focus? Is there a way to get an event when a window looses focus, either at the window level or to monitor at the topolog...