c#
StatCounter
View My Stats
Showing posts with label
Shell command in VBScript
.
Show all posts
Showing posts with label
Shell command in VBScript
.
Show all posts
Tuesday, February 10, 2009
Shell command in VBScript
Shell command in VBScript
'VBScript File
dim program
program="C:\Windows\System32\notepad.exe"
set oShell =CreateObject("wscript.shell")
oShell.Run(program)
For the above example i am running the system file through shell command
Older Posts
Home
Subscribe to:
Posts (Atom)
Name value collection in C#
Name value collection in C# The name value collection is same like the HashTable. We can set the Object value and the Key to that par...
What are Structural Design Patterns?
What are Structural Design Patterns? A structural design pattern establishes a relationship between entities. Thus making it easier for...
Case Insesitive string Comparison in .NET
string a="hi"; if (a.ToLower()=="HI".ToLower()) { Response.Write("Matching"); } ...