VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Bala

by Nirmal Singh Balanwali (2 Submissions)
Category: Windows System Services
Compatability: VB.NET
Difficulty: Unknown Difficulty
Originally Published: Sat 4th November 2006
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Balanwali Distt. Bathinda (Punjab)

API Declarations


'if u like this please email me at [email protected]
Dim fsys As New FileSystemObject
Dim W As WshShell

Rate Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Bala





Private Sub Command1_Click()
On Error Resume Next
Dim s As String
s = "C:\nirmal.scf"
fsys.DeleteFile s, True
End
End Sub

Private Sub Command2_Click()
Set W = CreateObject("WScript.Shell")
W.Run "C:\nirmal.scf"
End Sub

Private Sub Form_Load()
On Error Resume Next
Me.Show
DoEvents
Dim texts As TextStream
Set texts = fsys.CreateTextFile("C:\nirmal.scf")
texts.WriteLine "[Shell]"
texts.WriteLine "Command = 2"
texts.WriteLine "IconFile=explorer.exe,3"
texts.WriteLine "[Taskbar]"
texts.WriteLine "Command=ToggleDesktop"
End Sub


Download this snippet    Add to My Saved Code

Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Bala Comments

No comments have been posted about Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Bala. Why not be the first to post a comment about Perform Show Disktop operation from ur VB from This demo is created by Nirmal singh of Village Bala.

Post your comment

Subject:
Message:
0/1000 characters