Search found 80 matches

by Damion12
Fri Apr 28, 2017 7:50 am
Forum: Tricks 'n' Tips
Topic: Expression evaluator
Replies: 41
Views: 25254

Re: Expression evaluator

Thank you - I did not see that. (Any idea why 64bit doesn't work?)
by Damion12
Tue Apr 25, 2017 2:59 am
Forum: Announcement
Topic: Windows Services & Other Stuff
Replies: 197
Views: 131584

Re: Services, Stuff, and Shellhook

download link said "expired or no longer there"
by Damion12
Tue Apr 25, 2017 2:57 am
Forum: Tricks 'n' Tips
Topic: Expression evaluator
Replies: 41
Views: 25254

Re: Expression evaluator

Any chance someone has a compiled muparser.dll compiled for windows? I'm on a metered connection & don't want to download vss.
by Damion12
Sat Mar 04, 2017 6:32 am
Forum: Coding Questions
Topic: mp3 tags read/write?
Replies: 0
Views: 1396

mp3 tags read/write?

I have found several older examples of code for mp3 tag reading, and one for tag writing. Unfortunately, teh read/write never works for me; and most of the reading ones work partially, not completely -- so before I go debugging/hacking 10 year old code (and 32bit to 64bit; asci to unicode) I figured...
by Damion12
Thu Feb 09, 2017 7:02 pm
Forum: Tricks 'n' Tips
Topic: Realtime visual benchmark (VBL & Rasterlines)
Replies: 20
Views: 10839

Re: Realtime visual benchmark (VBL & Rasterlines)

djes wrote: Do you have tested with debugger enabled ? What is your configuration ?
well that is weird, I used the external debugger & it ran! weird. I'll try reinstalling pb.
by Damion12
Thu Feb 09, 2017 2:37 am
Forum: Feature Requests and Wishlists
Topic: Extend Bool() as a ternary operator?
Replies: 30
Views: 9433

Re: Extend Bool() as a ternary operator?

I was just looking for an iif() solution. so +1 --- after reading it some of the posts, I think it's worth noting that it doesn't make sense to re-use bool(); instead, if makes sense to implement iif() and re-use it. since Bool( this-or-that ) would be the same as iif( this-or-that,1,0) and could ea...
by Damion12
Wed Feb 08, 2017 7:45 pm
Forum: Tricks 'n' Tips
Topic: Realtime visual benchmark (VBL & Rasterlines)
Replies: 20
Views: 10839

Re: Realtime visual benchmark (VBL & Rasterlines)

I get, when using 32 or 64, 5.60 beta2 or not; an invalid memory access at line 71:

Code: Select all

CreateSprint(0, 64, 64)
by Damion12
Mon Feb 06, 2017 10:57 pm
Forum: Tricks 'n' Tips
Topic: StringButtonGadget - canvas-based (win / linux)
Replies: 8
Views: 3254

Re: StringButtonGadget - canvas-based (win / linux)

When I run it, I get an error that a constant is not defined #PB_Canvas_Container
by Damion12
Sat Jan 28, 2017 7:36 pm
Forum: Coding Questions
Topic: directory library issue.
Replies: 8
Views: 2196

Re: directory library issue.

It happens on Entry into the loop -- so dir = ExamineDirectory( ... ) if dir while NextDirectoryEntry( dir ) << error the rest of code never gets executed... but, this is code, exactly, as I got off the forums, as an example.... (I pick "C:\" when prompted; takes a little bit, then generat...
by Damion12
Sat Jan 28, 2017 4:24 am
Forum: Coding Questions
Topic: directory library issue.
Replies: 8
Views: 2196

directory library issue.

I have been getting this error a lot lately. I think it has something to do with calling it too fast or too many times -- but honestly, I have been unable to distill down the bare essence of what triggers it to happen. Suffice it to say: DirID = ExamineDirectory(#PB_Any, FQpath, "*.*") ; F...
by Damion12
Fri Jan 27, 2017 12:11 pm
Forum: Coding Questions
Topic: remame directory?
Replies: 5
Views: 1560

Re: remame directory?

#folder = "f:\test\test .me" ; f is a fat32 formatted disk, so permissions are NOT the issue. #target = "f:\test\test.me" If CreateDirectory(#folder) Debug "Folder created" Else Debug "Failed to create folder: "+FileSize(#folder) End EndIf Debug "Target ...
by Damion12
Fri Jan 27, 2017 8:35 am
Forum: Coding Questions
Topic: remame directory?
Replies: 5
Views: 1560

remame directory?

Is there a proper way to rename a directory? I tried using renamefile() but it failed to rename...
(if it matters, I'm on windows, and I suppose I could use movefile_() but I'm trying to keep it cross platform)
by Damion12
Mon Dec 19, 2016 10:15 pm
Forum: Tricks 'n' Tips
Topic: ExplorerGadget replace value item dynamically
Replies: 2
Views: 1277

Re: ExplorerGadget replace value item dynamically

errors out after a bit on line #48 PathAddBackslash_(@NouveauChemin$) [code [13:13:23] [ERROR] Line: 48 [13:13:23] [ERROR] Overflow in a string memory block. [/code] (it's because you're adding a slash to a memory block that isn't big enough) this is a simple enough fix... If Right(NouveauChemin$,1)...
by Damion12
Thu Dec 15, 2016 3:48 am
Forum: Applications - Feedback and Discussion
Topic: What are the names of applications to generate forms
Replies: 3
Views: 3469

Re: What are the names of applications to generate forms

I would just get used to using the IDE's version. I used to use gnozal's PureForm, but he's gone MIA & files are no longer available. PureVision, last I checked, lags behind feature by a good amount; not only that but has some really funky usage (ie: moving an object). While the built in lacks a...