Search found 416 matches

by donj
Thu Jan 25, 2007 5:46 am
Forum: PrimalScript
Topic: BUG - Enumeration of Files???
Replies: 6
Views: 4298

BUG - Enumeration of Files???

Here's what I ran, and it worked 100% the same every time: Set oFSO = CreateObject("Scripting.FileSystemObject")EnumSubFolders("c:") Private Sub EnumSubFolders(ByVal parentFolder) 'On Error Resume Next Dim subF, f Dim pF : Set pF = oFSO.GetFolder(parentFolder) If Err <> 0 Then WS...
by donj
Thu Jan 25, 2007 5:45 am
Forum: PrimalScript
Topic: BUG - Enumeration of Files???
Replies: 6
Views: 4298

BUG - Enumeration of Files???

Are you able to share the script that this sub is being used within? The sub isn't self-contained; it doesn't declare the oFSO object variable, for example. Primarily, I'm interested in seeing what's being passed into parentFolder from the calling script - I ran this several times on my machine, pas...
by donj
Wed Jan 24, 2007 11:30 pm
Forum: Wish List and Feature Requests
Topic: MOF files and syntax highlighting
Replies: 2
Views: 3810

MOF files and syntax highlighting

PrimalScript doesn't currently support the format, as you indicate, and it does not offer a user-accessible means of defining new languages. However, we're always open to considering new languages. Can you provide a link to a comprehensive reference on the MOF syntax? Something we can point our deve...
by donj
Tue Jan 23, 2007 11:49 pm
Forum: Wish List and Feature Requests
Topic: Restore Primalscript default toolbar layout
Replies: 2
Views: 3586

Restore Primalscript default toolbar layout

Will make a note of it - thank you!
by donj
Mon Jan 22, 2007 11:55 pm
Forum: Wish List and Feature Requests
Topic: Idea: Active Edit Section
Replies: 8
Views: 6847

Idea: Active Edit Section

I think so. You want to be able to define an "editable area" and have the remainder of the document be "locked" until you explicitly "unlock" it. We'll add it to the list for consideration!
by donj
Mon Jan 22, 2007 11:53 pm
Forum: Wish List and Feature Requests
Topic: Powershell debugging?
Replies: 5
Views: 4845

Powershell debugging?

You can use Set-PSDebug to turn on PowerShell's internal debugger. The PowerShell team is aware of the desire for a "real" debugger (or, at least the ability for software like PrimalScript to "plug in" and debug) - it's on the "wish list" for a future version. But, defi...
by donj
Fri Jan 19, 2007 5:55 am
Forum: PrimalScript
Topic: Using a different debugger
Replies: 7
Views: 4211

Using a different debugger

A *lot* of things break the MS debugger - IE7 broke it for me. Very frustrating - but glad you found your culprit.
by donj
Fri Jan 19, 2007 5:54 am
Forum: PrimalScript
Topic: Where are the PrimalToys DLLs
Replies: 16
Views: 9210

Where are the PrimalToys DLLs

Bear with me - my copy of the MSI installs just fine, so I'm going to have to ask Alex what the problem might be... the MSI *should* be working so I think the preference would be to get you one that is :).
by donj
Tue Jan 16, 2007 2:04 am
Forum: PrimalScript
Topic: Powershell Output in Output Window
Replies: 4
Views: 3642

Powershell Output in Output Window

Build 4.1.532 gives you the option of capturing PowerShell output to the Output tab/pane, if desired. Write-Debug is captured to the Debug tab (seperately from the main output of your script). Sorry this took a bit; the way you have to do this in PowerShell is 100% different from the way you'd do it...
by donj
Tue Jan 16, 2007 2:02 am
Forum: PrimalScript
Topic: v4.1 output tab
Replies: 5
Views: 3612

v4.1 output tab

Build 4.1.532 gives you the option to use the old Output tab rather than the new pane; would that help address the question?