Jump to content

how!!

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
5 replies to this topic

#1
kiss

kiss

    Newbie

  • Members
  • PipPip
  • 22 posts
Hi.....
look: if my project contain tow forms (form1/form2)....

i need code to export form2 to this path (c:\ form2.exe)

if i open that path it open form2 not form1..

thank you
iyado

#2
trix

trix

    Newbie

  • Members
  • Pip
  • 1 posts
... try google.....google is your freind

#3
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
As I explained to a previous thread.. You need to make an EXE file for form 1 and another EXE file for form 2.

#4
kiss

kiss

    Newbie

  • Members
  • PipPip
  • 22 posts

TheComputerMaster said:

As I explained to a previous thread.. You need to make an EXE file for form 1 and another EXE file for form 2.

yes .how???:mad:

#5
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
In order to build a separate exe file for a form you have to create two projects! I know this was already stated to you.

Project 1 = Form1
Project 2 = Form2

Build each and then you can execute Form2. It seems like a waste though, why don't you just call Form2 from code?

#6
kiss

kiss

    Newbie

  • Members
  • PipPip
  • 22 posts

Lop said:

In order to build a separate exe file for a form you have to create two projects! I know this was already stated to you.

Project 1 = Form1
Project 2 = Form2

Build each and then you can execute Form2. It seems like a waste though, why don't you just call Form2 from code?


okok . what abt code??