Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. How to register .ocx file from code

How to register .ocx file from code

Scheduled Pinned Locked Moved C#
csharptutorialquestion
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    SajjadZare
    wrote on last edited by
    #1

    How to register .ocx file with (regsvr32) from code in C# ?

    H 1 Reply Last reply
    0
    • S SajjadZare

      How to register .ocx file with (regsvr32) from code in C# ?

      H Offline
      H Offline
      Hari Om Prakash Sharma
      wrote on last edited by
      #2

      System.Diagnostics.Process.Start("regsvr32 " + ocxfile_path);

      First and the Foremost: FIGHT TO WIN mera sirmour: sirmour.co.in

      S 1 Reply Last reply
      0
      • H Hari Om Prakash Sharma

        System.Diagnostics.Process.Start("regsvr32 " + ocxfile_path);

        First and the Foremost: FIGHT TO WIN mera sirmour: sirmour.co.in

        S Offline
        S Offline
        SajjadZare
        wrote on last edited by
        #3

        I did it but says: The system cannot find the file specified

        L 1 Reply Last reply
        0
        • S SajjadZare

          I did it but says: The system cannot find the file specified

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          Use a fully qualified path. Something like this:

          string ocxPath = Path.Combine(Application.StartupPath, "myocxfile.ocx");
          Process.Start(string.Format("regsvr32 {0}", ocxPath));

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups