Seamless window application, start from xterm ?

Hi,
i setup SGD and a w2k3-server to suppor seamless application - works
nice by testing a notepad.exe application.
Beacause of some business needs, i have to start the seamless application
from our own x11 application. Therefore, i wrote a small bash script which
i can start manuelly from an seamless xterm running on the SGD server:
/opt/tarantella/bin/bin/ttatsc -nofork -user username -password secret -swm \
-application "c:\\windows\\notepad.exe" 192.168.126.139
the notepad will be opened, but
a) the update of the framebuffer will not work correctly.I must move the mouse over the menu of
the notepad application the see the menue, ...
b) i can not see an icon on my client windows desktop
c) minimizing does not work either.
I moved around to start the normal linux rdesktop application using the approch from
http://www.cendio.com/seamlessrdp
and all works - beside of
a) can't see the minimized application on my client taskbar
b) can not maximize the notepad application after miminize )-:
So, could somebody help me to find a solution for my business
need "Starting seamless window appliction from a seamless unix-app using SGD" ?
thanks in advance
best regards
Danny
(from opensource-online.org using SGD ;-)

AFAIK, today on mayn browse rthis may be forbidden action by default. If IE7 may allow that at all at least user must add their server into the trust zone..then they can link from html into his local HD.
Other is classic:
< A *HREF file:///c:\some_file>run me!</ A>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • G3 Pismo hangs at "Login Window Application Started"

    Hello all,
    I have been trying unsuccessfully to bring my Pismo back to life following replacing the (dead) PRAM battery. I took it to the Apple Genius Bar today. They were able to use their diagnostic goodies to see the hard drive, could not fix the problem, so re-installed Tiger....and it still will not boot.
    When booted without anything more, it starts up fine, gets to the apple and spinning progress wheel, then goes to a blank blue screen and the hard drive stops.
    When booted in Verbose mode, it hangs after printing 'Login Window Application Started' to the screen.
    Of course this can't be the OS because it just got a clean re-install at the Apple store. Help?.....

    It is the original HD that came with the machine (I bought it used from somebody who had taken very good care of it).
    I am not saying that the HDD is the source of your issue, but you may want to consider it to be part of the issue. It doesn't matter how well it was cared for, as HDDs age their functionality decreases. The thin layer of lubricant on the platter thickens and becomes gummy with age and the interior heat of the computer. This spins out to the edges and causes the heads to stick, slowing up the drive. The hydroseal bearings almost literally float in lubricant, which also thickens with age and heat. The average life of an internal HDD is three to five years and if they survive past that range their performance continues to decline. I would certainly consider replacing the HDD.
    I can't get it to boot from the CD. It gets to the login window and then that's all she wrote
    That, too can be a function of age. I replaced the optical drive on my Pismo several years ago. I did the same for my daughter's Pismo. The issue could also be from a dirty or defective disk. Try a different disk to see if it works. If you have access to a second firewire Mac you can boot the computer from the optical drive of the other Mac with your Pismo in Firewire Target Disk Mode.
    cornelius

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

  • Windows Application Starting Point

    Does a basic (and best practice) framework (or netbeans like project) exist for a java windows application that would include menuing and initial windows classes?
    I have decided to create a application in java and it will be a windows gui application. I understand how to do this but it seems like this would be something someone else has already done. Kind of a starting point for an application. Does something like this exists? I searched online but didn't find anything. Maybe this is because I'm not sure what I'm asking for.

    I haven't seen any nice GUI frameworks for Java, beyond what Java already gives you. It would depend somewhat on what the app does. And you have to decide if you want to use Swing or SWT. Based on a previous thread, it would seem there are also some GUI builder tools out there, if you don't want to hand code it, but they won't produce very nice code; they just help prevent you from having to write it yourself. If this is your first jump into Java GUI, here is a quick Hello World app I just threw together in using Swing; it's a starting point anyway, and might help you get going:
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowEvent;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class HelloWorld {
         public static void main(String[] args) {
              // Code that affects the GUI should be run on the Event Dispatch thread;
              // Calling launchUI() using SwingUtilities.invokeLater(...) takes care of this.
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        launchUI();
         private static void launchUI() {
              final JFrame frame = new JFrame("Hello World");
              JPanel panel = new JPanel(new FlowLayout());
              JLabel label = new JLabel("Hello World!");
              panel.add(label);
              panel.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
              JMenuBar menuBar = new JMenuBar();
              JMenu menu = new JMenu("File");
              JMenuItem menuItem = new JMenuItem("Exit");
              menuItem.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent event) {
                        // This action will be fired when the Exit menu item is selected;
                        // firing off a Window Closing event is basically the same thing
                        // pressing the window close button in the corner does.
                        WindowEvent windowClosingEvent = new WindowEvent(frame, WindowEvent.WINDOW_CLOSING);
                        frame.getToolkit().getSystemEventQueue().postEvent(windowClosingEvent);
              menu.add(menuItem);
              menuBar.add(menu);
              frame.setJMenuBar(menuBar);
              frame.setContentPane(panel);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setLocationRelativeTo(null);     // this centers the frame
              frame.setVisible(true);
    }

  • Creating Windows Application Installer from Flash

    Hey,
    hope someone can help me out
    Im trying to find out with there is a possibility to convert or make a flash .exe file into a Windows Application and have it installed on the the computer.
    I mean when you click the file it starts to instal on the computer like an application, creates shortcuts and so on. im guessing it has soming to do with AIR but cant seem to get it.
    Any help will be much appriciated. Thanks in advance!
    pavel

    Ya i googled it and came up with many results, I was
    just wondering if anyone thought one was better than
    othersAh.
    Well, it would have been good if you'd stated that in the first place. That might have engendered some discussion.
    Better still would be if you tried out two or three of them, formed your own opinion, then posted that here and asked if other had similar experiences, or if there were any major issues that you might have missed in your testing, etc.

  • Slow applications start from win 2012 file server using win 7 workstations

    I hope someone can help me with why applications are slow to load i have replaced a 8 year old server running  win 2003 and replaced it with dell t620 running win 2012 r2 it is like 20 times faster but it is slower than the old server. the office has
    7 win 7 x64 machines all our applications are running from win 2012 file server. The server is set up as following the server runs with two hyper-v machines one machine runs ad, file server, dhcp, dns and printer server and the other is domino server and remote
    desktop. 
    the machine is more than capable but it is not so i started reading after i run out of ideas. i looked every where but the issue is with the server after trying everything else i did a simple test If i go to the application folder and click on it apps load
    instantly if i then type a unc path it takes from instant load to 3 and a bit seconds the same as the workstations. The same speed if I use ip address.
    network cards are intel
    i would really appreciate if somebody has suggestions that i could try
    thank you

    Hi,
    Do you mean that applications in the application folder start slowly when you access the application folder on the Windows 2012 R2 file server from Windows 7 workstations using UNC path or IP address. Do all the files in the application folder have the same
    issue? Please create a shared folder on the file server, then access the shared folder from Windows 7 workstations to check if the issue still exists.
    You could disable SMBv3 on server 2012 to check if the issue related to SMB protocol. 
    How to enable and disable SMBv1, SMBv2, and SMBv3 in Windows Vista, Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows 8, and Windows Server 2012
    http://support.microsoft.com/kb/2696547/en-us
    Warning: We do not recommend that you disable SMBv2 or SMBv3. Disable SMBv2 or SMBv3 only as a temporary troubleshooting measure. Do not leave SMBv2 or SMBv3 disabled.
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Need a help on web application starting from scratch

    hi
    could any one help in creating a web appliation from the scratch. i got a requirement to buid an application with JSP,servelts, structs and backend as oracle 8i / DB2 , with JBOSS server. building the application with ant
    i have some basic knowledge on programming but need help to configure the project from the scratch. i had a jdk5.0, oracle 8i/ DB2 8 and a fresh JBOSS application server and also myeclipse tool to build the application. what i have to do for starting up...
    Edited by: gnanasekar.K on Feb 12, 2009 3:26 AM

    I have had the same issue while using BEA Weblogic behind a heavy duty firewall for a large company. What we did was made use of the IIS Proxy DLL and routed all the incoming requests from port 80 on IIS to a specified port on the BEA Weblogic.
    To add more complexity to this, the request on port 80 to IIS was being filtered from port 443 from the corporate firewalls.
    The user accessed the site from "https" which was routed to port 80 as we were using IIS as the Web Server(Gosh.. I think why we did that), the requests were then in turn funneled to Weblogic to a different port. So the user was unawrae as to where the exact processing is happening. He assumed that it was all good on port 443.
    Hope this helps to some extent.

  • We installed  the Acrobat Reader 11.0.09  on Citrix enable Windows 2008 server  a month ago , it was working.  starting from this weeke we are receiveing error mesaage   AcroRD32.exe - application error  (Instruction at 0x...bad8  bad referenced memory at

    We installed  the Acrobat Reader 11.0.09  on Citrix enable Windows 2008 server  a month ago , it was working.  starting from this weeke we are receiveing error mesaage   AcroRD32.exe - application error  (Instruction at 0x...bad8  bad referenced memory at 0x....bad8 The memory could not be written  Click ok to terminate the program)
    Instruction at 0x...bad8  bad referenced memory at 0x....bad8
    The memory could not be written
    Click ok to terminate the program

    Hi SUBRAMANIAN,
    Are you still facing this issue? It seems to be conflict to me.
    Are you using any third party plugins with Acrobat? Try disabling and to use it again.
    Regards,
    Ajlan Huda.

  • Resizing application windows started from Start Screen

    Hi
    For the applications that are already loaded onto the Start Screen how can you resize them once they are started.
    For example, I launched Calculator from the Start Screen because I wanted to tally some numbers in another application that I had started from my Desktop. However, Calculator occupies the entire screen. The only resizing options are to split left or right
    but the Start Screen is visible in the space vacated and not the original application containing the numbers.
    I can add a shortcut to the Desktop for calc.exe, but have noticed this behaviour for all the applications on the Start Screen. I don't see how this is useful because I need to work with several windows open at the same time (which is what Windows xxx
    is all about).
    Can anyone help me with this, please?
    Thanks

    Hi The RealBlood,
    Do you mean we need to use the Calculator App and Desktop at the same time?
    In fact we could use this calculator. It can be used in desktop and located in the folder C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories.
    If you want to use the calculator app, we could refer to the following steps:
    1. Resize it to split left and then click the right side.
    2. Click the desktop in start screen, we will get the two split parts like this.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • IMovie '11 - when I open iMovie the application starts, but there is no window, If i plug in my iPhone the window will appear from the top right corner, but disappear again. HELP!?

    iMovie '11 - when I open iMovie the application starts, but there is no window, If i plug in my iPhone the window will appear from the top right corner, but disappear again, even if i use a drop down menu from the top menu bar and select, say 'New Project', it will appear from the top right corner, let me choose a new project, only to disappear again into that same corner.

    Argh I'm having the same problem! I always use imovie, and haven't had this prob before... apprantly imovie 11 is full of bugs like this. Anyone know if theres any way of downgrading?

  • Adobe Applications disappeared from my Windows 8 start screen

    Hi,
    After a recent update to my creative cloud all my adobe apps have disappeared from my windows 8 start screen. And when I search from them from the start screen it can't find them.
    If I use file explorer I can navigate to them, and the apps are still pinned to my task bar.
    Any ideas?
    Oh, and another issue I've just noticed, my creative cloud app won't log me in. Everytime I login it immediatly says "you have been signed out, please login in to continue.

    Try this discussion link:
    http://forums.adobe.com/thread/1444190?tstart=0#discussion-6273921
    For Windows 7, in short, you need to delete a file in the local files folder - basically resets linkages or something to the creative cloud. Then restart the CC desktop app.
    I hope this helps.
    Chris

  • Windows explorer + other windows applications crashing regularly at resume from sleep and hibernate

    Good evening,
    I have a Thinkpad W510 (4319-29G) running Windows 7 Pro 64bit. The system is loaded with the latest software and drives from Lenovo including BIOS 6NET74WW (1.34), upgrade was done Dec 7th (windows update performed Dec 15th).
    The machine has
    - 8Gb RAM
    - nVidia Quadro FX880M, driver version is 8.17.12.5896, 7-9-2010 and video card BIOS is 70.16.5f.0.b
    - dual harddrives,
       - one Seagate Momentus XT 500Gb (ST95005620AS) FW rev SD23 in the main location with C: and some other partitions
       - one Hitatchi 320 Gb (HTS723232L9SA60) FW rev FC4ZC50B in the bay.
    - Intel Centrino Advanced-N 6200 AGN, driver version 13.3.0.24, 7-14-2010
    - Intel 82577LM Gigabit Network Connection, driver version 11.5.10.1030, 7-22-2010
    Recently I have experienced crashes of multiple windows components at resume from sleep and hibernate.
    It seems to happen when swithing location (from work to home) and thus switching from docking station with wired network connection to no dock and wireless network connection (dont know if this has any bearing but anyway).
    In the event viewer I typically have some 6-12 application errors logged. Sample output from event viewer is:
    Log Name: Application
    Source:Application Error
    EventID:1000
    Level:Error
    Logged:2010-12-15 20:30:02
    Task category100)
    Keywords: Classic
    Computer: xxxxxxx (my computername)
    Then for each application the following detailed data is written in event viewer in the general tab:
    #1
    Faulting application name: rundll32.exe_nview64.dll, version: 6.1.7600.16385, time stamp: 0x4a5bc9e0
    Faulting module name: nview64.dll, version: 6.14.10.13527, time stamp: 0x4c35752f
    Exception code: 0xc0000005
    Fault offset: 0x00000000000f0786
    Faulting process id: 0x115c
    Faulting application start time: 0x01cb9bd59882f1f6
    Faulting application path: C:\Windows\system32\rundll32.exe
    Faulting module path: C:\Program Files\NVIDIA Corporation\nView\nview64.dll
    Report Id: b606b17d-0881-11e0-be39-00a0c6000000
    #2
    Faulting application name: taskhost.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc3c1
    Faulting module name: nview64.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c35752f
    Exception code: 0xc000041d
    Fault offset: 0x00000001800bb350
    Faulting process id: 0x10c0
    Faulting application start time: 0x01cb9bd5694caebe
    Faulting application path: C:\Windows\system32\taskhost.exe
    Faulting module path: nview64.dll
    Report Id: b6ae8cb2-0881-11e0-be39-00a0c6000000
    #3
    Faulting application name: sidebar.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc9e1
    Faulting module name: nview64.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c35752f
    Exception code: 0xc000041d
    Fault offset: 0x00000001800bb350
    Faulting process id: 0x6f0
    Faulting application start time: 0x01cb9bd5986a397a
    Faulting application path: C:\Program Files\Windows Sidebar\sidebar.exe
    Faulting module path: nview64.dll
    Report Id: b6bd0bd9-0881-11e0-be39-00a0c6000000
    #4
    Faulting application name: Explorer.EXE, version: 6.1.7600.16450, time stamp: 0x4aebab8d
    Faulting module name: nview64.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c35752f
    Exception code: 0xc000041d
    Fault offset: 0x0000000008c3b350
    Faulting process id: 0x1210
    Faulting application start time: 0x01cb9bd569d9ae8e
    Faulting application path: C:\Windows\Explorer.EXE
    Faulting module path: nview64.dll
    Report Id: b6d21ac7-0881-11e0-be39-00a0c6000000
    #5
    Faulting application name: Dwm.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc541
    Faulting module name: nview64.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c35752f
    Exception code: 0xc000041d
    Fault offset: 0x00000001800ba570
    Faulting process id: 0x11c4
    Faulting application start time: 0x01cb9bd569aa125c
    Faulting application path: C:\Windows\system32\Dwm.exe
    Faulting module path: nview64.dll
    Report Id: b72bfbe8-0881-11e0-be39-00a0c6000000
    #6
    Faulting application name: rundll32.exe_PWMTR64V.DLL, version: 6.1.7600.16385, time stamp: 0x4a5bc9e0
    Faulting module name: nview64.dll_unloaded, version: 0.0.0.0, time stamp: 0x4c35752f
    Exception code: 0xc000041d
    Fault offset: 0x00000001800bb350
    Faulting process id: 0x1450
    Faulting application start time: 0x01cb9bd59995023a
    Faulting application path: C:\Windows\system32\rundll32.exe
    Faulting module path: nview64.dll
    Report Id: b7e4521b-0881-11e0-be39-00a0c6000000
    It seems that a module "nview64.dll" is always the first application to crash. I suspect this has something with graphics to do.
    I dont know if this event triggers the following crashes or if it is so that the display is initialized before the other programs.
    After all crash diagnostic messages have been shown windows explorer restarts and also other applications restart but a lot of system tools in the system tray are gone so a cold start is needed to restore all tools again.
    I really would appreciate any help and suggestions how to fix this really annoying issue.
    Thanks, Anton

    I had a similar issue, as soon as a described even a little bit of it to warrenty support they sent someone to swap the board
    It seems thats the only fix, its been fine since 

  • Macbook upgrade to Lion.. how do i minimize what applications start up from boot ?

    how do i minimize what applications start up from boot (start-up) ??
    excel, word, safari and mail are all opening
    takes too long

    Disable Resume...
    How To Disable Lion's 'Resume' Feature - MacRumors.com
    And if you restart your Mac from the Apple menu > Restart
    Deselect:   Reopen windows when logging back in

  • Walkthrough: Displaying Data from Oracle database in a Windows application.

    This article is intended to illustrate one of the most common business scenarios such as displaying data from Oracle database on a form in a Windows application using DataSet objects and .NET Framework Data Provider for Oracle.
    You can read more at http://www.c-sharpcorner.com/UploadFile/john_charles/WalkthroughDisplayingDataOracleWindowsapplication05242007142059PM/WalkthroughDisplayingDataOracleWindowsapplication.aspx
    Enjoy my article.

    hi,
    this is the code :
    public class TableBean {
    Connection con ;
    Statement ps;
    ResultSet rs;
    private List perInfoAll = new ArrayList();
    public List getperInfoAll() {
    int i = 0;
    try
    con = DriverManager.getConnection("url","root","root");
    ps = con.createStatement();
    rs = ps.executeQuery("select * from user");
    while(rs.next()){
    System.out.println(rs.getString(1));
    perInfoAll.add(i,new perInfo(rs.getString(1),rs.getString(2),rs.getString(3)));
    i++;
    catch (Exception e)
    System.out.println("Error Data : " + e.getMessage());
    return perInfoAll;
    public class perInfo {
    String uname;
    String firstName;
    String lastName;
    public perInfo(String firstName,String lastName,String uname) {
    this.uname = uname;
    this.firstName = firstName;
    this.lastName = lastName;
    public String getUname() {
    return uname;
    public String getFirstName() {
    return firstName;
    public String getLastName() {
    return lastName;
    ADF table code:
    <af:table value="#{tableBean.perInfoAll}" var="row"
    binding="#{backing_Display.table1}" id="table1">
    <af:column sortable="false" headerText=""
    align="start">
    <af:outputText value="#{row.firstName"/>//---> Jdeveloper 11g doesn't allow me to use this.. it says firstName is an unknown property..
    </af:column>
    </af:table>
    Please tell me is this the way to do it.. or is it a must to use the DataCollection from the data controls panel...
    Thanks...

Maybe you are looking for

  • Exporting HD footage in final cut pro

    Hey guys, not sure if anyone can help me or not, but i'll post away anyway. I'm using a Canon Vixia HG20 video camera for videowork at a summercamp. it shoots in full HD at 1920x1080. I'm editing with Final Cut Pro 7 and my first project is an 8 minu

  • Main Address in HRMS not showing in Employee Self Service

    Hi The Main Address (primary address) that has been captured in core HR is not pulling through to the employees personal information screen in Employee Self Service. Any ideas as to what the problem could be? Thanks in advance

  • FINAL CUT HD (4,5) IN TIGER

    I just installed tiger and then updated to 10.4.4 Now my capture feature in FCP HD will not recognize my video deck. says that video source is missing. IMOVIE will run properly with the deck and captures but FCP does not. Does anyone know if there is

  • Output report to file

    I am trying to get our reports to be saved directly to file from the parameter form prompt. When I run the report from Report Builder, I designate that I want to save to file by selecting 'File' in the DESTYPE field and file's location in DESNAME. I

  • Composing mail with background color?

    Does anyone know of a way to compose a message in Mail with a background color (say, light blue) behind the text? I know Mail lets you choose type colors, and also lets you set text and background colors for the message header as it appears in the di