Auto starting script and code posting

4 posts / 0 new
Last post
Ernesto Gurgel ...
Offline
Joined: 07/18/2020 - 07:15
Auto starting script and code posting

Hi, I have two small doubts that I would like to know if you could help me.
1. I was told that IDEA allows you to schedule scripts to start and run, how do you do that?
2. The second question is how to post code here? I saw that Brian posts the complete code and it is well organized in the forum. I tried to put code between ```, but it does not work.

Brian Element's picture
Brian Element
Offline
Joined: 07/11/2012 - 19:57

Hi Ernesto,

Here is a video that will show you how to schedule an IDEA script - https://www.youtube.com/watch?v=HFlCI6qdgFs&t=654s

For posting code what you need to do is click on Disable rich-text that is under this edit box.  When you do you will see some html code.  Add another line with these commands:

<pre><code> - click enter

Add your code

</code></pre> 

click on the enable rich-text and you should now see your code formatted as you copied it in.

Ernesto Gurgel ...
Offline
Joined: 07/18/2020 - 07:15

Sub Main

Dim X as string

x = "teste"

msgbox x

End Sub

Ernesto Gurgel ...
Offline
Joined: 07/18/2020 - 07:15

Thank you, Brain!