X11 BadWindow (invalid Window parameter)

Hi everyone!
Here is the issue:
Im using X11 to access and SGI (Silicon Graphics) IRIX system. I had it working once, then I rebooted both machines and never again has it worked. When I run the command
Xnest :1 -query 192.168.X.X
the IRIX login window appears and I can log in and then all the desktop elements show up as they should except windows. When ever I try to get a window open from a tool bar or console window I get this on the sgi's console and nothing happens:
X error of failed request: BadWindow (invalid Window parameter)
Major opcode of failed request: 128 (XINERAMA)
Minor opcode of failed request: 1 (XINERAMAGetState)
Resource id in failed request: 0x570000000
Serial number of failed request: 668
Current serial number in output stream: 668
I hope that someone can figure this out
Thanks!!!
also as a note I may have run the 10.4.10 update before i disconnected everything, but I don't remember.

These are the links that I used to set up the SGI's
http://www.nekochan.net/wiki/index.php/Headless
http://www.nekochan.net/wiki/index.php/Headless_desktop
At one point this worked!
I also used the Xnest, but it is akward and has its own issues. Some items in the toolbar dont show up, just blank where text would be. Kind of a wierd issue. I have screen shots posted in a different forum here:
http://forums.nekochan.net/viewtopic.php?f=7&t=15173

Similar Messages

  • Windows Terminal server is reporting error" ESE error -1003 JET_errInvalidParameter, Invalid API parameter."

    We are getting event error as copied below on Terminal server. Any help in getting this issue resolved will be much appreciated. Server is running on windows 2008 R2 server.
    Log: System
    Type: Error
    Event: 44
    Event Time: 08:33:47 PM 23-Apr-2015
    Source: TerminalServices-Licensing
    Category: None
    Username: N/A
    Computer: ABC-HG-SRV11.biz.com
    Description: The following general database error has occurred: "ESE error -1003 JET_errInvalidParameter, Invalid API parameter.

    Hi Keshava,
    Firstly, please fully patch the system.
    If the issue persists, I suggest you perform following actions to solve the issue:
    Assign the appropriate permissions to the TS Licensing database folder on the Terminal Services license server.
    Reinstall the Terminal Services client access licenses (TS CALs) onto the license server.
    For more detailed steps, please refer to this article below:
    Event ID 44 — Terminal Services License Server Database Availability
    https://technet.microsoft.com/en-us/library/cc727345%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Log Error : Invalid Input Parameter %s for every SAP B1 Client

    Hi Everybody,
    in my company we have performed SAP B1 upgrade from 2007A to 8.81 PL07, in two steps upgrading first to PL04.
    Everything is working fine for all our clients, we are able to post and work normally with the system.
    The only annoying problem is an error message coming up every minute for every client in the log:
    SQLMessage       Error              I     Technical     Invalid input parameter: %s # #     MID=-1     BOID=-1     BO=     UserID=manager     C:\Program Files (x86)\SAP\SAP Business One\SAP Business One.exe     Version=8.81.315     Area=     PID=1316     TID=4340     D:\depot\BUSMB_B1\8.8_SP1_REL\SBO\8.8_SP1_REL\Application\__Engines\DBM\__DBMC_DataBase.cpp     9547
    I couldn't find anything regarding this topic in the forum, only one similar post but unanswered.
    We are using two server: one for the licence server and one for the database (the database server is clustered)
    Does anyone have any idea about this? Has it ever happened to anybody?
    Thanks for your help

    Hi Julie,
    it must be a triggered action from the system. The only problem is that log files grow very big, few mb every day, and it is a situation that's not very ideal. And also i don't want to turn them off because it is always a good resource for other errors.
    It is very strange that SAP hasn't noticed this behaviour and there isn't any note available for the purpose.
    Thanks for your help

  • Developer Error: invalid  window block name passed to set_window_position

    Hi
    I had Registered a Form in Oracle apps
    After that i'm trying to open the form,then this message will be displayed
    Developer Error: invalid  window block name passed to set_window_position
    in the PreForm Trigger I had written the code as apps.set_window_position('MY block name(MAIN_BLOCK)','MY window(MAIN_WINDOW)')
    i had wriiten like that
    but
    After click on that Ok Button of the error message my form is Open
    and My form is Also not having any Minimize,Maximize and Close Buttons
    Please Tel me How should i resolve that Error and also how can i Get that buttons for the Form

    I agree with Francios, you should ask your question in the General EBS Discussion forum.
    in the PreForm Trigger I had written the code as apps.set_window_position('MY block name(MAIN_BLOCK)','MY window(MAIN_WINDOW)')You are using a Oracle E-Business Suite (EBS) framework procedure to set the window position, not the Forms standard Set_Window_Property built-in.
    and My form is Also not having any Minimize,Maximize and Close ButtonsThese could be controlled by the APPS.Set_Window_Position procedure, but I'm not sure. It could simply be that you set (or neglected to set) the default properties of your Form's window the enable these buttons. More than likely, the APPS procedure is setting them. It's been too long since I worked with the EBS to say for certain. You really should ask your question in the General EBS Discussion forum.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Getting error Invalid length parameter passed

    Hi,
    I'm getting an error running my query. It say "Invalid length parameter passed to the LEFT or SUBSTRING  function. I will be getting the string in between of hyphen using the code below. May i ask your assistance or idea on how to fix this issue.
    thank you.
     Substring(ins.itemid,11,CHARINDEX('-',ins.itemid+'-',11)-11) AS MODEL
    Msg 537, Level 16,
    State 3, Line 1
    Invalid length parameter passed to the LEFT or SUBSTRING
    function.
    Sample data of Itemid.
    B300-4410-ONEMAX-U
    B300-1725-XWHT-U
    B300-3110-VT981-U
    B300-1720-DRZRKCROBLK-U
    B300-1720-DRDTHN32BLK-U

    That'll cause empty strings to show up into you're result set but shouldn't cause the the SUBSTRING function to fail. 
    The error is the result of the SUBSTRING function trying to bring back a negative number of characters.
    Try running the following and see what comes back...
    SELECT ins.itemid
    FROM dbo.TableName ins
    WHERE LEN(ins.itemid) < 11
    If you don't find any itemids what are less than 11 characters (I'm 99% sure you will), try using a little test script like the following to test suspect values...
    IF OBJECT_ID('tempdb..#temp') IS NOT NULL
    DROP TABLE #temp
    GO
    CREATE TABLE #temp (
    itemid VARCHAR(30)
    INSERT #temp (itemid) VALUES
    ('B300-4410-ONEMAX-U'),
    ('B300-1725- '),
    ('B300- 3110-VT981-U'),
    ('B300-1720-DRZRKCROBLK-U'),
    ('B300- 1720-DRDTHN32BLK-U')
    SELECT ins.itemid
    FROM #temp ins
    WHERE LEN(ins.itemid) < 11
    SELECT
    SUBSTRING(
    ins.itemid, 11, CHARINDEX('-',ins.itemid+'-',11)-11) AS MODEL FROM #temp ins
    HTH,
    Jason
    Jason Long

  • Frm 41052: cannot find window. Invalid window id

    Hi,
    I have a form which is opening only to half its size where i have given width=650 and height=500 in formsweb.cfg. Also i get error
    frm 41052: cannot find window0. Invalid window id
    but i have asscoiated the canvas with window0 in the property palette.
    What do i do? Pls help

    This is probably a silly question, but does window0 exist in the form?

  • Invalid reference parameter in distribution list

    Hi all!
    I want to distribute a very simple report that has a user parameter 'P_1'.
    The basic problem I have is to reference this parameter P_1 in my distribution file:
    I always get the following error message:'Invalid reference parameter '&P_1' in distribution list.
    <destinations>
    <file id="MyFiles" name="&amp;&lt;P_1&gt;_test.pdf" format="pdf" instance="all">
    <include src="report"/>
    </file>
    </destinations>
    Any idea what's wrong here?
    Thanks
    Thorsten

    Please try with encoded versions of these special params (Since they have special meanings in XML )
    & --> &amp;
    (less than) < --> &lt;
    Greater than > --> &gt;
    So the param becomes - &amp;&lt;P_1&gt;...
    This is explained in doc
    (HTML) http://otn.oracle.com/products/reports/htdocs/getstart/docs/A92102_01/title.htm
    Please See chapter 9 - Creating advanced distributions
    NOTE: (from docs)
    There is no special requirement for the greater-than symbol (>)used with variables, but for consistency, we recommend that you use the encoded version (&gt;).
    Thanks
    The Oracle Reports Team

  • Invalid Evaluation Parameter in line 0.  SPecified Depreciation Area

    Hi! Im using SBO 8.8 PL 11
    Upon adding new fixed asset master data, im encountering the error "Invalid Evaluation Parameter in line 0.  SPecified Depreciation Area"...
    Also, the selection list of the existing masterdata is available.   However, after i chose an item, no item is retrieved in hte fixed asset masterdata form.
    Help.  What do i need to check or do??
    Camille

    Hi,
    From previous reported issues on this, our experience is that the cause of this issue is the version of SQL server.
    Referring to B1 8.8 install CD\Documentation\SystemSetup\ AdministratorGuide_SQL.pdf, you will find the following part:
    To properly use the SAP Business One Fixed Assets add-on on Microsoft SQL Server 2005, make sure that you have Microsoft SQL Server 2005 SP3 installed.
    Upgrade MS SQL Server to SP3(build 9.0.4035), or SQL Server 2008(build 10.0.1600), the fixed assets should be working.
    Let us know if this helps,
    Jesper

  • Out of the blue my sim card is no longer recogniced and i got a "sim invalid" window. once i reboot the phone everything goes back to normal

    Out of the blue my sim card is no longer recogniced and i got a "sim invalid" window. once i reboot the phone everything goes back to normal. What can i do to solve this trouble?

    Replace the sim card

  • Invalid length parameter passed to the LEFT or SUBSTRING function.

     Below code is returning me invalid length (or) parameter.
    Msg 537, Level 16, State 2, Line 2
    Invalid length parameter passed to the LEFT or SUBSTRING function.
    , ( select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id and person_id in (select person_id from person where first_name =SUBSTRING(a.firstname, 1, CHARINDEX(' ', a.firstname) - 1) and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), 1, CHARINDEX(' ', REVERSE(a.firstname)) - 1)) ))as Person_ID
    ,(select rtrim(ltrim(isNull(address_line1,''))) + ' ' + rtrim(ltrim(isNull(address_line2,''))) + ' ' + rtrim(ltrim(isNull(address_line3,'')))
    + ' ' + rtrim(ltrim(isNUll(suburb,''))) + ' ' + rtrim(ltrim(isNUll(state,''))) + ' ' + rtrim(ltrim(isNUll(convert(char(10),postcode),'')))
    from address where address_type= 'P' and person_id = ( select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id and person_id in (select person_id from person where first_name =SUBSTRING(a.firstname, 1, CHARINDEX(' ', a.firstname) - 1) and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), 1, CHARINDEX(' ', REVERSE(a.firstname)) - 1)) ))
    )as Person_Postal_Address
    ,(select rtrim(ltrim(isNull(address_line1,''))) + ' ' + rtrim(ltrim(isNull(address_line2,''))) + ' ' + rtrim(ltrim(isNull(address_line3,'')))
    + ' ' + rtrim(ltrim(isNUll(suburb,''))) + ' ' + rtrim(ltrim(isNUll(state,''))) + ' ' + rtrim(ltrim(isNUll(convert(char(10),postcode),'')))
    from address where address_type= 'H' and person_id = ( select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id and person_id in (select person_id from person where first_name =SUBSTRING(a.firstname, 1, CHARINDEX(' ', a.firstname) - 1) and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), 1, CHARINDEX(' ', REVERSE(a.firstname)) - 1)) ))
    )as Person_Home_Address
    ,(SELECT contact.contact_detail FROM contact WHERE contact.contact_type = 'H' AND contact.person_id = d.person_id AND
    contact.contact_id = (SELECT max(dbo.contact.contact_id) FROM dbo.contact WHERE dbo.contact.contact_type = 'H'
    and dbo.contact.person_id = (select Top 1 person_id from person_membership where status_flag='A'
    and membership_id = a.membership_id and person_id in (select person_id from person where first_name =SUBSTRING(a.firstname, 1, CHARINDEX(' ', a.firstname) - 1) and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), 1, CHARINDEX(' ', REVERSE(a.firstname)) - 1)) ) ) )
    ) as Person_Home
    ,(SELECT contact.contact_detail FROM contact WHERE contact.contact_type = 'W' AND contact.person_id = d.person_id AND
    contact.contact_id = (SELECT max(dbo.contact.contact_id) FROM dbo.contact WHERE dbo.contact.contact_type = 'W'
    and dbo.contact.person_id = (select Top 1 person_id from person_membership where status_flag='A'
    and membership_id = a.membership_id and person_id in (select person_id from person
    where first_name =SUBSTRING(a.firstname, 1, CHARINDEX(' ', a.firstname) - 1) and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), 1, CHARINDEX(' ', REVERSE(a.firstname)) - 1)))))
    ) as Person_Work_Phone
    -kccrga http://dbatrend.blogspot.com.au/

    I have fixed the query by applying the below solution
    , ( select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id and person_id in (select person_id from person
    where first_name =SUBSTRING(a.firstname, NULLIF(CHARINDEX(' ',a.firstname),0)+1, CHARINDEX(' ', a.firstname) + 1)
    and surname = REVERSE(SUBSTRING(REVERSE(a.firstname),NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)- CHARINDEX(' ', REVERSE(a.firstname)) + 1)) ))as Person_ID
    ,(select rtrim(ltrim(isNull(address_line1,''))) + ' ' + rtrim(ltrim(isNull(address_line2,''))) + ' ' + rtrim(ltrim(isNull(address_line3,'')))
    + ' ' + rtrim(ltrim(isNUll(suburb,''))) + ' ' + rtrim(ltrim(isNUll(state,''))) + ' ' + rtrim(ltrim(isNUll(convert(char(10),postcode),'')))
    from address where address_type= 'P' and person_id = ( select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id
    and person_id in (select person_id from person where first_name =SUBSTRING(a.firstname, NULLIF(CHARINDEX(' ',a.firstname),0)+1,LEN(a.firstname)- CHARINDEX(' ', a.firstname) + 1)
    and surname = REVERSE(SUBSTRING(REVERSE(a.firstname),NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)- CHARINDEX(' ', REVERSE(a.firstname)) + 1)) ))
    )as Person_Postal_Address
    ,(select rtrim(ltrim(isNull(address_line1,''))) + ' ' + rtrim(ltrim(isNull(address_line2,''))) + ' ' + rtrim(ltrim(isNull(address_line3,'')))
    + ' ' + rtrim(ltrim(isNUll(suburb,''))) + ' ' + rtrim(ltrim(isNUll(state,''))) + ' ' + rtrim(ltrim(isNUll(convert(char(10),postcode),'')))
    from address where address_type= 'H' and person_id = ( select Top 1 person_id from person_membership where status_flag='A'
    and membership_id = a.membership_id and person_id in (select person_id from person
    where first_name =SUBSTRING(a.firstname, NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)-CHARINDEX(' ', a.firstname) + 1)
    and surname = REVERSE(SUBSTRING(REVERSE(a.firstname),NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)- CHARINDEX(' ', REVERSE(a.firstname)) + 1)) ))
    )as Person_Home_Address
    ,(SELECT contact.contact_detail FROM contact WHERE contact.contact_type = 'H' AND contact.person_id = d.person_id AND
    contact.contact_id = (SELECT max(dbo.contact.contact_id) FROM dbo.contact WHERE dbo.contact.contact_type = 'H'
    and dbo.contact.person_id = (select Top 1 person_id from person_membership where status_flag='A' and membership_id = a.membership_id
    and person_id in (select person_id from person where first_name
    =SUBSTRING(a.firstname, NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)-CHARINDEX(' ', a.firstname) + 1)
    and surname = REVERSE(SUBSTRING(REVERSE(a.firstname),NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)- CHARINDEX(' ', REVERSE(a.firstname)) + 1)) ) ) )
    ) as Person_Home_Phone
    ,(SELECT contact.contact_detail FROM contact WHERE contact.contact_type = 'W' AND contact.person_id = d.person_id AND
    contact.contact_id = (SELECT max(dbo.contact.contact_id) FROM dbo.contact WHERE dbo.contact.contact_type = 'W' and dbo.contact.person_id = (select Top 1 person_id from person_membership where status_flag='A'
    and membership_id = a.membership_id and person_id in (select person_id from person where first_name
    =SUBSTRING(a.firstname, NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)-CHARINDEX(' ', a.firstname) + 1)
    and surname = REVERSE(SUBSTRING(REVERSE(a.firstname), NULLIF(CHARINDEX(' ',a.firstname),0)+1, LEN(a.firstname)-CHARINDEX(' ', REVERSE(a.firstname)) + 1)) ) ) )
    ) as Person_Work_Phone
    -kccrga http://dbatrend.blogspot.com.au/

  • Adding a CM: Invalid length parameter passed to the RIGHT function. (CINF)

    We started seeing this error message a week ago when attempting to add a Credit Memo.  We only see this error message when entering Credit Memos and not any other finacial documents.  I've done some preliminary research and haven't really come up with anything to point to the issue.  Prior to reporting this to my support partner, I wanted to see if anybody here has seen this before or give me some ideas to look into the source of the issue.
    Full error message: Microsoft SQL Native Client SQL Server Invalid length parameter passed to the RIGHT function. (CINF)

    Checking the list of form ID's at [http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/892] shows the A/R Credit Memo as 179 and the A/P Credit Memo as 181.  This also corresponds with what I see when viewing the system information on the form.

  • Invalid system parameter of dispatchers

    Hi all,
    I set an invalid system parameter for dispatcher and I cannot startup the instance again.
    How can I change the system parameter before startup?
    I haven't backup the spfile, any other solutions?
    Regards,
    Jimmy

    start ur database with pfile
    sql>startup mount pfile=d:\oracle\product\10.1.0\admin\db01\pfile\init.ora
    sql> change ur dispatchers parameters if is not static.
    sql> alter database open;
    Listen to all other members.

  • Invalid length parameter passed to the LEFT or SUBSTRING function, error on INSERT

    I have a stored procedure that does a BULK INSERT of a csv file into myCSVTable then INSERTs records from
    myCSVTable into myTable. The INSERT statement is giving me this error: 
    Invalid length parameter passed to the LEFT or SUBSTRING function.
    CSV File: 
    3,020000007,OR,051,97205,02020005,41075,19470721,2,0,,0,0,0,0,0,1,0,0,,,,,,,,,0,2,,334418,334418,334418,13,,0,,0,0,0,0,0,1,0,0,1,20100217,,,,,20100304,20121030,1,1,,,0,0,0,0,0,,,,,0,0,0,0,9,0,0,0,1,1,0,0,0,3,00,20100304,20100426,20100922,20101011,20100304,20100922,20101011,,20101011,20100819,,20100326,20100326,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,,,1,1,,9,9,1,1,1,1,0,0,111150,111150,111150,999999,5586.25,4714.01,5884.28,7055.89,11097.89,10839.39,0.00,2,,,,,20120617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The
    Workforce Investment Board for the City of xxxxxxxx and xxxxxxxxx and W,020005,,mstr: 1000000000000000017  js: 372651          epi: 1,Jane Doe
    4,020000007,OR,051,97205,02020005,41075,19470721,2,0,,0,0,0,0,0,1,0,0,,,,,,,,,0,2,,334418,334418,334418,13,,0,,0,0,0,0,0,1,0,0,1,20100217,,,,,20100304,20121030,1,1,,,0,0,0,0,0,,,,,0,0,0,0,9,0,0,0,1,1,0,0,0,3,00,20100304,20100426,20100922,20101011,20100304,20100922,20101011,,20101011,20100819,,20100326,20100326,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,,,1,1,,9,9,1,1,1,1,0,0,111150,111150,111150,999999,5586.25,4714.01,5884.28,7055.89,11097.89,10839.39,0.00,2,,,,,20120617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,The
    Workforce Investment Board for the City of xxxxxxxx and xxxxxxxxx and W,020005,,mstr: 1000000000000000017  id: 020000007       epi: 1,Jane Doe
    There is no LEFT or SUBSTRING function used in the procedure and there are no triggers on either table. 
    The procedure had been working fine until today, when I altered one of the CSV fields. The code which triggers the error is this:
    INSERT [myTable]
    SELECT * FROM [myCSVTable]
    The weird thing is, the 1st record containing the changed field (mstr: 1000000000000000017  js: 372651          epi: 1) triggers the error, but the 2nd record containing
    the old field value (mstr: 1000000000000000017  id: 020000007       epi: 1), does not. 
    There are only blank spaces in the 2 strings, no non-printable characters or anything like that. I'm confused.

    A View of myTable was causing the problem.
    Hi LoriCazares,
    Do you mean that you have solved this issue? If so, please close this thread.
    Regards,
    Elvis Long
    TechNet Community Support

  • Windowserver Log showing hundreds of "Invalid window" instances

    In the Console I've been getting pages of this:
    *Jun 25 01:55:23 [49] kCGErrorIllegalArgument: CGXSetWindowWarp: Invalid window 1976*
    *Jun 25 01:55:23 [49] kCGErrorIllegalArgument: CGXSetWindowWarp: Invalid window 1976*
    *Jun 25 01:55:23 [49] kCGErrorIllegalArgument: CGXSetWindowWarp: Invalid window 1976*
    and this:
    *Jun 25 00:08:38 [49] kCGErrorIllegalArgument: CGXGetWindowWorkspace: invalid window id: 30e*
    *Jun 25 00:08:38 [49] kCGErrorIllegalArgument: CGXGetWindowWorkspace: invalid window id: 30f*
    *Jun 25 00:08:38 [49] kCGErrorIllegalArgument: CGXGetWindowWorkspace: invalid window id: 310*
    I'm not really concerned(should I be?), as no problems have arisen. I'm just curious what these mean. I'm guessing that they're invalid or disallowed requests made upon the windowserver by a particular or several applications.

    Emancipator Computator wrote:
    Unfortunately, that does nothing. The only logs that allow me to set columns are the 'Console Messages' log and the 'All Messages' log, so I have no idea where the request originated.
    Yes, exactly. That column will show the process that sent the log entries.
    Your post said they came from Console, didn't it? And that you have "hundreds" of them, so you shouldn't have to find the exact same ones you posted.
    They should also be in your system.log (current), or system.log.0.bz2, etc. (previous).

  • 27/07/12 14:57:36,284 Dock[150]: CGSReleaseWindowList: called with 6 invalid window(s)

    Error on Console.
    27/07/12 14:57:36,284 Dock[150]: CGSReleaseWindowList: called with 6 invalid window(s)
    Any suggest?
    Best Regards.

    Probably harmless.  A bug, certainly, but unless you're seeing some sort of misbehavior, I wouldn't worry about it.  It just means that the Dock asked windowserver to free some resources that were bogus.

Maybe you are looking for

  • Two T61's - connected, yet not resolving - other computers do

    Hello All, We have two identical T61's that suddenly stopped (even though connected to the wireless router both wirelessly and hard wired) resolving to anything on the Internet, including email client activity, etc.   Anoher older R52, which I am sen

  • I am suddenly not able to connect on basic calls w...

    For several years I have had an active monthly subscription for unlimited mobile and landline calls in the U.S., but now when I try to make these calls, I am getting this message "Call Ended, not enough Skype Credit to call this number" Please advis

  • Exports

    hi all i have a query. if a company is doing exports, if it takes the insurance for the goods which it is sending. it will take with insurance cover, in the sense the company wil say to insurance agent tht "we are going to export worth 10 crore in a

  • Passing a URL parameter to an applet

    Hi, I am NEW to Java and need to know how can I capture a parameter from the application URL and store it so that it is available to any class, applet and/or server on my application? And, once I store it how can I access it from an applet for exampl

  • Converting from binary to decimal

    i writ this program to let the user input his number and then it will be converted to decimal,but how can i limited the rang of my digit,or if i want him to enter 4 digits only what can i do,,,and if i dont limit a range how can i make it?