i'm trying to find a fragment that i created by tag
tachoFrag = (menu1_Fragment) getFragmentManager().findFragmentByTag("Tacho");
overviewFrag= (menu2_Fragment)getFragmentManager().findFragmentByTag("Overview");
dataLogFrag = (menu3_Fragment) getFragmentManager().findFragmentByTag("Datalogger");
transaction = getFragmentManager().beginTransaction();
but when i try to replace the content of the frame i get a null problem because the fragments are not found .... Help?