About Syed Adeel Rizvi Expertise I can answers questions regarding web based and desktop based programming in VB.Net. Which can include XML, Custom Controls + Computer Hardware and Windows Turboshooting...etc.
More Skills :
1 . PHP - > All Type Of CMS e.g. (Joomla,Drupul,PHPNuke...etc)
2 . ASP
3 . ASP.Net
4 . CMS
5 . MySql
6 . SQl Server 2000 & 2005
7 . Ms Access
8 . Web Designing
9 . Networking Turboshooting
10 . Windows Turboshooting
11 . Hardware Turboshooting
All Type Of Work Related To IT
I also Do Work as a Freelance as Application & Web Developer & Designer
Experience i have 3 years work experience in software house and 4 years work experience for computer hardware and Networking..
Question each time I click on exe file of vb.net application a seprate window will open. Please guide me how just 1 window of application will open even if I click as many number of times on exe file.
Answer Hello,
hmm try this
Private Sub Checkmyapp()
Dim apps() As Process
Dim strModName, strProcName AsString
strModName = Process.GetCurrentProcess.MainModule.ModuleName
strProcName = System.IO.Path.GetFileNameWithoutExtension(strModName)
apps = Process.GetProcessesByName(strProcName)
If apps.Length > 1 Then
MessageBox.Show("There is an instance of this application running.")
apps.kill