| Back to Questions Page |
| |
| Question |
How do I obtain documents in cases that have been disposed? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Chapter 7 of the Connecticut Practice Book provides
retention schedules for files and records. These rules
outline what may or may not be available in a file once it
is disposed, and for how long the information will be
available.
For all types of files, you should start by contacting the
clerk?s office in the judicial district where the case
originated to determine whether the file you are seeking is
still there and/or disclosable. The clerk?s office may
inform you that the file has been sent to the Superior
Court Records Center, located at 111 Phoenix Ave., Enfield.
In that event, please obtain the following information from
the clerk?s office to provide to the records center:
The following information is necessary for the records
center to locate a record:
Name on the file
court docket number
date of disposition; and
court where the case was heard.
If you are seeking a civil case, the records center also
needs the ?records center location number,? which is
available at the court.
The phone number at the records center is 860-741-2478.
Please note that information regarding disposed of cases
may not be available because of state erasure laws Chapter
961a, ?Criminal Records,? Part 1, Erasure, of the
Connecticut General Statutes.
 |
| Guest |
| |
| |
| Answer | file an i.a petition befoire the court to obtain the
document but only after the appeal time period  |
| Guest |
| |
| |
| Answer | protected void btnSave_Click(object sender, EventArgs e)
{
if (txtDrugname.Text == string.Empty)
{
MessageBox.Show("Drug Name is
Required", "eMedware Chart");
btnSave.Enabled = true;
btnClose.Enabled = true;
txtDrugname.Focus();
}
else{
int resultsave;
string strDrugName = txtDrugname.Text;
resultsave = objDrugNameID.InsertDrugName
(strDrugName);
if (resultsave == 1)
{
MessageBox.Show("Drug Name inserted
Succesfully", "Confirmation", MessageBoxButtons.OK);
}
else
{
MessageBox.Show("Unable to insert
Sucesfully", "Not Succesful", MessageBoxButtons.OK);
}
//else if()
//{
// resultsave = objDrugNameID.UpdateDrugName
(strDrugName, strDrugNameID);
// if (resultsave == 1)
// {
// MessageBox.Show("Account Updated
Sucesfully", "Success", MessageBoxButtons.OK);
// }
// else
// {
// MessageBox.Show("Updation Un
Succesful", "Not Success", MessageBoxButtons.OK);
// }
//}
BindDrugDetails();
txtDrugname.Text = string.Empty;
btnSave.Enabled = true;
txtDrugname.Focus();
}
}  |
| Santro |
| |
| |
|
|
| |
| Question |
How can I find out information about a pending case? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | For civil, family, housing and small claims cases that are
disclosable, limited information may be available through
the Case Lookup section of the Judicial Branch?s website.
More detailed information may be obtained from disclosable
information in the clerk's file.
Information that is disclosable in a pending criminal case
may be obtained through the clerk?s office in the
courthouse where the case is pending. Please note that a
court clerk can provide only limited information, such as a
continuance date, over the telephone. In addition, a file
may still be in court when you call, so the information may
not be available at that point.
Disclosable documents may be reviewed in the clerk?s
office. Copy fees are $1 a page.
 |
| Guest |
| |
| |
| Answer | /*DrugNames DblCls.cs*/
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MySql.Data.MySqlClient;
/// <summary>
/// Summary description for DrugNamesDblCls
/// </summary>
namespace MedWare
{
public class DrugNamesDblCls
{
MySqlConnection mysqlcon=new MySqlConnection
(System.Configuration.ConfigurationManager.AppSettings
["strDrugs"]);
MySqlCommand mysqlcmd;
DrugNamesDalCls objdrugnames = new DrugNamesDalCls();
public DrugNamesDblCls()
{
//
// TODO: Add constructor logic here
//
}
public int InsDelUpdate(string strQuery)
{
int rec=0;
try
{
mysqlcon.Open();
mysqlcmd = new MySqlCommand(strQuery,
mysqlcon);
mysqlcmd.CommandType = CommandType.Text;
rec = mysqlcmd.ExecuteNonQuery();
}
catch (Exception ex)
{
objdrugnames.ErrorMsg(ex.Message);
}
finally
{
mysqlcon.Close();
}
return rec;
}
}
}  |
| Santro |
| |
| |
| Question |
How up-to-date is the ?Case Lookup? information? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Case information includes all data entry completed by the
close of business the previous day, so the most up-to-date
information may not have been added when you look up a
case. The best way to determine the most recent action in a
file that is disclosable is to go to the clerk?s office and
review the file.
Scheduled court dates for civil and family cases are
available through the case lookup section.
Where can I get an individual?s entire criminal history?
The official source for an individual?s full criminal
history is the State Department of Public Safety, Division
of State Police, Bureau of Investigation.
 |
| Guest |
| |
| |
| Answer | /*DrugNames DalCls.cs*/
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MySql.Data.MySqlClient;
using System.Windows.Forms;
using System.IO;
using MedWare;
/// <summary>
/// Summary description for DrugNamesDalCls
/// </summary>
public class DrugNamesDalCls
{
MySqlConnection mysqlcon = new MySqlConnection
(System.Configuration.ConfigurationManager.AppSettings
["strDrugs"].ToString());
public DrugNamesDalCls()
{
//
// TODO: Add constructor logic here
//
}
public void ErrorMsg(string strError)
{
string strErrorPath =
HttpContext.Current.Server.MapPath("Errordetails.txt");
using (FileStream fs = File.Open(strErrorPath,
FileMode.Append, FileAccess.Write))
{
using (StreamWriter sw = new StreamWriter(fs))
{
sw.WriteLine
("..........................................................
............................");
//sw.WriteLine("ApplicationName:" +
strAppUrl);
sw.WriteLine("Error:" + strError);
sw.WriteLine("Creation Date:" +
DateTime.Now);
sw.WriteLine
("..........................................................
............................");
}
}
}
//FUNCTION FOR INSERT TRANSACTION.
public int InsertDrugName(string pstrDrugName)
{
int irec = 0;
string strDate=DateTime.Now.ToString();
//string strIns = "INSERT INTO DRUGNAME VALUES('" +
pstrDrugName + "')";
string strIns = "INSERT INTO DRUGNAME (DrugName)
values('" + pstrDrugName + "')";
try
{
irec = new DrugNamesDblCls().InsDelUpdate
(strIns);
}
catch (Exception ex)
{
ErrorMsg(ex.Message);
}
return irec;
}
//FUNCTION FOR UPDATE TRANSACTION.
public int UpdateDrugName(string strDrugName, string
DrugNameID)
{
int irec = 0;
string strUpdate = "UPDATE drugname SET DRUGNAME='"
+ strDrugName + "' WHERE DRUGNAMEID=" + DrugNameID;
try
{
irec = new DrugNamesDblCls().InsDelUpdate
(strUpdate);
}
catch (Exception ex)
{
ErrorMsg(ex.Message);
}
return irec;
}
// FUNCTION FOR DELETE TRANSACTION.
public int DeleteDrugName(string strDrugNameID)
{
int irec = 0;
string strDel = "DELETE FROM drugname WHERE
drugname='" + strDrugNameID + "'";
try
{
irec = new DrugNamesDblCls().InsDelUpdate
(strDel);
}
catch (Exception ex)
{
ErrorMsg(ex.Message);
}
return irec;
}
}  |
| Santro |
| |
| |
| Question |
When will the Supreme Court release a particular ruling? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | There is no date set for the release of a Supreme Court
ruling. We recommend that you monitor the Judicial Branch?s
website on a daily basis if you are waiting for a ruling
from either the Supreme or Appellate Court.  |
| Guest |
| |
| |
| Question |
Who is a magistrate? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | A magistrate is a lawyer who is not a judge but who is
authorized to hear and decide certain types of cases. For
example, family support magistrates hear cases involving
child support. In addition, there are motor vehicle/small
claims magistrates.  |
| Guest |
| |
| |
| Answer | A MAGISTRATE IS A PERSON WHO IS ENTITLED TO KEEP PEACE BY
JUDGING DIFFERENT CRIMINAL AND CIVIL PROBLEMS OF THE PEOPLE
UNDER HIS JURISDICTION. AND AT THE TIME OF MAKING ANY
DECISION HE SHOULD NOT BE INFLUENCED BY ANY IMOTION WHICH
MAY DEMONSTRATE HIS INCAPABILITY IN THE JUDICIAL AREA. HE
SHOULD ALWAYS CONTEMPLATE AT THE OF GIVING ANY DECISION.  |
| Partha Pratim Das |
| |
| |
| Question |
What is a judge trial referee? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Age 70 is the mandatory retirement age for Supreme Court
justices, Appellate Court judges and Superior Court judges.
Judge trial referees are judges who are 70 years or older
and who have been designated by the chief justice of the
Supreme Court to hear certain cases.
Senior judges have retired from full-time active service
but have not reached age 70. Senior judges may hear
matters, as assigned.  |
| Guest |
| |
| |
| Question |
What is the Judicial Review Council? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | The Judicial Review Council (860-566-5424) investigates
complaints against judges and may initiate an
investigation. Its powers and composition are outlined in
sections 51-51k and 51-51l of the Connecticut General
Statutes. The Judicial Branch does not oversee the Judicial
Review Council.  |
| Guest |
| |
| |
| Answer | THE JUDICIAL REVIEW COUNCIL HEAR THE COMPLAIN AGAINDT THE
WORNGAND EXCEESS DECISION OF SUBORDINATE COURT THIS POWER
IS IN THE HAND OF SUPREME COURT  |
| Praveen Shrma |
| |
| |
| Question |
What is the Centralized Infractions Bureau? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In 1986 the Judicial Branch centralized the processing of
infractions under the Centralized Infractions Bureau (CIB).
An infraction is the breaking of a state law, regulation or
ordinance that does not require going to court. Individuals
may resolve the infraction by paying the amount to the CIB,
either by mail or in person  |
| Guest |
| |
| |
| Question |
Is the Office of Victim Services the same as the Office of
Victim Advocate? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | No. The Office of Victim Services (OVS), which provides
compensation and other services to crime victims, is part
of the Judicial Branch. Court-based victim advocates are
part of OVS.  |
| Guest |
| |
| |
| Question |
What is the difference between a state marshal and a
judicial marshal? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Judicial marshals, who are part of the Judicial Branch,
provide courthouse security and prisoner transportation.
State marshals serve civil process and are overseen by the
State Marshal Commission. Neither the state marshals nor
the commission fall under the Judicial Branch?s
jurisdiction.  |
| Guest |
| |
| |
| Question |
Are prosecutors and public defenders part of the Judicial
Branch? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Prosecutors are not Judicial Branch employees. They work
for the Division of Criminal Justice, which is part of the
Executive Branch.
The Public Defender Services Commission is the policy-
making body and appointing authority for the Division of
Public Defender Services. Section 51-289(j) of the
Connecticut General Statutes says that the commission is
an ?an autonomous body within the judicial department for
fiscal and budgetary purposes only.? Thus, while the
commission is part of the judicial branch, it is otherwise
autonomous.  |
| Guest |
| |
| |
| Question |
Who oversees the discipline of lawyers? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Through the inherent authority of the court and the
Statewide Grievance Committee, the Judicial Branch oversees
attorney discipline through the Statewide Bar Counsel?s
Office and the Chief Disciplinary Counsel?s Office.
The grievance process begins when a complaint is filed with
the Statewide Bar Counsel. The Chief Disciplinary Counsel?s
Office pursues those complaints before the Statewide
Grievance Committee, in which there has been a finding of
probable cause. The Chief Disciplinary Counsel?s Office
also litigates disciplinary matters in court.
The Connecticut Practice Book contains the Rules of
Professional Conduct and the grievance procedure.
 |
| Guest |
| |
| |
| Question |
What are special sessions of the Superior Court? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | The Superior Court has six special sessions: child
protection; tax; complex litigation; community court;
family violence; and the regional family trial docket.  |
| Guest |
| |
| |
| Question |
Are Probate Courts part of the Superior Court? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Probate Court is not part of the Superior Court.
Connecticut is divided into 123 probate districts, each of
which is presided over by a judge of probate who is elected
to office for a four-year term. Probate judges do not have
to be attorneys.  |
| Guest |
| |
| |
| Question |
What about housing and small claims matters? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Cases involving housing are heard in special housing
sessions in the Bridgeport, Hartford, New Britain, New
Haven, Stamford-Norwalk and Waterbury judicial districts.
Among the types of housing matters heard at the judicial
district housing session locations are: summary process
(eviction; civil jury and non-jury; and criminal jury and
non-jury.)
In all other judicial districts, housing cases are part of
the regular civil docket and are heard in GA courts.
Small claims also is part of the civil division. More small
claims information.  |
| Guest |
| |
| |
|
| |
|
Back to Questions Page |