16 Replies
do you think any solution to this
A StackOverflowException is what you get when you’re too deep in recursion
It’s likely that you’ve got an infinite recursion loop going on
ok so here
i have to put something like a timer
or
What’s this whole function called?
public static void CreateMovie()
method
@Hugh
i looked my code and im not able to find the infinitel oop.
The num variable never seems to be increased.
This way you have an infinite while loop
hum i see
i know its in this line of code
Good spot
i put my code in chatgtp
so what should i add or delete guys ?
if u can help
How many times do you want the loop to run?
infinite
huh
no
1 time
int i = 0;
for (int num = 8; i < num; i++) ;
?
i tried this but it still didnt work
If you want it to run an infinite number of times, then that block will need to be a function called from a timer
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.