gwilson
gwilson

Reputation: 73

Open & close default browser in VB.net

I am trying to launch a URL in the default web browser and then close it after "x" time.

To open it I am using Process.Start(url) but can't figure out how to close it.

Suggestions?

Upvotes: 0

Views: 1335

Answers (1)

Nadeem_MK
Nadeem_MK

Reputation: 7689

I think you've got the Process.Kill() method which cater for this.

Upvotes: 1

Related Questions