Search results for query: *

  1. S

    Stop winodw service from itself

    Hello friends, I've created one window service which performs particular task at regular inverval. I am using one desktop application using Service Controller to start the service. So its OnStart method will be called. Now from this method one private proceudre is called which runs at regular...
  2. S

    How to use ActiveX in asp.net

    Hello friends, I've one aspx page and I am adding reference to com components (I want to use map point control). and dragging that component to my aspx page. Now I want to access that control at server-side. Can u give me an idea or sample code how to access that control at server side...
  3. S

    Loading a class library dynamically

    Hi, You can use following sample code. Private objAssemblyName As [Assembly] objAssemblyName = [Assembly].LoadFile(strAssName) // where strAssName may be test1.dll or test3.dll (physical path) Dim obj as Object = objAssemblyName.CreateInstance("CTest1") //May be CTest3 as per yr...
  4. S

    How to open Jobs Winodw of SQL Server 2000 from VB.NET

    Hello guys, I've one query regarding accessing SQL Server 2000. Is it possible to open SQL Server 2000 Jobs Scheduling Dialogue box from VB.NET? (Server -> Management -> Jobs) Waiting for your reply. Thanks.
Back
Top