Today I found your channel and I immidiately subscribed!! I am beginner in working with C++ Builder and your videos are very helpful for me.
@vclexamples11 жыл бұрын
enjoy ;)
@endlicheripolypterus918510 жыл бұрын
Thank you so much. Those are very helpful for me. I would like to see more detailed information about multi thread such as thread list or thread queue.
@pboothus8 жыл бұрын
At 9:30 in the video, you were able to set thread priority. After you entered an = sign, I noticed the compiler gave you a list of options? How did you get that? My XE2 version does not. Thanks. BTW, nice vid I tried the code and it worked great.
@vclexamples8 жыл бұрын
Try pressing Crtl+Space.
@mircealinea1398 жыл бұрын
hi, can u create more threads for ncrack brute-forcer ??
@realseptictank8 жыл бұрын
exactly what i was looking for... thumbs up!
@lordjim99719 жыл бұрын
Hi, I tried to implemented Web Services with Threads. I noticed that when I open two or more threads I see Web Service is only "one". I looked it up. In Wireshark. I see that only 2 source ports are opend. Independly from how many threats a program opend.
@vclexamples9 жыл бұрын
+Lord Jim Every application has at least one (main) thread.
@lordjim99719 жыл бұрын
Yes I agree. I tried to build a faster program. I have to ask 9000 times/sec. My application opens 90 threads. I noticed that it doesn't accelerate. Requests are not parallel. My 90 threads program binds only two ports. The same does my program when I open only one thread. When I open my program twice I see 4 bind ports.
@vclexamples9 жыл бұрын
+Lord Jim That behaviour depends on the component. For example, Indy (Internet Direct) automatically uses multithreading for all incoming connections while some other network components require you to create and manage threads for new connections manually.. So, check the documention for your web service components.
@lordjim99719 жыл бұрын
+VCL Examples Thanks for help. C++ Builder uses component THTTPRIO. I am looking for some information about this component but I don't see some helpful.
@ravisankar82777 жыл бұрын
Hi i followed the same steps, as per the above video in my compiler Embarcadero berlin 10.1. If i press "Sort" button and wait for "Done",then i close the Main form its closing properly. But When i press "Sort" button and immediately when i close the Main form, i am getting exceptional error and the breakpoint is going to bubble sort forloop,i guess thread not closed properly. So how to clear the Thread properly, if you accidently close the application, even the background work is not completed. How to solve this.. ?
@vclexamples7 жыл бұрын
Terminate the thread before closing the form. You can use OnClose event to do it.
@marcellobachechi6 жыл бұрын
For some reason I still cannot move my form and it counter freezes when I am not in debug mode
@marcellobachechi6 жыл бұрын
Figured it out. In my loop I simply needed to call Application->ProcessMessages(); in my loop.