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. Visual Basic
  4. Multiple Projects

Multiple Projects

Scheduled Pinned Locked Moved Visual Basic
question
6 Posts 2 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.
  • A Offline
    A Offline
    Anonymous
    wrote on last edited by
    #1

    I wrote 2 different projects 1 and 2 at different time. Now I want to have project 1 calling project 2. How can I do that? Any hint will be appreciated

    R 1 Reply Last reply
    0
    • A Anonymous

      I wrote 2 different projects 1 and 2 at different time. Now I want to have project 1 calling project 2. How can I do that? Any hint will be appreciated

      R Offline
      R Offline
      Ray Cassick
      wrote on last edited by
      #2

      A few more details please? :confused: is one project a component and another an exe maybe?


      Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


      A 1 Reply Last reply
      0
      • R Ray Cassick

        A few more details please? :confused: is one project a component and another an exe maybe?


        Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


        A Offline
        A Offline
        Anonymous
        wrote on last edited by
        #3

        The 2 projects are independent.

        R 1 Reply Last reply
        0
        • A Anonymous

          The 2 projects are independent.

          R Offline
          R Offline
          Ray Cassick
          wrote on last edited by
          #4

          Ok.... and by 'calling' what exactly do you mean? - Do you want the first app to start the second app? You can simply shell out and start the second app fronm the first. - Do you want to pass data back and fourth between them? Theer are several ays to do this... remoting, sockets, shared memory, shared files, etc...


          Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


          A 1 Reply Last reply
          0
          • R Ray Cassick

            Ok.... and by 'calling' what exactly do you mean? - Do you want the first app to start the second app? You can simply shell out and start the second app fronm the first. - Do you want to pass data back and fourth between them? Theer are several ays to do this... remoting, sockets, shared memory, shared files, etc...


            Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


            A Offline
            A Offline
            Anonymous
            wrote on last edited by
            #5

            yeah, i want the first to start the second. How can I do that?

            R 1 Reply Last reply
            0
            • A Anonymous

              yeah, i want the first to start the second. How can I do that?

              R Offline
              R Offline
              Ray Cassick
              wrote on last edited by
              #6

              Check out the help under System.Diagnostics.Process Here is some code from my head.... Dim myproc As System.Diagnostics.Process myproc = New System.Diagnostics.Process myproc.EnableRaisingEvents = False myproc.Start("notepad.exe")


              Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


              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