Search found 42 matches

by Amilcar Matos
Mon Feb 08, 2016 10:39 pm
Forum: Announcement
Topic: PureBasic now in TIOBE Index
Replies: 19
Views: 12346

Re: PureBasic now in TIOBE Index

PB Awareness week! Hmm...
Good idea, but i will suggest it be used as a concerted marketing campaign. For example : Fantasie Software (the company) provide us with a marketing package. Then each one of us can send it to multiple local prospects (with our name included as a local reference) so that ...
by Amilcar Matos
Sat Feb 06, 2016 4:15 am
Forum: Coding Questions
Topic: Setting up a table with varying numbers of rows
Replies: 17
Views: 4845

Re: Setting up a table with varying numbers of rows

@RNBW
Hope this helps you. :D
;{ ==Code Header Comment==============================
; Name/title: StringGadgetsSpreadsheet.pb
; Executable name: StringGadgetsSpreadsheet.exe
; Version: 1.0
; Author: Amílcar Matos Pérez
; Collaborators: Based on Srod concept.
; Translation by:
; Create date: 05 ...
by Amilcar Matos
Fri Jan 29, 2016 12:17 am
Forum: Announcement
Topic: PureBasic 5.42 LTS final is available !
Replies: 98
Views: 50881

Re: PureBasic 5.42 Beta 1 LTS is available

Thank you very much! :D
by Amilcar Matos
Mon Jan 18, 2016 8:28 pm
Forum: General Discussion
Topic: An #Empty$ and #Null$ chat.
Replies: 7
Views: 5175

Re: An #Empty$ and #Null$ chat.

Thank you, kenmo, for setting the record straight.
Thank you very much.
by Amilcar Matos
Mon Jan 18, 2016 8:07 pm
Forum: General Discussion
Topic: Creating a report designer ?
Replies: 20
Views: 10336

Re: Creating a report designer ?

@collectordave:
Which task can be of help to this project? (documentation, form design, coding. etc...)
It's a good project, carry on! :D
by Amilcar Matos
Mon Jan 18, 2016 2:33 pm
Forum: General Discussion
Topic: An #Empty$ and #Null$ chat.
Replies: 7
Views: 5175

An #Empty$ and #Null$ chat.

An #Empty$ and #Null$ chat.

Beware – Non-English speakers be aware that this short story plays with word meanings. Since PureBasic community is a multi-language community every effort has been made to simplify the story so that it be understood equally well by non english speakers. This is fiction ...
by Amilcar Matos
Tue Jan 05, 2016 2:37 pm
Forum: Announcement
Topic: New Interview with Fred and freak released on PureArea.net!
Replies: 20
Views: 55177

Re: New Interview with Fred and freak released on PureArea.n

Good, very good interview. Thank you!
Happy new year! :D
by Amilcar Matos
Thu Dec 24, 2015 6:21 pm
Forum: Announcement
Topic: PureBasic 5.41 LTS final is out !
Replies: 68
Views: 38642

Re: PureBasic 5.41 LTS final is out !

Merry Christmas!!! :D
by Amilcar Matos
Mon Dec 14, 2015 4:38 am
Forum: Applications - Feedback and Discussion
Topic: PiccyDB, small picture database to carry around pictures
Replies: 15
Views: 9783

Re: PiccyDB, small picture database to carry around pictures

Nothing to download, friend!
File is empty. Please check it out.
Merry Christmas! :D
by Amilcar Matos
Fri Dec 11, 2015 2:27 am
Forum: Coding Questions
Topic: How perpendicular text for EditorGadget ?
Replies: 2
Views: 1184

Re: How perpendicular text for EditorGadget ?

Merry Christmas Gurj! :D

EnableExplicit
;{ variable definition
Define Flags.l
Define Pos.l
Define Text$
Define Event.l
;}

Flags = #PB_Window_SystemMenu|#PB_Window_ScreenCentered|#PB_Window_MinimizeGadget|#PB_Window_MaximizeGadget
If OpenWindow(0, 0, 0, 600, 500, #Null$, Flags) <> #False ...
by Amilcar Matos
Fri Dec 04, 2015 4:21 am
Forum: Coding Questions
Topic: ReadFile issue with Unicode and UTF-8
Replies: 10
Views: 3497

Re: ReadFile issue with Unicode and UTF-8

Merry Christmas Demivec! :)
Just a small frame for your BOM procedure.
;{- Program header
;==Code Header Comment==============================
; Name/title: BOMBOMDetector.pb
; Executable name: BOMBOMDetector.exe
; Version: 1.0
; Author: Demivec
; Collaborators: Amílcar Matos Pérez
; Translation ...
by Amilcar Matos
Tue Dec 01, 2015 11:56 pm
Forum: Feature Requests and Wishlists
Topic: Reassemble modified code from IDE
Replies: 1
Views: 1532

Re: Reassemble modified code from IDE

Hello Ker2x:
Your two buttons request is a good idea and motivated me to think on a possible alternative. The code below is one option.

Compile this code to an executable and install that executable as a tool to your IDE. Then instruct the IDE to run this tool when the source code is closed; and ...
by Amilcar Matos
Fri Nov 13, 2015 10:43 pm
Forum: Coding Questions
Topic: Performance anomaly in Win32-Ascii (ReplaceString()?)
Replies: 13
Views: 3026

Re: Performance anomaly in Win32-Ascii (ReplaceString()?)

I suggest that you repeat the test; but first extract the string building loop out of the test loop.!

EnableExplicit

Define sTest.s
Define sBase.s
Define NumLoops.l
Define i.l
Define Time1.l
Define Time2.l
#OneSpace = " "
#TwoSpace = " "

; build the base string
For i = 1 To 2000
sBase = sBase ...
by Amilcar Matos
Sun Nov 08, 2015 1:52 am
Forum: Windows
Topic: Parse from variable [SOLVED]
Replies: 2
Views: 2079

Re: Parse from variable

Maybe what you are looking for is this. From PureBasic help file;
Syntax
Result$ = StringField(String$, Index, Delimiter$)
Description
Returns the string field at the specified index.

Hope it helps!
:D