|
-
Mar 11th, 2007, 05:10 PM
#1
Thread Starter
Hyperactive Member
[RESOLVED] [2005] Start SQL Server (Express) from code
I have a desktop app that has SQL Server Express runing on the client's desktop only when the program is running. How can I start the service from code?
-
Mar 11th, 2007, 05:19 PM
#2
Re: [2005] Start SQL Server (Express) from code
One easy way is to call "NET START service name".
You can put it in a bat file and start that process or start the cmd.exe and pass the arguments.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Mar 11th, 2007, 05:21 PM
#3
Thread Starter
Hyperactive Member
Re: [2005] Start SQL Server (Express) from code
There is no way to call it in VB?
-
Mar 11th, 2007, 05:27 PM
#4
Thread Starter
Hyperactive Member
Re: [2005] Start SQL Server (Express) from code
Silly me:
Add a ServiceController from the toolbox and on the form add this:
Code:
If ServiceController1.Status = ServiceProcess.ServiceControllerStatus.Stopped Then
ServiceController1.Start()
End If
-
Mar 11th, 2007, 05:29 PM
#5
Re: [2005] Start SQL Server (Express) from code
 Originally Posted by tylerm
There is no way to call it in VB?
Like you did or as I posted using System.Diagnostics.Process.Start
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Aug 8th, 2007, 06:48 AM
#6
Member
Re: [2005] Start SQL Server (Express) from code
 Originally Posted by tylerm
Silly me:
Add a ServiceController from the toolbox and on the form add this:
Code:
If ServiceController1.Status = ServiceProcess.ServiceControllerStatus.Stopped Then
ServiceController1.Start()
End If
y when i use this method, got error shows "Service name contains invalid characters, is empty, or is too long (max length = 80)." What is this error means
-
Aug 11th, 2007, 05:18 PM
#7
Re: [RESOLVED] [2005] Start SQL Server (Express) from code
You didnt provide a serice name for it to start/stop.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|