Search found 10 matches

by fablefox
Wed Jul 28, 2021 2:43 pm
Forum: General Discussion
Topic: Which BASICs have been you using in your life?
Replies: 61
Views: 29566

Re: Which BASICs have been you using in your life?

GWBASIC (DOS)

BlitzBasic
DarkBasic

PureBasic

For the past 3 years I worked at a company where there is no outside software allowed, so I stopped using PureBasic for a while.

Now that I worked at a different company, I started to dabble back. I was looking at visual scripting for a while ...
by fablefox
Sat Oct 06, 2018 3:33 pm
Forum: General Discussion
Topic: HAPPY 20th BIRTHDAY, PureBasic!
Replies: 15
Views: 5028

Re: HAPPY 20th BIRTHDAY, PureBasic!

Happy belated 20th birthday!

Strange that it shows my account registered in 2014. Even I forgot what the story was. I got a forgot password (PB account, not forum) from 2008. But I think I bought it earlier. Like 2002 or 2003. I think my first PB version was 3.3. Something regarding previous e-mail ...
by fablefox
Thu Apr 30, 2015 7:41 am
Forum: Coding Questions
Topic: MenuItem tool tips
Replies: 4
Views: 1852

Re: MenuItem tool tips

Thanks.

Too complicated for what I planned currently. I was thinking just a few lines, the way GadgetTooltip works.

Anyway, thanks again. I'll keep this in mind when my app is ready to use it.
by fablefox
Tue Apr 28, 2015 10:08 am
Forum: Coding Questions
Topic: MenuItem tool tips
Replies: 4
Views: 1852

MenuItem tool tips

I've checked GadgetToolTip(#Gadget, Text$) and I noticed that Menu is not part of the gadget supported.

Is there a simple way to add tool tips to a menu item?

Thanks.
by fablefox
Mon Dec 01, 2014 10:06 am
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

Re: parser text editor

atom.io is currently limited to < 2mb files only :-(
by fablefox
Mon Dec 01, 2014 9:55 am
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

Re: parser text editor

Komodo Edit (the open source and free version of Komodo IDE) is out, it can't open a 6xx MB log/text file.


:-(


still, I got some ideas.... a text splitter tool?
by fablefox
Mon Dec 01, 2014 9:20 am
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

Re: parser text editor

Hi,

Some tools:

AWK is the best tiny and old tool for filtering text data. Exist for Unix and Dos.
You can use it as filtering tool in a batch file.

Edipad Pro (shareware) is THE best editor (IMHO). I use it a as my favorite editor for many years.
" Open and edit files of absolutely any size ...
by fablefox
Thu Nov 27, 2014 1:21 pm
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

Re: parser text editor

thanks for the reply.

apparently, notepad++ can't open 600 mb something text files. neither is several other text editor / IDE. Thank god the latest community visual C++ IDE can open it. and I know I can run VB script inside it.

But the thing is I'm thinking long term. i will add more ...
by fablefox
Wed Nov 26, 2014 4:54 am
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

Re: parser text editor

and i'm talking about up to 1 gb in size. but since hundreds of character per lines i don't think it wont take too much list. specially after parsing and remove unwanted lines....
by fablefox
Wed Nov 26, 2014 4:16 am
Forum: Coding Questions
Topic: parser text editor
Replies: 11
Views: 4508

parser text editor

i thinking for making "text editor" which is more of a parser actually. its to analyze a totally large text file. and maybe output a smaller ish text file.

i'm thinking of making a linked list where each line is a list. and delete processed line.

is it a nice idea?

-edit-

it doesn't need per ...