Click here to Skip to main content
15,880,503 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,
I am developing a windows application which using VS 2010, in this application I am using firebird 2.5 database and c#.net language.

when i am debugging my application I am getting an error message, showing "Cannot evaluate expression because a native frame is on top of the call stack" I am getting this message at the step 3.
 <br />
1. if (IsAlreadyRunning())<br />
2.                {<br />
3.                    SwitchToCurrentInstance();<br />
4.                    return false;<br />
5.                }</pre><br />
6. Application.Run(frmMain);

in my singleinstanceApplication class and also at the while statement for reading the data from the DataReader object.
C#
FbDataReader reader;
                       cmd.CommandText = "select acct_name from iaccounts where comp_id=" + GlobleData.Companyid +" Order By (acct_name) asc";
                       reader = cmd.ExecuteReader();
                       if (reader.HasRows == true)
                       {
                           while (reader.Read())
                               autoCompleteStringColl.Add(reader["Acct_Name"].ToString());
                       }



What are the reason for this type of errors? Can any one solve my doubts Please.
Posted
Comments
Sandeep Mewara 25-Jul-12 5:38am    
You need to share what are you doing in SwitchToCurrentInstance
SubrahmanyamGurram 25-Jul-12 5:41am    
In this I am looking for the instance of my application if the instance not there I have to create an Instance for my application else I have to switch to current instance of my application means opened application.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900