rnapa123
4th November 2003, 20:39
Hi,
: Anyone had experience with Baan IV c4 changing back ground colors.
: I know there is a product called Nasdaq available to change the colors but I want to try without using that. Any help on this would be greatly appreciated.
zardoz
5th November 2003, 13:35
Nope. You have to use the windows colors. Many people tried to change in different ways, the only notice I have of something working is Nazdaq product.
AndyBarratt
5th November 2003, 13:45
If you are looking to provide some sort of visual reference that you are on a Test or Live server, or in situation where you have several installations each with live and test servers, you can edit the icons used by baan and change the colour, e.g. all our test servers have red icons in the Baan menus, each of the different live servers has a different icon colour, Yellow (std), Blue etc. so you don't inadvertantly start to enter data on the wrong server.
Unfortunately this will only provide an indicator per installation, not per company, which would be more usefull. For that its back to Nazdaq
Andy
rnapa123
5th November 2003, 16:51
Thanks for all of your reply. I did change the colors of the icons earlier. But I want to do the change the background colors and I guess I got to buy a product from Nasdaq.
thanks
p.cole
5th November 2003, 20:17
Another very visual way is to change the font using the -font=courier on the bwc config, search the board for more information
~Vamsi
11th November 2003, 00:42
Every element on the desktop in Microsoft Windows is a "window". Each window has a handle. Communication between the OS and the window takes place using messages. Some of those messages involve the painting functionality. It is possible to intercept these messages and change or discard them - just like QKey/rush/RMCgen do in Baan :).
So a program which changes any GUI elements would have to:
- have a procedure which keeps track of windows being created and destroyed.
- keep track of the company number based on the window title, by parsing the text.
- have a Windows "hook" that monitors messages being sent to these windows and change the background color as required.
That is what I found in my research over the weekend. Also this gave me an opportunity to get my feet wet a bit in Windows programming.
For more information search for "subclassing" and "hooking" on everyone's favorite search engine www.google.com.