The handle is invalid error exception when screenshoot from screen why and how to solve

Hi guys i have problem when i take screen shoot from screen it give me exception
error the handle is invalid as following
ee the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.ComponentModel.Win32Exception: The handle is invalid
   at System.Drawing.Graphics.CopyFromScreen(Int32 sourceX, Int32 sourceY, Int32 destinationX, Int32 destinationY, Size blockRegionSize, CopyPixelOperation copyPixelOperation)
   at System.Drawing.Graphics.CopyFromScreen(Int32 sourceX, Int32 sourceY, Int32 destinationX, Int32 destinationY, Size blockRegionSize)
   at Sales.Form1.timer4_Tick(Object sender, EventArgs e)
   at System.Windows.Forms.Timer.OnTick(EventArgs e)
   at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
this is my code as following :
under timer tick event problem happen in screen shoot
the proplem in these lines
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(0, 0, 0, 0, bitmap.Size);
bitmap.Save("C:\\screenshot.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
if i put these lines under button event work ok
but if i but these lines under timer make problem and give me exception above why
this code of screenshoot work in my windows xp but when i put in windows server 2003 it give me error in screenshoot under timer event
private void timer4_Tick(object sender, EventArgs e)
Sales.SalesClass SalesClass1 = new Sales.SalesClass();
if (SalesClass1.IsStartValid("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123"))
issent = 1;
label7.Text = issent.ToString();
else
issent = 0;
label7.Text = issent.ToString();
if (Convert.ToInt32(label3.Text) > 0 && Convert.ToInt32(label2.Text) > Convert.ToInt32(label3.Text) &&Convert.ToInt32(label7.Text) == 0)
Sales.SalesClass SalesClass2 = new Sales.SalesClass();
SalesClass2.InsertShipment("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123", Convert.ToInt32(label3.Text), Convert.ToInt32(label2.Text));
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(0, 0, 0, 0, bitmap.Size);
bitmap.Save("C:\\screenshot.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
string smtpAddress = "smtp.mail.yahoo.com";
int portNumber = 587;
bool enableSSL = true;
string emailFrom = "[email protected]";
string password = "3444";
string emailTo = "[email protected]";
string subject = "Working Start"+label6.Text;
string body =
"Quantity Required" + "" + "(" + label2.Text + ")" + "/" +
"Quantity Shipped" + "/" + "(" + label3.Text + ")" + "/" +
"Quantity Remaining" + "/" + "(" + label4.Text + ")";
using (MailMessage mail = new MailMessage())
mail.From = new MailAddress(emailFrom);
mail.To.Add(emailTo);
mail.Subject = subject;
mail.Body = body;
mail.IsBodyHtml = true;
mail.Attachments.Add(new Attachment("c:\\screenshot.jpeg"));
System.Net.Mail.SmtpClient shggmtp = new SmtpClient(smtpAddress, portNumber);
smtp.Credentials = new NetworkCredential(emailFrom, password);
smtp.EnableSsl = enableSSL;
smtp.Send(mail);

Thank you for reply
timer3 tick event and enabled to maximize the form if minimized
this is all my code as following
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Mail;
using System.Net;
using System.IO;
using System.Data.SqlTypes;
using System.Data.SqlClient;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Microsoft.Win32;
namespace Sales
public partial class Form1 : Form
RegistryKey reg = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
public int issent;
public int isfinish;
public Form1()
reg.SetValue("Sales", Application.ExecutablePath.ToString());
InitializeComponent();
private const int SW_HIDE = 0;
private const int SW_SHOWNORMAL = 1;
private const int SW_SHOWMINIMIZED = 2;
private const int SW_SHOWMAXIMIZED = 3;
private const int SW_SHOWNOACTIVATE = 4;
private const int SW_RESTORE = 9;
private const int SW_SHOWDEFAULT = 10;
[DllImport("user32.dll")]
private static extern int ShowWindow(int hwnd, int nCmdShow);
private void Form1_Load(object sender, EventArgs e)
label8.Visible = false;
label9.Visible = false;
label10.Visible = false;
label2.Visible = false;
label3.Visible = false;
label7.Visible = false;
label8.Visible = false;
label1.Visible = false;
label2.Visible = false;
label3.Visible = false;
label4.Visible = false;
Sales.SalesClass SalesClass4 = new Sales.SalesClass();
string EndQuantity = SalesClass4.MaxEndQuantity("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
string TotalQuantity = SalesClass4.MaxTotalQuantity("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
label9.Text = EndQuantity;
label10.Text = TotalQuantity;
if (SalesClass4.IsStartValid("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123"))
issent = 1;
label7.Text = issent.ToString();
else
issent = 0;
label7.Text = issent.ToString();
label6.Text = DateTime.Now.ToString("dd/MM/yyyy");
timer1.Start();
Sales.SalesClass SalesClass1 = new Sales.SalesClass();
DataTable dt = SalesClass1.ShowSalesData("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
label1.Visible = false;
dataGridView1.DataSource = dt;
dataGridView1[0, dataGridView1.Rows.Count - 1].Value = "Total Sum";
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[0].Style.BackColor = Color.Yellow;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[1].Style.ForeColor = Color.Red;
dataGridView1.Refresh();
Sales.SalesClass SalesClass5 = new Sales.SalesClass();
if (SalesClass5.IsFinishValid("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123", Convert.ToInt32(label3.Text), Convert.ToInt32(label2.Text)))
isfinish = 1;
label8.Text = isfinish.ToString();
else
isfinish = 0;
label8.Text = isfinish.ToString();
label11.Text = SalesClass5.MaxID1("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
private void timer1_Tick(object sender, EventArgs e)
label6.Text = DateTime.Now.ToString("dd/MM/yyyy");
Sales.SalesClass SalesClass1 = new Sales.SalesClass();
DataTable dt = SalesClass1.ShowSalesData("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
label1.Visible = false;
dataGridView1.DataSource = dt;
dataGridView1[0, dataGridView1.Rows.Count - 1].Value = "Total Sum";
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[0].Style.BackColor = Color.Yellow;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[1].Style.ForeColor = Color.Red;
dataGridView1.Refresh();
private void dataGridView1_DataSourceChanged(object sender, EventArgs e)
double Total = 0;
double Total1 = 0;
double Total2 = 0;
for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
Total += Convert.ToDouble(dataGridView1.Rows[i].Cells[6].Value);
Total1 += Convert.ToDouble(dataGridView1.Rows[i].Cells[7].Value);
Total2 += Convert.ToDouble(dataGridView1.Rows[i].Cells[8].Value);
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[6].Value = Total;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[7].Value = Total1;
dataGridView1.Rows[dataGridView1.Rows.Count - 1].Cells[8].Value = Total2;
label2.Text = Total.ToString();
label3.Text = Total1.ToString();
label4.Text = Total2.ToString();
private void timer2_Tick(object sender, EventArgs e)
Sales.SalesClass SalesClass1 = new Sales.SalesClass();
string ID = SalesClass1.MaxID("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
string EndQuantity = SalesClass1.MaxEndQuantity("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
string TotalQuantity = SalesClass1.MaxTotalQuantity("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");
label9.Text = EndQuantity;
label10.Text = TotalQuantity;
label11.Text = ID;
if (SalesClass1.IsFinishValid("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123", Convert.ToInt32(label3.Text), Convert.ToInt32(label2.Text)))
isfinish = 1;
label8.Text = isfinish.ToString();
else
isfinish = 0;
label8.Text = isfinish.ToString();
if (Convert.ToInt32(label2.Text) == Convert.ToInt32(label3.Text) && Convert.ToInt32(label8.Text) == 0 && Convert.ToInt32(label2.Text) > 0 && Convert.ToInt32(label3.Text) > 0)
Sales.SalesClass SalesClass2 = new Sales.SalesClass();
SalesClass2.InsertLastShipment("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123", Convert.ToInt32(label3.Text), Convert.ToInt32(label2.Text), Convert.ToInt32(label11.Text));
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y,
0, 0, Screen.PrimaryScreen.Bounds.Size,System.Drawing.CopyPixelOperation.SourceCopy);
bitmap.Save("C:\\screenshot.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
string smtpAddress = "smtp.mail.yahoo.com";
int portNumber = 587;
bool enableSSL = true;
string emailFrom = "[email protected]";
string password = "2234";
string emailTo = "[email protected]";
string subject = "Working Finish" + label6.Text;
string body = "Summary for Date" + "" + label6.Text + "" +
"Quantity Required" + "" + "(" + label2.Text + ")" + "/" +
"Quantity Shipped" + "/" + "(" + label3.Text + ")" + "/" +
"Quantity Remaining" + "/" + "(" + label4.Text + ")";
using (MailMessage mail = new MailMessage())
mail.From = new MailAddress(emailFrom);
mail.To.Add(emailTo);
mail.Subject = subject;
mail.Body = body;
mail.IsBodyHtml = true;
mail.Attachments.Add(new Attachment("C:\\temp2.gif"));
System.Net.Mail.SmtpClient smtp = new SmtpClient(smtpAddress, portNumber);
smtp.Credentials = new NetworkCredential(emailFrom, password);
smtp.EnableSsl = enableSSL;
smtp.Send(mail);
private void timer3_Tick(object sender, EventArgs e)
int hWnd;
Process[] processRunning = Process.GetProcesses();
foreach (Process pr in processRunning)
if (pr.ProcessName == "Sales.vshost")
hWnd = pr.MainWindowHandle.ToInt32();
ShowWindow(hWnd, SW_SHOWMAXIMIZED);
private void timer4_Tick(object sender, EventArgs e)
Sales.SalesClass SalesClass1 = new Sales.SalesClass();
if (SalesClass1.IsStartValid("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123"))
issent = 1;
label7.Text = issent.ToString();
else
issent = 0;
label7.Text = issent.ToString();
if (Convert.ToInt32(label3.Text) > 0 && Convert.ToInt32(label2.Text) > Convert.ToInt32(label3.Text) && Convert.ToInt32(label7.Text) == 0)
Sales.SalesClass SalesClass2 = new Sales.SalesClass();
SalesClass2.InsertShipment("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123", Convert.ToInt32(label3.Text), Convert.ToInt32(label2.Text));
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y,
0, 0, Screen.PrimaryScreen.Bounds.Size,System.Drawing.CopyPixelOperation.SourceCopy);
bitmap.Save("C:\\screenshot.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
string smtpAddress = "smtp.mail.yahoo.com";
int portNumber = 587;
bool enableSSL = true;
string emailFrom = "[email protected]";
string password = "2234";
string emailTo = "[email protected]";
string subject = "Working Start" + label6.Text;
string body =
"Quantity Required" + "" + "(" + label2.Text + ")" + "/" +
"Quantity Shipped" + "/" + "(" + label3.Text + ")" + "/" +
"Quantity Remaining" + "/" + "(" + label4.Text + ")";
using (MailMessage mail = new MailMessage())
mail.From = new MailAddress(emailFrom);
mail.To.Add(emailTo);
mail.Subject = subject;
mail.Body = body;
mail.IsBodyHtml = true;
mail.Attachments.Add(new Attachment("c:\\screenshot.jpeg"));
System.Net.Mail.SmtpClient smtp = new SmtpClient(smtpAddress, portNumber);
smtp.Credentials = new NetworkCredential(emailFrom, password);
smtp.EnableSsl = enableSSL;
smtp.Send(mail);
private void timer5_Tick(object sender, EventArgs e)
if (Convert.ToInt32(label3.Text) == 0 && Convert.ToInt32(label4.Text) == 0)
Sales.SalesClass SalesClass2 = new Sales.SalesClass();
SalesClass2.DeleteProcesses("Data Source=192.168.1.5;Initial Catalog=Altawi-last06-01-2015;User ID=admin;Password=123");

Similar Messages

  • In my error console, i saw many errors. I didn't know why and how can i solve this?

    I clicked tools, i saw error console. I clicked it and i saw many errors. I didn't know why and how i could solve a problem.

    You can usually ignore those errors, the error console will show errors on many sites that you visit, though the sites will still work.

  • The top bar of my browser is written in Chinese, Why and how do I fix it

    The top bar of my browser is written in Chinese, Why and how do I fix it?
    == This happened ==
    Every time Firefox opened
    == 3 days ago

    If you see CJK (Chinese/Japanese) characters on the Firefox title bar or the Windows Taskbar then that can happen if Firefox switches to UTF-16 encoding for some reason.
    The ''RealPlayer Browser Record Plugin'' extension (Tools > Add-ons > Extensions) has been reported to cause that issue.
    Be sure not to get confused with the RealPlayer plugin (Tools > Add-ons > Plugins) that plays media files.
    The extension adds some extra features like saving media files.
    You can disable/remove the ''RealPlayer Browser Record Plugin'' extension in the RealPlayer Preferences (RealPlayer: Tools > Preferences > Download & Recording)
    See also [[Troubleshooting extensions and themes]]

  • Hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • TS1506 In most of my email attachment the logo ( Mimi attachment ) show and I can not open that attachment , why and how to solve this problem ??? iPad 2, iOS 7

    In most of my email attachment the logo ( Mimi attachment ) show and I can not open that attachment , why and how to solve this problem ???
    iPad 2, iOS 7

    When did this start?  What was the last thing you changed before problem started?
    Have you tried sending the attachment from a different account.  Have a friend send you an attachment. Get a gmail account.
    Send the email with attachments to two different accounts one to your ipad and the other to a gmail account in a web browser and not on an iPad.  See if you can read the ones to the gmail account.
    You did reboot your ipad?
    Standard stuff for ipad.
    http://www.my-iguru.com/ipad/ipad-hints-tips/ipad-viewing-saving-email-attachmen ts.php

  • "The handle is invalid" error installing biztalk 2013 HL7 accelerator

    I have installed Biztalk Server 2013 on a Windows Server 2008 R2 SP1 machine and Sql Server 2008 R2 SP1 but when i try to install the HL7 accelerator it fails with the error message "The
    specified account "Domain\AccountName" is invalid. Error code: The handle is invalid."
    I already followed the steps in http://blogs.msdn.com/b/mandi/archive/2014/06/22/quot-the-handle-is-invalid-quot-error-installing-hl7.aspx but
    the error remains.
    what could be the problem?
    Thanks

    Guys,
    we just got the BizTalk 2010 HL7 accelerator installed yesterday on two servers. We had to uninstall several Windows updates. We tried to pinpoint which updates are causing the problem, but were unable to narrow the list much. Along with the original 5 mentioned
    earlier in the post here is a list of the other unpdates we uninstalled. All of these are very recent updates. It's a bit long, but it worked. Uninstalling these also worked for a friend of mine at another company this week.
    KB2973351
    KB2973201
    KB2962872
    KB2961072
    KB2871997
    KB2982378
    KB3000869
    KB2991963
    KB3005607
    KB3006226
    KB3010788
    KB3011780
    KB2979570
    KB2840631
    KB2978120
    KB3003743
    KB2972100
    KB2861191
    KB2832414
    KB2861698
    KB2973112
    KB2992611
    KB3000061
    KB2987107
    KB2984976
    KB2984972
    KB2977292
    KB2968294
    KB2937610
    KB289484v2
    KB2943357
    KB2993958
    KB3002885
    KB3003057
    KB953196

  • When i do initial set up w creative cloud set uo wont run send error message"installer failed to initialize" why and how can i get pass this

    When I do initial set up with creative cloud set up it wont run a send error message "installer failed to initialize" comes up. Why and how can I get passed this?

    Error "Installer Failed to Initialize" | Install desktop application | Windows

  • "...handle is invalid" : Error only when closing the Applicatio​n, at RunTime everything seems fine...

    HI,
    first of all: I'm relatively new to LabWindows, working on it during some practical work as a Student
    (yeah, and sorry for the bad english, I'm from Germany)
    To the Problem:
    The first important Information:
    After having searched for a solution, I just don't know, what to do,
    My Project consists of ONE Main.uir-File with a Tab, a "Main.c" that basically handles the main .uir-Stuff and some Initiating-Stuff and in addition to that Several Sub-Sourc-Files, one for each Tab-Panel of the Main.uir-Tab.
    To use the UI-Items on the Main-Tab with the Sub-Sources, I am initiating Tab-Handles at startup, that can be used by the SubSource-Files, like:
    GetPanelHandleFromTabPage (PANEL, PANEL_TAB, 2, &BALU);
    With this Handle, I can identify every UI-Items, when working with the SubSources
    The second important information:
    In some of the TabPages of the .uir there are several ControlArrays. To use them I create a ControlArrayHandle, like:
    MWSAverageHandle  = GetCtrlArrayFromResourceID (BALU, MWSAverageArray);
    No, I am able to identify specific elements of the Arrays, like:
    SetCtrlVal (BALU, GetCtrlArrayItem (MWSProgressHandle, ActiveBalun), ProgressString);
    Now there is a Problem, I am not able to solve:
    During runtime, everything works out fine, I can use every element of a ControlArray with this ControlArrayHandle ("MWSProgressHandle"), everything works perfect, no errors at all. BUT, when closing the programm, I get the following error-message:
    NON-FATAL RUN-TIME ERROR:   "Baluns.c", line 313, col 16, thread id 0x00000AB8:  
    Library function error (return value == -4 [0xfffffffc]). Panel, menu bar, or control array handle is invalid
    But this seems somehow ridiulous to me, because at runtime every single line works perfect, every Array-Item can be used without Problems...
    Is there anything I am just not able to see???
    Thanks a lot for your help.
    Greeting from Lübeck, Germany!
    Mathias
    Solved!
    Go to Solution.

    Maybe I just figured something out:
    First of all, most of the Functions, that cause the Error, are in Timer-Callbacks (at this state of development, ALL of them)
    So I just added a Test-Function in a normal Button-Callback, which contains a "GetCtrlArrayItem"-Function, and this specific Line does NOT cause an Error... (Or at least it does not occur in the Error-List, when clicking "continue" in debugging-mode). Somehow the Timer-Callbacks seem to be called, when closing the Application...
    BUT: this happens when I don't do anything in the Application, and the all Timers are Disabled, until some Buttons are pushed (so when I close the application right after opening it, they still should be disabled) 
    @ Wolfgang:
    After discarding I do not want to use one of the handles, or at least I'm not doing that purposely
    @ Roberto:
    Actually I am only discaring the MainPanel-Handle in the Main.uir (and one other Panel, but the error occurred before implementing that other panel). Do all Handles (PanelHandles as well as ControlArrayHandles, TabPageHandles and so on) need to be discarded?
    And no, I did not check the Variable Window, I was not aware of this possibility, I will try to figure that out.

  • An error occured when attempting to change modules .. how to solve this ? Thanks

    Hi there,
    I installed Lightroom 5, then it asked it for some directory to create some catalogue. I changed was was given default to me to some other directory. It was a mistake.
    Then a message saying "An error occured when attempting to change modules" always popped out when I started Lightroom 5.
    In fact I uninstalled and reinstall Lightroom 5 again. Ang it gave me the same message. I am not sure why when I reinstall it, it no longer asked me the directory I wanted to create the catalogue but instead gave me the error message straight away...
    Any ideas on how to solve this is greatly appreciated as I desperately need to use this Lightroom 5 ...
    Thanks

    99jon wrote:
    Did you install from CC desktop or from an Adobe download link?
    When you click on the install button under the Apps tab within the Creative Cloud desktop app, no serial number is required.
    Hi 99Jon,
    I installed from CC desktop and you are correct. You are correct, when I install the CC, there is no serial number required or given to me.
    Let me explain again the sequence of my problem.
    1) I installed the CC desktop after I chose to pay monthly.
    2) The installation was perfectly fine, NO asking of serial number
    3) I install the Lightroom 5.7.1 without problem and NO asking of serial number too.
    4) I run Lightroom 5.7.1 for the first time and it asked me to select a folder for catalogue I didn't select the default directory that it suggested. And this caused problem because it then gives a message saying "An error occurred when attempting to change modules"
    5) so I delete the whole Lightroom 5.7.1 and reinstall from CC Apps.
    6) The problem still persists and I continue to have the "An error occurred when attempting to change modules" message
    7) So I deleted the Lightroom 5.7.1  and reinstall. Problem still persist.
    8) So, I did a software update as advised by the link you gave me (ie Solution 1). Interestingly, the update Version is 5.7.1 which I have.
    9) After the update installation, I no longer receive "An error occured when attempting to change modules" the message but instead tnow I receive message asking me for serial number. So much problem now ...
    Note:
    If you see this link, something is wrong bcos when you clicked the settings wheel, you'll see that Managed Application - Uninstall Unavailable"
    <a href="http://s32.photobucket.com/user/ryan_khoo/media/ScreenShotofAdobeCC_zpsa6c420e7.jpg.html" target="_blank"><img src="http://i32.photobucket.com/albums/d2/ryan_khoo/ScreenShotofAdobeCC_zpsa6c420e7.jpg" border="0" alt=" photo ScreenShotofAdobeCC_zpsa6c420e7.jpg"/></a>
    So now my problem has changed form one where the error message popped up to one which now asked me for serial number ...
    Any ideas ?
    Thanks

  • Unwanted signals going through RS-232 port when Analog I/O channels are being used. Why and how to solve the problem?

    My application involves operating a pH meter via RS-232 protocol. Other hardware are operated using an E-series DAQ board whereby waveforms are software-generated and sent to the relevant hardware using an Analog Output channel. Data acquisition is performed utilising Analog Input channels of the DAQ card that have been configured in a Referenced Single-Ended mode. When the Analog I/O channels are active erroneous readings are observed on the pH meter if the RS-232 cable is connected between the pH meter and the control PC. No problem is observed if the RS-232 cable is disconnected. What could be the problem and any suggestions on how to solve this.

    Comments to your questions:
    Built-in = Originally supplied on the PC's motherboard
    1)I use built-in RS-232 interface
    2)I use built-in Bus type
    3)The RS-232 cable is shield connected
    4) I'm not sure on how to check if the RS-232's digital ground signal is connected. I simply connected the RS-232 cable from the pH meter to the serial port. The serial communication works fine, with no disturbance to the pH meter if i don't initiate data acquisition.

  • Youtube won't let me type in comment box below video, and keeps affecting the video when I hit keys. why and how can I stop it from doing that?

    It seems whenever I use YouTube with Firefox, the YouTube video will only ever let me interact with it unless I go full screen then hit escape. if i don't, I can't type in the text box below the video. even stranger, if I go to a new tab and try to enter something into, say, Google, I can still pause and un-pause the you tube video, even in the other tab, just by trying to type in a text box. Why is this happened, and how can I make it stop? it is starting to get very disruptive.

    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox 14 are most probably caused by a recent Flash 11.3 update and/or a malfunctioning Real Player browser plugin.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    [[Flash 11.3 crashes]]
    [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    http://forums.adobe.com/thread/1018071?tstart=0
    http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    More, I would suggest creating a new Firefox profile for sanity [1]
    Please tell us if this helped!
    [1] http://kb.mozillazine.org/Profile_Manager

  • Windows 8.1 probably the disc is full- error message when i try to save and open a file i downloaded.

    I am trying to download a program from the internet and I save it to my download folder. when I try to save it or open it, I get an error message saying probably the disc is full. this is a new computer with plenty of disc space available.

    I am trying to download a program from the internet and I save it to my download folder. when I try to save it or open it, I get an error message saying probably the disc is full. this is a new computer with plenty of disc space available.
    how much free space on C: do you have available?
    you may need a NAS to move some previous downloads too etc
    Corsair Carbide 300R with TX850V2
    Asus M5A99FX PRO R2.0 CFX/SLI
    AMD Phenom II 965 C3 Black Edition @ 4.0 GHz
    G.SKILL RipjawsX DDR3-2133 8 GB
    EVGA GTX 660 Ti FTW Signature 2 (GK104 Kepler)
    Asus PA238QR IPS LED HDMI DP 1080p
    ST2000DM001 & Windows 8.1 Professional x64
    Microsoft Wireless Desktop 2000 & Wacom Bamboo CHT470M
    Place your rig specifics into your signature like I have, makes it 100x easier to understand!
    Hardcore Games Legendary is the Only Way to Play!

  • TS3694 error -39 leads to error -50 when downloading from itunes store and the download will not resume

    I download a TV Show from itunes and usually as soon as it begins, it tells me that my TV Show is ready to watch and I can choose to "Play TV Show Now" or "Watch Later." I choose Play TV Show Now. Then after about 20 seconds of watching, and error message comes up with the error code -39. The download stopped and when I resume, it will download for 5 more seconds but then I get another error message with the code -50. I click the Resume button and it won't resume no matter how many times I click it. So I have to go to Music, iTunes, iTunes Media, Downloads, and delete the folder with the name of the TV Show that wouldn't work. Then i open iTunes again and Check for Downloads and it starts over downloading.
    The errors only occur when I start playing the TV Show while its downloading. Its fine if I let it download.
    How do I fix the errors?

    That's not the issue (waiting for the download to complete).  The issue is that the download never ever completes.  The Computer says "Hey, you can watch your show," but then just a few moments have downloaded, and you get a "-50" error.
    The published solution for the -50 error is to navigate to the wack place that itunes has decided to store your download (if you can find it) and delete the partial file and try again.
    I have "tried again" 5 times now.  It's not working.

  • Receiving an error report when exporting from Lightroom - Why?

    I use Lightroom, always have. Started editing on a new computer (given to me by an associate as my computer has crashed) - the specs are sufficient to run Lightroom, and 9/10 times it gives me an error message that says it can't export photos. Every once in a while it will actually export the photo, but there's no rhyme or reason to it - Please help.
    The error message only says "Not enough memory" - no other details, no nothing.

    Hi,
    minimum requirements are from sales people, optimal ones form the working people...
    Try to close all other (backgroud) programs.
    Which camera you are using? Try to export with diffent settings. (Why only @60 when you want to print?, Why sharpen for Mate if you want to e-mail?) If you want to print, I would use TIFF.  Try to export images in smaler packages (2x 50 pictures, instead of one 100 pictures job).
    Try to disable the wateramarking.

  • LR has stopped working error message after LR freezes. Why and how to correct

    Lightroom 5.5 periodically freezes and produces the error message "LR has stopped working" and shuts down.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

Maybe you are looking for

  • Leave Quota generation with diifferent rules for different countries

    Hi, I have the following requirement need help in achieving this. Employers must grant 10 days paid leave to employees that worked for six consecutive months from the time of hiring and who worked on not less than 80 per cent of all schedule work day

  • Firming the schedule lines from MRP

    Hi All, I have a scenario where I generate the scheule lines from the total planning run for the material with the help of schedule line indiator = 3. I want these schedule lines should get automatically firmed. Which are the various ways by which I

  • How does one install IoT (flash.ffu) on an SD card under Windows 7

    The dism.exe that runs under Windows7 doesn't support the /ApplyImage command. How do I otherwise install flash.ffu on an SD card under Windows7? I have a second computer that runs Windows8 but it doesn't have an SD drive.

  • How do I control the quality of JPEG images?

    I've written a program that scales a set of JPEG images down to various dimensions. I'm happy with the speed of execution, but quality of the images could be better. How do I specify the quality of the JPEG images I create? In graphics editors, I'm g

  • Material availability Date - User Exit

    Dear All, Can any one help me in finding out User Exit to change Material Availability date in VA01, which system propose automatically. The Problem is I need to assign Mat aval. date as say SY_DATUM + 60. Then system should take this date for ATP ca