1. IDE Possibilities?

Is it possible to use the IDE as an integrated development environment? I=
=20
mean, seriously... If so, where do I add my own code? How do I run the co=
de=20
instead of just view the windows?

I know it's called "IDE," but I think right now, the way I use it, it's=20
basically a GUI development tool as opposed to an IDE.


--=20
"Never trust an operating system you don't have sources for." - Jorg Wuns=
ch
My Microsoft OS... It's just for games, now.

new topic     » topic index » view message » categorize

2. Re: IDE Possibilities?

C.K.,

You could right click on a control & then select "editor", in which case you
could then select an event to write code for related to that control.  &
there's a "Run" button in the editor and in the original window too.

Dan Moyer

----- Original Message -----
From: "C. K. Lester" <cklester at yahoo.com>
To: "EUforum" <EUforum at topica.com>
Subject: IDE Possibilities?



Is it possible to use the IDE as an integrated development environment? I
mean, seriously... If so, where do I add my own code? How do I run the code
instead of just view the windows?

I know it's called "IDE," but I think right now, the way I use it, it's
basically a GUI development tool as opposed to an IDE.


--
"Never trust an operating system you don't have sources for." - Jorg Wunsch
My Microsoft OS... It's just for games, now.

==^^===============================================================
This email was sent to: DANIELMOYER at prodigy.net


TOPICA - Start your own email discussion group. FREE!

new topic     » goto parent     » topic index » view message » categorize

3. Re: IDE Possibilities?

On Wednesday 22 January 2003 09:51 pm, you wrote:
>
> You could right click on a control & then select "editor", in which cas=
e
> you could then select an event to write code for related to that contro=
l.=20
> & there's a "Run" button in the editor and in the original window too.

Dan, I know about assigning the control code... but what about the "exter=
nal"=20
code? That is, functions or procedures not specifically assigned to a=20
control.

new topic     » goto parent     » topic index » view message » categorize

4. Re: IDE Possibilities?

C.K.,

To be more explicit:

In the main window, click "Editors", then "Code Editor" (and *notice* the
existence of the other editors to create code for menus, popups, and
timers).  In the editor window that comes up, notice on the left top a
listbox for all controls you've created, and select the one that you want to
write code for; then in the right top listbox, click on an event you want to
have your code respond to, and a pre-built template of code will appear in
the editor, creating the event trap.  You write your code inside that
procedure.

You can also write code outside actual events, by clicking on any of the top
entries under Events which are in parenthesis [(Begin), (Intro), (General)].
And of course you could even put comments & version info in those
pseudo-event sections, too.


To run your code:  in the Editor, there's a menu choice "Run Code" (not sure
what the difference between "Run" & "Temp Run" is, I just use "Run"); and in
the main design window there's a menu choice "Run" which has a number of
choices, of which "Run Project/include" would run your code.

Closing the Editor window "saves" the code you've written and gets you back
to the main controls creation window.

And as I said, right clicking on a control you've created (in the Form
Design window) will bring up a menu with "Editor" as one choice.

Dan Moyer

----- Original Message -----
From: "C. K. Lester" <cklester at yahoo.com>
To: "EUforum" <EUforum at topica.com>
Sent: Wednesday, January 22, 2003 7:29 PM
Subject: IDE Possibilities?



Is it possible to use the IDE as an integrated development environment? I
mean, seriously... If so, where do I add my own code? How do I run the code
instead of just view the windows?

I know it's called "IDE," but I think right now, the way I use it, it's
basically a GUI development tool as opposed to an IDE.


--
"Never trust an operating system you don't have sources for." - Jorg Wunsch
My Microsoft OS... It's just for games, now.

==^^===============================================================
This email was sent to: DANIELMOYER at prodigy.net


TOPICA - Start your own email discussion group. FREE!

new topic     » goto parent     » topic index » view message » categorize

5. Re: IDE Possibilities?

C.K.,

Write that code in any of the pseudo-events (Begin), (Intro), or (General).

Dan

----- Original Message -----
From: "C. K. Lester" <cklester at yahoo.com>
To: "EUforum" <EUforum at topica.com>
Subject: Re: IDE Possibilities?



On Wednesday 22 January 2003 09:51 pm, you wrote:
>
> You could right click on a control & then select "editor", in which case
> you could then select an event to write code for related to that control.
> & there's a "Run" button in the editor and in the original window too.

Dan, I know about assigning the control code... but what about the
"external"
code? That is, functions or procedures not specifically assigned to a
control.

==^^===============================================================
This email was sent to: DANIELMOYER at prodigy.net


TOPICA - Start your own email discussion group. FREE!

new topic     » goto parent     » topic index » view message » categorize

6. Re: IDE Possibilities?

On Wednesday 22 January 2003 10:13 pm, you wrote:
>
> C.K.,
>
> Write that code in any of the pseudo-events (Begin), (Intro), or (Gener=
al).

Dan!

Thanks for the heads-up! I will check that out and report back... ;)

-ck

new topic     » goto parent     » topic index » view message » categorize

7. Re: IDE Possibilities?

Patrick,

In fact, each control also has its own (General) pseudo-event, which can be
used to keep extra code that might relate to that control in an
organized/accessible place.

Dan Moyer

----- Original Message -----
From: <Patrick.Barnes at transgrid.com.au>
To: "EUforum" <EUforum at topica.com>
Subject: RE: IDE Possibilities?


>
> No, it is quite useful....
>
> Go to Editors --> Code editor in the menu...
>
> Choose the control you want to add code for from the dropdown on the left,
and the action from the dropdown on the right.
> (You can tell whether an action has code added for that control, because
it will have an asterisk.)
>
> If you want to add code for a control that has no corresponding action,
choose {Begin}, {General}, or {Final} as the action, and put some code in
there.
>
> If you want to define constants, general routines, utility functions
etc... basically anything that doesn't correspond to one control: Put it in
the main window entry, under {Begin}, {Intro}, {General}, or {Final}.
>
> I can't remember what significance each of those entries has... I'm sure
Judith could advise.
>
> -----Original Message-----
> From: C. K. Lester [mailto:cklester at yahoo.com]
> Sent: Thursday, 23 January 2003 14:29
> To: EUforum
> Subject: IDE Possibilities?
>
>
> Is it possible to use the IDE as an integrated development environment? I
> mean, seriously... If so, where do I add my own code? How do I run the
code
> instead of just view the windows?
>
> I know it's called "IDE," but I think right now, the way I use it, it's
> basically a GUI development tool as opposed to an IDE.
>
>
> --
> "Never trust an operating system you don't have sources for." - Jorg
Wunsch
> My Microsoft OS... It's just for games, now.
>
> ==^^===============================================================
> This email was sent to: Patrick.Barnes at transgrid.com.au
>
>
> TOPICA - Start your own email discussion group. FREE!
>
>
> ***********************************************************************
>
>
> ***********************************************************************
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu