Re: This is me venting Community Center Meta DaniWeb by jkon … with a concrete answer. Programming is not always true or false , it is what you want to do , how do you… Create And Install Windows Service Step By Step In C# Programming Web Development by Rabiya_1 … override void OnStop() { LogService("Service Stoped"); timeDelay.Enabled = false; } private void LogService(string content) { FileStream fs = new FileStream(@ "… pass data to another asp page Programming Software Development by Fergus_1 … ID="GridViewMatters" runat="server" AutoGenerateColumns="False" OnRowDataBound="GridViewMatters_RowDataBound"> <Columns> <… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Got it. Thank you so much! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by vortex_1 In my opinion, implementing a feature in a bouncing balls simulation where a new ball is created when two balls collide can add an interesting and dynamic element to the simulation. This feature can introduce a sense of complexity and unpredictability, making the simulation more engaging and challenging for users. It could also provide an … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Great reply, vortex! Agree with all your points. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Digital_39 Hi, Its helpful for me. I got my answer. Re: Create And Install Windows Service Step By Step In C# Programming Web Development by rproffitt Since the answer would be many pages long, read https://learn.microsoft.com/en-us/dotnet/framework/windows-services/walkthrough-creating-a-windows-service-application-in-the-component-designer and consider the two other pages noted there. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …y = y; this.radius = radius; this.xUp = false; this.yUp = false; this.xDx = 1; this.yDy = 1; }… this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; return… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …else if ( x >= this.panelwidth - 2 * this.radius ) { xUp = false; xDx = ( int ) ( Math.random() * 5 + 2 ); } if … this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; return… Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 …y = y; this.radius = radius; this.xUp = false; this.yUp = false; this.xDx = 1; this.yDy = 1; } … this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; }… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … testing, you might want to see if `mail()` is returning false for some reason as well. Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … signature, defaults to true for debugging purpose // $mail->DKIM_copyHeaderFields = false; //Optionally you can add extra headers for signing to meet… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent… How to Optimize RecyclerView performance by implementing the ViewHolder Programming Mobile Development by Mikekelvin … view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_layout, parent, false); return new ViewHolder(view); } @Override public void onBindViewHolder(ViewHolder holder… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … signature, defaults to true for debugging purpose // $mail->DKIM_copyHeaderFields = false; //Optionally you can add extra headers for signing to meet… Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani …swiper', { slidesPerView: 7, centeredSlides: false, spaceBetween: 20, loop: true, … { slidesPerView: 6, centeredSlides: false, spaceBetween: 20, loop: true… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by jkon … DOMContentLoaded or onLoad in older browsers. e.g.: var _fncl=false//if the loader function has called ,_fnc=function() // the loader… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Thank you so much for your reply and additions! It is certainly working as I wanted. I will read through the code you have added and ask you any questions I might have. I hope you don't mind. Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani I’ll mark this question solved :) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani … oh, sorry, missed the bit about you still needing clarifications. Feel feee to ask :) I’ll now unmark this topic as solved. /facepalm Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Hello, Thank you again so much! All your additions are clear, but it seems like whenever two balls collide, more than one ball is added to the arraylist and painted. Any way to have just one ball added to the panel for every collision? Have some kind of a toggle flag in paintcomponent? Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Yes, this is true. Overlapping ball spawns can do that causing a chain reaction. Something like that could be done. How you handle the spawning of the new ball is what I played with a bit before. You will see better collision detection changing to: g.fillOval(ball.getX(), ball.getY(), 1 * ball.getRadius(), 1 * ball.getRadius()); Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim You don't need composer or access to the php.exe. just locate the PHPmailer Directory into your web root, to keep it simple and the require links should point to where it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a folder called includes, this should be relative to the file that is using it.… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > After code changed, not only will still not send email but screen turns blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web-based control … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani To clarify, I am suggesting: [...] //make your email body to send here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "\r\n" . "E-mail Address: " . $_POST['Email'] . "\r\n&… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hi David, > More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email…