@ArafatTehsin
You can use a single screen and show/hide controls when the user clicks on a tab. It will appear like there are multiple screens but there aren't. An advantage of doing things this way is you can reuse any common elements.
Put this code in the OnVisible property of your screen
Set(currentTab,"View Work Details")
Next create a new button and put this code in the OnSelect property
Set(currentTab,"View Work Details")
Then for every control you want showing on 'View Work Details' you must put this code in the visible property. For any controls showing on other screens use the appropriate name
currentPage="View Work Details"
Repeat these steps for each pairing of tabs and controls. If you need further instructions watch this video:
https://www.youtube.com/watch?v=if_mFIfi5PM
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."