Search found 873 matches

by RichAlgeni
Fri Jan 26, 2024 7:16 pm
Forum: Coding Questions
Topic: Determine the type of drive
Replies: 4
Views: 396

Re: Determine the type of drive

So, I really didn't use the code for the disk type, as it really didn't make a difference to what I was trying to accomplish.

This is what I wrote, a process to convert and combine DVD video files, and make one mp4 file.

https://www.purebasic.fr/english/viewtopic.php?t=83429
by RichAlgeni
Fri Jan 26, 2024 7:13 pm
Forum: Tricks 'n' Tips
Topic: DVD file converter and combiner
Replies: 0
Views: 404

DVD file converter and combiner

I wrote this to convert family videos to mp4 files. It uses VLC, which is a fantastic open source converter and combiner. My code creates the command line needed to automate the procedure. EnableExplicit #ProgramName = "vlc_combiner" #ProgramTitle = "Windows VLC DVD Converter and Comb...
by RichAlgeni
Thu Jan 25, 2024 11:10 pm
Forum: Coding Questions
Topic: Determine the type of drive
Replies: 4
Views: 396

Re: Determine the type of drive

Thank you!!!
by RichAlgeni
Thu Jan 25, 2024 7:10 pm
Forum: Coding Questions
Topic: Determine the type of drive
Replies: 4
Views: 396

Determine the type of drive

Is there a way to determine the type of a disk drive on a system? Specifically, I'd like to know if a drive is removable, and a DVD or Blu-ray drive. I am writing a process to convert DVD files to mp4's.
by RichAlgeni
Fri Jan 19, 2024 7:53 pm
Forum: Off Topic
Topic: This is a cool video
Replies: 2
Views: 770

This is a cool video

I like this guy!

A simple program finding odd or even.

https://www.youtube.com/watch?v=PCm5Gi0vMGA
by RichAlgeni
Fri Sep 29, 2023 8:41 pm
Forum: Tricks 'n' Tips
Topic: UDP Local Network Short Text Sending (All OS)
Replies: 25
Views: 5911

Re: UDP Local Network Short Text Sending (All OS)

The packets should be delivered whole, but I don't think you can count on only getting just one packet per read. You are using start and end bytes, so that should help distinguish the packets just in case. One more thing you could do is add a length in bytes field, or pad out the packet to a consist...
by RichAlgeni
Fri Sep 01, 2023 8:25 pm
Forum: Tricks 'n' Tips
Topic: UDP Server and client
Replies: 13
Views: 3600

Re: UDP Server and client

Kwai chang caine wrote: Mon Aug 28, 2023 8:22 pm Thanks for your answer 8)
You are entirely welcome! :D
by RichAlgeni
Tue Aug 22, 2023 6:39 pm
Forum: Tricks 'n' Tips
Topic: UDP Server and client
Replies: 13
Views: 3600

Re: UDP Server and client

Gérard wrote: Sun Aug 20, 2023 11:09 pm My knowledge is limited, but always ready to learn.
Awesome! Let us know if and when you need some assistance. The people here are great!
by RichAlgeni
Tue Aug 22, 2023 6:38 pm
Forum: Tricks 'n' Tips
Topic: UDP Server and client
Replies: 13
Views: 3600

Re: UDP Server and client

Just for information, i have try your code, and not have the full message sended 8) I send "hello i'm kcc" and receive "hello i" Thanks RichAlgeni for sharing 8) :D Remember, Unicode characters are two bytes, so your sending and receiving length should use StringByteLength()
by RichAlgeni
Sat Jul 08, 2023 7:03 pm
Forum: Off Topic
Topic: Unrest in France
Replies: 13
Views: 1236

Re: Unrest in France

Lord wrote: Sat Jul 08, 2023 6:39 pm Some Trumpists here? :cry:
I am!
by RichAlgeni
Tue Jul 04, 2023 5:13 pm
Forum: Off Topic
Topic: Unrest in France
Replies: 13
Views: 1236

Re: Unrest in France

If you continually elect people who tell groups of people that they are victims and there is nothing they can do to remedy that, you are a stupid voter. If you continually elect people who constantly harp about gun control, but let people in power or close to power off without consequences for gun c...
by RichAlgeni
Mon Jul 03, 2023 10:35 pm
Forum: Off Topic
Topic: Unrest in France
Replies: 13
Views: 1236

Re: Unrest in France

Stupid voters.
by RichAlgeni
Mon Jul 03, 2023 9:09 pm
Forum: Off Topic
Topic: Unrest in France
Replies: 13
Views: 1236

Unrest in France

Hope you all are safe and well. What's happening there is a shame.
by RichAlgeni
Thu Jun 29, 2023 9:40 pm
Forum: Coding Questions
Topic: TCP Sockets - IRC
Replies: 3
Views: 268

Re: TCP Sockets - IRC

Here are a couple of simple programs that communicate with each other. Take a look, try them out, then feel free to ask any questions. Run the test_server process first, and enter the port number you wish to use. Then run the test_client process, and do the same. ; test_server.pb EnableExplicit Proc...