Search found 2366 matches

by TI-994A
Thu Dec 14, 2023 12:59 pm
Forum: Off Topic
Topic: The 'purest' of mobile phones
Replies: 6
Views: 1316

Re: The 'purest' of mobile phones

Never looked back with my OnePlus 7T Pro. :lol:

Image
by TI-994A
Mon Sep 04, 2023 3:08 am
Forum: Off Topic
Topic: I see we are mostly Intelligent, Helpful and Generous People here…
Replies: 11
Views: 1680

Re: I see we are mostly Intelligent, Helpful and Generous People here…

Piero wrote: Sun Sep 03, 2023 7:11 pm“If nothing exists, where did this anger come from?”
Life is merely a confluence of conscious perceptions.
by TI-994A
Mon Aug 28, 2023 8:53 am
Forum: Off Topic
Topic: It's too hot for programming
Replies: 23
Views: 2797

Re: It's too hot for programming

The rain makes it bearable here... 8)

Image
by TI-994A
Sat Aug 26, 2023 4:36 pm
Forum: Announcement
Topic: New YouTube Channel - Beginner's Programming
Replies: 7
Views: 1519

Re: New YouTube Channel - Beginner's Programming

Thank you, everyone! I am truly grateful for your wonderful show of support. :D

I will surely do justice to the series, as promised. I only hope that you'll continue to enjoy them.


Image
by TI-994A
Sat Aug 26, 2023 6:19 am
Forum: Announcement
Topic: New YouTube Channel - Beginner's Programming
Replies: 7
Views: 1519

New YouTube Channel - Beginner's Programming

Hello Everyone! As retirement looms for me, I've decided to start a programming tutorial series on YouTube . As some of you might know, I had posted a couple of videos in the past, but this series will be a little different. It will start with the very basics, slowly explaining the concepts of compu...
by TI-994A
Thu Apr 20, 2023 12:13 pm
Forum: The PureBasic Form Designer
Topic: The form designers way of doing things.
Replies: 11
Views: 2210

Re: The form designers way of doing things.

stolzy wrote: Wed Apr 19, 2023 7:15 amI have also been struggling with the form designer...

... Maybe some kind soul could create or point to some good resources.
Perhaps this might help:
> PureBasic Form Designer Tutorial 2022
by TI-994A
Tue Jan 03, 2023 7:37 am
Forum: Off Topic
Topic: Happy New Year 2023
Replies: 23
Views: 1381

Re: Happy New Year 2023

Happy 2023!

May it usher in greater opportunities. :)
by TI-994A
Mon Nov 28, 2022 8:58 am
Forum: General Discussion
Topic: New here. Question about possible internet db updates?
Replies: 19
Views: 3073

Re: New here. Question about possible internet db updates?

HoosierDaddy wrote: Wed Nov 23, 2022 1:02 amI have a database and website being hosted online.

I also have a need to update the database / Crud, but I want to use a windows app to do so via http. Is there a control as in VB to connect to the web via http?
Welcome to PureBasic, Tim. Perhaps, take a look at this:

> Remote MySql
by TI-994A
Sun Sep 25, 2022 2:47 pm
Forum: Tricks 'n' Tips
Topic: PureBasic SQLite Database: A Quick Tutorial
Replies: 13
Views: 12378

Re: PureBasic SQLite Database: A Quick Tutorial

Dreamland Fantasy wrote: Fri Sep 16, 2022 8:28 pmExcellent tutorial, and it came in very handy for a project I'm currently working on. :D
Thanks for saying so, Francis. So glad you found it useful. :D
by TI-994A
Sun Sep 25, 2022 2:43 pm
Forum: General Discussion
Topic: Should PureBasic become my main development system?
Replies: 22
Views: 2811

Re: Should PureBasic become my main development system?

... It was the events handling tutorial by TI-994A that got me on a new path to gaining success with PureBasic, thank you TI-994A. Hi David. Thank you for saying so. I'm glad you found it helpful. :D Since you mentioned that your focus would be on database applications, here's a quick guide for SQL...
by TI-994A
Sun Sep 25, 2022 2:18 pm
Forum: Off Topic
Topic: Help with Javascript / html popup window
Replies: 13
Views: 2102

Re: Help with Javascript / html popup window

I have a page on which there is a button called "Categories". A user clicks on it. An exe is run that collects a list of category values from a database. A popup or modal window appears showing the list of categories. The exe generates the page code. User clicks on a category entry in the...
by TI-994A
Thu Sep 01, 2022 6:35 am
Forum: The PureBasic Form Designer
Topic: The PureBasic 5.0 Form Designer - A Quick Video Tutorial
Replies: 11
Views: 7652

Re: The PureBasic 5.0 Form Designer - A Quick Video Tutorial

Hello everyone. I've compiled an updated video tutorial on the Form Designer.

PureBasic Form Designer Tutorial 2022

As always, please feel free to comment, either here or on YouTube.
by TI-994A
Thu Aug 25, 2022 4:42 pm
Forum: Coding Questions
Topic: How to get the word_before and word_after a specific keyword from a string.
Replies: 36
Views: 2084

Re: How to get the word_before and word_after a specific keyword from a string.

...Works on the first string. Not so on the second string... (word_before word_after, Validation checks are required to circumvent such issues. Again, here's just another POC, but it would require tweaking based on your own requirements. The trimming routine still fails if there are multiple non-al...
by TI-994A
Thu Aug 25, 2022 3:18 pm
Forum: Coding Questions
Topic: How to get the word_before and word_after a specific keyword from a string.
Replies: 36
Views: 2084

Re: How to get the word_before and word_after a specific keyword from a string.

Another approach: source.s = "The quick brown fox jumped over the lazy dog." key.s = "fox" For i = 1 To CountString(source, " ") + 1 If StringField(source, i, " ") = key keyIndex = i Break EndIf Next Debug "Word before: " + StringField(source, keyInd...