I have tried to send keys but it's not working.
IWebElement body = driver.FindElement(By.TagName("body"))
body.SendKeys(Keys.Control + "T")
I also tried action class:
Actions act = new Actions(driver);
act.keyDown(Keys.CONTROL).sendKeys("t").keyUp(Keys.CONTROL).build().perform();
You can use the following for vb.net