Full screen graphics corruption

Every few days I am getting full screen corruption like this: http://twitpic.com/48qx4
Multicolored triangles criss-crossing the screen and a reboot is the only way to fix it.
I have all of the latest updates installed, and I can't find anybody who has the same problem.

Adam,
If your profile is correct, you could try updating your system software to 10.5.6.
Try a process of elimination. Try running QT, Dreamweaver, and iTunes, but not the open source WebKit.
See if you can locate a crash log. How to locate a crash log:
1. Open Finder.
2. Click "Go" in the menu, then select "Go to Folder".
3. Copy and paste this path into the Finder dialog:
~/Library/Logs/CrashReporter/
4. Click the Go button.
5. Finder opens the folder containing the crash log. Look for a the crash file with a date field that looks like the most recent.
I'm still learning how to read these but there are more experienced users here that can.
Carolyn

Similar Messages

  • Code Review on a Full Screen Graphics Wrapper

    Hi all, if you could be so kind, could I get a quick review of my full screen graphics wrapper? It is giving strange flickering issues on an OSX TIBook, although that may be Apple's implementation. Also, am I breaking any major rules? Thanks, Ryan
    package rpgClient.graphics;
    import java.awt.*;
    import java.awt.image.*;
    public class Screen
         private Frame mainFrame;
         private GraphicsDevice gd;
         private BufferStrategy bs;
         private DisplayMode oldDisplayMode;
         private DisplayMode newDisplayMode;
         public Screen(GraphicsDevice gd, DisplayMode dm)
              System.setProperty( "sun.java2d.translaccel" ,"true" );
              this.gd = gd;
              oldDisplayMode = gd.getDisplayMode();
              newDisplayMode = dm;
              GraphicsConfiguration gc = gd.getDefaultConfiguration();
              mainFrame = new Frame(gc);
              mainFrame.setUndecorated(true);
              mainFrame.setIgnoreRepaint(true);
         //screen specifications
         public static GraphicsDevice[] getGrephicsDevices()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
         public static GraphicsDevice getDefaultGraphicsDevice()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
         public static DisplayMode createDisplayMode(int width, int height, int bitdepth)
              return new DisplayMode(width, height, bitdepth, DisplayMode.REFRESH_RATE_UNKNOWN);
         public static DisplayMode[] getDefaultDisplayModes()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayModes();
         public static DisplayMode[] getDisplayModes(GraphicsDevice gd)
              return gd.getDisplayModes();
         public static boolean isValidDisplayMode(GraphicsDevice gd, DisplayMode dm)
              DisplayMode[] dms = getDisplayModes(gd);
              for(int i = 0; i < dms.length; i++)
                   if(dms.getWidth() == dm.getWidth() &&
                   dms[i].getHeight() == dm.getHeight() &&
                   dms[i].getBitDepth() == dm.getBitDepth())
                        return true;
              return false;
         public static boolean isValidDefaultDisplayMode(DisplayMode dm)
              return isValidDisplayMode(getDefaultGraphicsDevice(), dm);
         //class methods
         public boolean isFullScreenSupported()
              return gd.isFullScreenSupported();
         public boolean isDisplayChangeSupported()
              return gd.isDisplayChangeSupported();
         public void initFullscreen() throws Screen.FullScreenInitException
              if(!isFullScreenSupported() || !isDisplayChangeSupported())
                   throw new Screen.FullScreenInitException();
              //init the display
              gd.setDisplayMode(newDisplayMode);
              gd.setFullScreenWindow(mainFrame);
              mainFrame.createBufferStrategy(3);
              bs = mainFrame.getBufferStrategy();
         public void deinitFullscreen()
              gd.setFullScreenWindow(null);
              gd.setDisplayMode(oldDisplayMode);
         public Frame getBaseFrame()
              return mainFrame;
         public GraphicsConfiguration getCurrentGraphicsConfiguration()
              return mainFrame.getGraphicsConfiguration();
         public void dispose()
              mainFrame.dispose();
              mainFrame.removeNotify();
         //Draw method one: Pass in an image of the screen
         public void bltImage(Image i)
              Graphics g = bs.getDrawGraphics();
              g.setColor(Color.BLACK);
              g.fillRect(0,0, newDisplayMode.getWidth(), newDisplayMode.getHeight());
              g.drawImage(i, 0, 0, null);
              g.dispose();
              bs.show();
         //Draw method two: Get the back buffer, do you buisness, then initiate the blt
         public Graphics2D getGrahphics2D()
              Graphics2D g = (Graphics2D)bs.getDrawGraphics();
              g.setColor(Color.BLACK);
              g.fillRect(0,0, newDisplayMode.getWidth(), newDisplayMode.getHeight());
              return g;
         public void bltGraphics2D(Graphics2D g)
              bs.show();
              g.dispose();
         public class FullScreenInitException extends Exception {}

    Hi there,
    Did you ever resolve this problem? I am new to the Fullscreen API but I am writing a complicated interactive screensaver. It works really well on Windows XP but there is terrible startup flicker on OS X. My own graphics is repeatedly overdrawn with a blank white screen, about four or five times over a few seconds, then finally the window starts behaving (nearly) as expected. The same drawing code works well in a windowed version on OS X.
    Anyone else have this problem?

  • FlashBuilder: Android/Flex Components+Full Screen Graphic possible?

    I'm new to flash and interested in multi-platform graphical game development.
    I've installed the Flash Builder Burrito test version and want to develop
    a full screen Android graphical game with Android-Flex components
    (like buttons etc.).
    a)
    Is it possible to have a full graphical screen and then overlay
    Android-Flex components (buttons etc.) or ist only possible
    to integrate a graphical screen within a Flex components app
    so that Android/Flex components have to been outside the screen
    and so no full graphical screen overlayed with Android/Flex
    components is possible?
    b)
    If full graphical screen + Android/Flex components is possible:
    which project type have I to choose:
    File->New->Flex Project or File->New->ActionScript Mobile Project?
    c)
    Are the components I can choose to design my Flash-Android project
    Android-like Flex components or are they real Android components?

    a) yes you can
    b) Flex Mobile Project
    c) Those are Flex components
    If you are creating a game for an Android device I would rather do it with Actionscript. The Flex "Hero" Framework for Mobile is great, but in my opinion laid out for applications not for games. Still you can use parts of it, but if you only lists, buttons and that kind of component then I would rather write them up in AS3.

  • Full screen graphical output

    I am working on a project for a school where I need to do fast (relatively speaking) graphics rendering in real time.
    Essentially, I have 5 computers; 1 Server and 4 clients.  Each client is hooked to a projector and is responsible for one letter of the word LASA. I have the network bits working, so that each client is told what color  and what position to draw the letter at, but now I am having trouble with getting it to draw quickly and smoothly.
    First I tried working with just making the pane full screen using a property node and modifying its background color at runtime, this worked great, so long as I didn't try to change anything on the panel, which made moving the letter using this method impossible.  Next, I thought I could use an image control since they are designed to handle quickly changing graphics and I could then just pragmatically generate the image on the fly.  While this seems like a great idea, I can't figure out how to make it full screen.
    Any help is appreciated.

    Attached is an example of the picture control doing this by changing the origin.  You can coordinate VIs by changing this origin synchronously in your displays using commands.  You can change the appearance of the VI front panel so that the title bar, scroll bars, etc are all not shown, and even make the background transparent, then maximize it.  The picture control allows you to easily change the background color of your text using either a rectangle in the background or with the text background itself (if the text is large enough).  You can programmatically scale the picture control and font size so that it looks good on your monitor.  You could also programmatically make the VI front panel slightly larger than your monitor so there are no seams.  Remember to have a way to close everything.  The picture control has a rich set of mouse events, so this should be pretty easy.
    Let us know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    ScrollText.vi ‏13 KB

  • Problem - loose connection (presumed)? Full screen graphical distortion.

    My Macbook pro (bought last November) has developed a problem in the last week.
    The screen will glitch - like as shown in this photo
    http://www.flickr.com/photos/theotherblackstuff/3617817234/sizes/l/
    Sometimes tilting the screen forward or backwards slightly will temporarily resolve the issue, sometimes just applying some pressure near the base of the screen (at the back) will.
    It strikes me that it would be caused by a loose connection...
    Will upload a video...

    Hi,
    I'm having the very same problem, but my MacBook is out of Applecare. Same behavior, same rudimentary remedy.
    Since my machine is not covered, I'm pretty much going to have to do this on my own then, aren't I? So could someone point me to a guide on how to repair this thing, because I'm getting incredibly frustrated.

  • Problem with Full Screen

    Ok I am getting problems with full screen graphics on some computers.
    I am writing an internet based RPG and this is really eating into my time...
    Can any one explain why my graphics will not show some times (works others) with the exact same code running....
    I am using a BufferStratagy with a frame.
    Any help would be gladly apreashiated thank you in advance,
    Phibred

    Not a thread issue, no thread on this side of the program and yes there is a media tracker. However I have learned that my problem was that my screen does not like to flip to 800x600 for java applications for some reason thx any way.

  • KT4AV - Graphics Corruption

    I just recently purchased the KT4AV with a new stick of DDR RAM (see profile for completely specs).  I upgraded from a K7T Turbo2 and 512MB PC133.  My video card ran smoothly with no evidence of problems in this configuration.  With my new setup, graphics abnormalities are evident even on bootup!  For instance, the energy star logo has black lines in it (while the BIOS is doing it's thing)...and the Windows XP logo on startup also has these black lines.  Running mpg/avi/etc within windows..they have black lines as well.  This becomes full blown graphics corruption when I run Direct3D graphics...for example UT2004.  
    I also have assessed this problem by runnign ATItool (it comes with a spinning cube and nicely shows how my graphics corruption progresses)...b/c the strange thing about this problem is that this corruption starts to go away after the computer has been running for about 1hr -2 hrs.  However, if I shut it down overnight...the graphics corruption is very noticeable upon bootup.  For instance, using ATItool, I get corruption within seconds of starting the spinning cube (Direct3D) when I start the computer for the first time.  Then if I let the compuer run for an hour or two, I can then let ATItool run for a long time...at least 20 minutes...without the graphics problem.
    I have tried to slightly change memory timing settings...and that doesn't effect the problem. I have AGP fast writes disabled (b/c it doesn't like being enabled...just like it doesn't like being at 8X AGP...which from readin through these boards, I can see is a problem...but doesn't make a difference to me since 4X is just as fast)...I have pretty much played around with the BIOS settings...going from more on the performance side to the normal side, and nothign changes.  My BIOS version is 5.0 right now, and although I know there is a 5.1, it doesn't say anything about this problem so I prefer not to upgrade.  I also have run MemTest86 for 1/2 hour and there were no memory errors.  This was on a "hot" boot so maybe I shoudl try it on the cold boot?  B/c of course I suspect either the memory or the motherboard could be the problem since those are the two components I changed. So I'm wondering if anyone has any ideas why this is happening...i have never encountered graphics corruption that goes AWAY with the computer being on for a while and then comes back when it has been off.   Any helpful advice would be appreciated!  Thanks...let me know if anyone would like a picture of the graphics corruption from the spinning cube on ATItool.

    Ok well I think this next set of experiments is fairly telling:
    osnavi, I took your advice and decided to disconnect the case fans.  Before I did though, I went into the BIOS and checked CPU and SYS temps at idle:  47,37 respectively.  I also checked to make sure that there were no corruption of the WinXP logo (since my system had been up and running and I had just finished playing UT2004   I figured everything would be ok...which it was).  So then I shut down the computer and disconnected the 2 case fans.  Then I let the computer cool down for 5 min or so.  I then booted up the computer (w/o the fans connected) and let it start booting so I could see logo...and graphics corruption was still present...i then quickly pressed Ctrl-Alt-Del and rebooted, then went directly into BIOS and recorded temps displayed there:  CPU->37, SYS->28.  I then waited for about 8 minutes for temps to stabilize and reach max:  CPU->47 SYS->40 (surprised it's not higher since 2 case fans are off, but that's another issue!)  Anyways, I then exited the BIOS and..bingo...no corruption...videos/games/Direct3D all fine in windows.  So the conclusion from this seems to be that 1) the case fans don't seem to contribute to the corruption, 2) this corruption is definitely temp linked and something happens when temp goes up by ~10 deg, and 3) this problem seems to be independent of windows since the problem exists and can be resolved before windows even starts.
    Now what could be heating up that makes my system run like it should??? No idea!  Anybody?    
    Ok just to add a bit more info...reconnected both case fans....let system cool off....then restarted (corruption present)...entered BIOS...waited for same amount of time as before, and temps were stable at CPU->46 and SYS->36.  However, as I mentioned above, I could get the corruption to go away at 47/40, the corruption would not go away at 46/36...so it seems to be a case temp dependent problem.  Anyways, I guess this isn't such terrible problem since it does go away, however, I'm concerned that it indicates that the mobo may be defective in some way?

  • Slow graphics performance - login screen, launchpad, full screen video all stutter

    Since installing Mavericks, I've found that several system animations are slow/stutter. This is on a 2012 MacBook Air with maxed out hardware specs so its not b/c I'm running an old system.
    Some examples:
    - When booting up, right before I reach the login screen, the display quickly flashes blue. This leads me to believe something funky is going on with my graphics card/drivers
    - The login animation, where you click your username and it floats to the middle of the screen so you can type in your password, is very jerky, taking 2+ seconds to complete. Previously it had been fast and smooth
    - When using Launchpad, expanding folders often takes several seconds. The folder will start to expand, freeze, and then finally finish. This tends to be more of a problem for folders with 1 row of icons. Large folders oddly seem to expand ok / smoothly
    - Watching full screen video in iTunes causes the audio to stutter (the video playback is still smooth). If I make the window smaller, audio and video playback are smooth again
    Is anyone else experiencing these kinds of graphics issues? Any idea whats going on or how to fix?

    Quit Chrome and see whether there's any change. If not, see below.
    Step 1
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, andIdle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 2
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Full Screen slide show not functional since upgrading Graphics card??

    Just upgraded to a geforce fx 5200 graphics card...now the individual full screen pic or the full screen slideshow will not function. Get Fatal Error C0000005 at Address: 6e310c01. Dumps me out of Photoshop album starter edition 3.0. I have about 1000 images in multiple groups, files, email shares, etc and need to be able to get back to functionality. This has occurred since installing the graphics card mentioned. Is the newer 3.2 version an "upgrade" to 3.0. If I download it will it overwrite the existing version and still have all of my photos in place? It's an option I am considering to try to get back to properly functioning. ANY I repeat ANY help would be appreciated...THANKS....

    I have a Geforce FX5500 card & updated the driver for it, why I have no idea! Anyway the slideshow came up with some sort of major error & as I already knew using bang up to date graphics card driver stops certain old games working I rolled back the driver from the 23/4/08 (approx) version to driver version 6.14.10.9371 dated 22/10/06. Different card I know but an older driver may sort it.
    Les

  • X220:Graphics problem with full screen videos

    I have got my X220 laptop last month. I am facing problem while playing youtube videos full sceen.
     videos can be seen best with smaller window but there is major graphics problem with full screen.
    Can someone help on this?
    I am using Windows 7 Enterprise edition.
    Thanks

    what do you mean by major graphics problem, please elaborate.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Screen graphics drawing corruption on iMac 11,1 Intel Core i7 2.8 GHz running OSX 10.6.8

    iMac 11,1 Intel Core i7 2.8 GHz running OSX 10.6.8 with ATI Radeon HD 4850 display hardware has screen graphics drawing corruption. - some bizarre effects like a surround on two sides of main Firefox window with elements captured from the top and side of main screen. Toolbar buttons that walk off their positions when resizing a window? Mouse focal point offset in Firefox. Fuzzy sceen draws in Safari

    Hello,
    Have you blown the dust out lately?
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.

  • DVD playback: screen goes black in full-screen mode

    Hi. Having problems with DVD playback on 1 Ghz Powerbook G4 12 ". When trying to view in full-screen (or even sometimes in maximum) mode, screen simply goes black. Sound still works, but no visuals. As soon as I revert back to Normal size, visuals play fine.
    Any ideas ? This is a problem which has developed rather than being with the machine since I bought it. Just for the record, I have 1.25 GB RAM installed and am running 10.4.5.

    OK, if you see words, it's not your graphics card. Follow this knowledge base article. The BlackBerry desktop message suggests a corrupted device os. NOTE THIS WILL ERASR ALL DATA SI BACK UP AS POSSIBLE!
    How to to recover a BlackBerry® smartphone after all other possible means of recovery have been exhausted.
    Remove the battery from the BlackBerry smartphone.
    Open a web browser and navigage to the following link.  
    Click Check for Updates.
    Wait for the Device Connection dialog box to appear with no result for pin.
    Connect the BlackBerry smartphone to the computer with the battery removed.
    Press Ok when the PIN field is populated with the BlackBerry smartphones PIN number or PIN-Unknown is displayed.
    Note: Some BlackBerry smartphones may be in a reset loop, which will cause the field to populate and depopulate. This is not an issue; pressing OK when the PIN field is populated will allow the process to move forward.
    Select the appropriate version of BlackBerry Device Software and applications for the BlackBerry smartphone, click Next.
    At the Review the following options before you begin dialog, insert the battery without unplugging the USB cable.
    Press Install update.
    1. If a post has helped you, show your appreciation by clicking Like at the bottom of the message box.
    2. If a post has solved your question, please click ''accept as solution'' to verify your question has been solved.

  • Zany image for full screen preview

    sometimes I get  this kind of thing when View>full screen preview (reduced to fit):
    Hard to evaluate.  Need to restart computer but i dont want to.
    mac OSX.7.4
    bridge 6 up to date

    It could be one of several things, but the first suspects are a bad video card or, bad VRAM or bad RAM, either one of which can go bad at any time.
    If Use Software Rendering totally fixes it, then my money is on the video card being the culprit, of course.  The card or the VRAM on it could be failing, and the video driver file can get corrupted too,  Temporarily substituting the graphics card for a known good card will show whether it's video hardware or video software related.
    What are the temperatures inside that Mac?  You can use Hardware Monitor (shareware) to read that.  It could be heat related, especially if you get readings above 170ºF.

  • Full screen playback in PE9 garbled - anyone else see this?

    I mentioned this in a general post but I'll make it a specific question now -
    When I click on the "full screen" button near the top right of the interface, full screen playback has a corrupted area which corresponds with where the timescale is on the normal interface.  Sometimes the playback cursor "breaks through" as a black vertical line too.
    Does anyone else see this?
    I have the latest Nvidia drivers installed.  Windows XP Pro SP3 Q9300 quad core PC 2GB memory.
    Thanks for any observations.

    It's very obvious if you do have the problem - a wide strip of the video (horizontal, matching the timescale hidden beneath the full screen display) gets shifted sideways somewhat (flickering on and off), so that any vertical object in the footage gets displaced sideways at that point in an obvious juddering fashion.  I tried to do a screen grab but simply doing that makes the problem change - it is more evident when the footage is running than when frozen.
    Anyway, adjusting the Windows Display Properties "hardware acceleration" slider, moving it to the left till it is set to the point where the message beneath reads "Disable all DirectDraw and Direct3D acceleraions.  Use this setting to correct severe problems with DirectX accelerated applications" seems to fix the problem.
    Graphics card is a GeForce 8600 GT, in case that's relevant.
    At least I know how to work around the problem.  Let's see if others come across the same problem in due course.  Maybe it's just a local issue.

  • Graphical corruption in X after playing media or using chromium

    In SMPlayer (xv output) and sdlmame, when I switch to full screen, afterwards X will show graphical corruption. This does not seem to happen with VLC or GnomeMPlayer.
    For SMPlayer, the task bar space between icons and the pager, and the rest of it after the pager will become unreadable and just a mess of grey and coloured lines. After about a minute when the clock applet updates the time, it will redraw and become readable again (only the clock applet, not the whole bar). To make the rest visible too, I have to move the mouse over it and click the icons (volume, brightness, and so on) so they get redrawn.
    In the case of sdlmame, the desktop background picture even gets corrupted in maybe its top 25% area over the full screen width.
    When I start chromium web browser, the top part of the browser window and the task bar above it will flicker like crazy with corrupted lines. Sometimes the whole window will flicker, I think. This happens mostly while typing in an URL, and leaves the same corruption in the task bar as SMPlayer (->have to mouseover/click on the icons to make them redraw).
    It happens _all the time_ if I just move the mouse over the website (for examle google translate). I don't even have to click on anything, just moving will make the whole upper half of the chromium window flicker like crazy with corrupted lines, rendering the page unreadable.
    In Firefox this problem does not occur at all.
    I'm using Xfce4 and Compositor is disabled.
    Last edited by mir91 (2014-05-31 13:46:37)

    I am now pretty sure that this is a software bug in Leopard. I have been back to Tiger for 10 days straight now and the problem hasn't reoccurred.
    It can't the temperature, because I installed iStats and they show the hottest part is GPU, but it is only 51 degrees C (123.8 fahrenheit) during hours of heavy use. Also back in leopard I tried out a fan control app and set all fans to max RPM (which was really loud), and that didn't affect the random polygons.
    I don't know why it happens only in Leopard but I am not going to update back to it till I know for sure that this has been fixed.
    PS. The only system level 3rd party app I had installed in Leopard when the problem first occurred was Steer mouse, but I doubt a mouse driver can cause this kind of a problem. Besides I have it always installed in Tiger too. This is why I outclose the possibility of 3rd party apps being the cause.

Maybe you are looking for

  • HAP_Document BSP Application "Enter Objective Here "

    HI All BSP Expert and PMS Expert. BSP Standard application "HAP_DOCUMENT" Copy as a Z application. In Standard application "Enter Objective Here" Coming As Label but In Z Application i had changed as Input Field , That Input Field Values it  Does not

  • Creating multiple filters in a Query

    Hello everyone: I have a set of filters that I need to put in a BEX query. In the where clause of an SQL statement it would look something like this: select **.... from **.... where Inspection_Lot_ID = 1 and Goods_movement type = '001' or Inspection_

  • External FW Enclosure Woes

    Hi all, haven't posted here for a long while, i suppose that's a good thing :P anyway i'm having trouble with FW, an enclosure, and a HD with two partitions that i want. The original FW enclosure i had did something strange - when on it caused some m

  • Suddenly "Sign In" required, and Adobe can't connect?

    Yesterday my apps were working fine; today when I try to open them, Adobe is telling me I have to sign in, and then telling me it can't find my internet connection. Anyone have any idea what's going on? No live chat people available, and I urgently n

  • Problem in hyperlink

    Hello I have created an hyperlink in JEditorPane. Hyper link will only work after you set the editor Editable to false. I have done so. But after that I cannot type any text in the pane as I have set the Editable to false. Can you please provide me t