InputBox inProfile=new InputBox(mwcMain, "Enter the name of this profile:", "The profile name could not be empty!");
inProfile.setCheckEmpty(true);
inProfile.setVisible(true);
if(inProfile.getResult()==null)
return;
Profile prfMain=new Profile(inProfile.getResult());
inProfile=null;
FileWriter fwDBWriter;
if(!fdCreate.getSelectedFile().exists())
{
if((!fdCreate.getSelectedFile().getName().toLowerCase().endsWith(".vcd"))&&(!(new File(fdCreate.getSelectedFile().getName()+".vcd")).exists()))