Questions tagged [powerpack]
21 questions
8
votes
3 answers
Problem with F# Powerpack. Method not found error
I've had F# Powerpack for a while now. It ran perfectly. But a few days before, I don't know what I did, whenever I compile my project and run it, I get an error
Method not found: 'System.Object…

Abdulsattar Mohammed
- 10,154
- 13
- 52
- 66
7
votes
2 answers
Visual Studio 2013 Ultimate vs. Microsoft.VisualBasic.PowerPack
I have solution in Windows Forms C# and Visual Studio 2013 from the university (dreamspark). When I try to run my solution, I've get an error:
Error 2 The type or namespace name 'PowerPacks' does not exist in the namespace…

Jan3Sobieski
- 259
- 1
- 7
- 16
6
votes
1 answer
How to install and use F# Powerpack in Mono?
I need to install use F# powerpack.
I use mono version 2.10.2 on Mac.
mono --version
Mono JIT compiler version 2.10.2 (tarball Mon Apr 18 09:14:01 MDT 2011)
Copyright (C) 2002-2011 Novell, Inc and Contributors. www.mono-project.com
TLS: …

prosseek
- 182,215
- 215
- 566
- 871
5
votes
1 answer
"CompileAssemblyFromSource" in f# powerPack codeDom
I am trying to get going a basic program to dynamically compile and run f# code. I am trying to run the following code:
open System
open System.CodeDom.Compiler
open Microsoft.FSharp.Compiler.CodeDom
// Our (very simple) code string consisting…

Alper Vural
- 53
- 3
4
votes
1 answer
F# PowerPack licence
I have a question on licensing FSharp PowerPack.
On the project page at codeplex.com is Apache license 2.0.
At the same time, after installation, in the folder with the PowerPack you can find license.rtf, which claims that product distributed under…

Evgeny Gavrin
- 7,627
- 1
- 22
- 27
4
votes
2 answers
F# Powerpack Documentation
I was wondering if someone can inform me of any decent documentation of F# Powerpack library. Thanks in advance.
Amir

amirmonshi
- 649
- 5
- 19
4
votes
1 answer
Where is Microsoft.FSharp.Text.ArgParser?
The old FSharp Powerpack seems to be obsolete, and most of its components have moved to other projects. Where can I find the ArgParser module? Is it still maintained?

Robert Sim
- 1,428
- 11
- 22
2
votes
1 answer
How HashMultiMap mutate in Type instance
How add key-value pair to instance on HashMultiMap that is member of declared by the user type? maybe I'm doing something wrong
#r"FSharp.PowerPack"
type Test() =
member this.tmp = new HashMultiMap

RomanKovalev
- 852
- 3
- 10
- 29
2
votes
2 answers
F# Power Pack Linq Issue
I have a simple function that makes use of the F# power pack to convert a quotation into a linq expression. The function is:
let toLinq (exp : Expr<'a -> 'b>) =
let linq = exp.ToLinqExpression()
let call = linq :?> MethodCallExpression
…

David Dickson
- 159
- 8
2
votes
1 answer
Looking for up-to-date F# PowerPack
Is there someone who working on F# Power Pack ?
Seriously - last update is Dec10 for old F# Core.
So I've got own rebuild for some parts (Linq2sql) for .net4 and new core and I think there is someone else who got the same and someone who is working…

cnd
- 32,616
- 62
- 183
- 313
2
votes
2 answers
Changing background color of RectangleShape in Visual Basic Power Pack 3 with C#?
I've installed Visual Basic Power Pack 3 in Visual Studio 2008 SP1.
I wanna change the background color of RectangleShape in a C# WinForm !!!
I changed FillColor property and BackColor property to Black but nothing happened and RectangleShape's …

Mohammad Dayyan
- 21,578
- 41
- 164
- 232
2
votes
3 answers
F# Powerpack's Metadata doesn't recognize FSharp.Core as an F# library
Here's my test code to isolate the problem:
open Microsoft.FSharp.Metadata
[]
let main args =
let core = FSharpAssembly.FromFile @"C:\Program Files\FSharp-2.0.0.0\\bin\FSharp.Core.dll"
let core2 = FSharpAssembly.FSharpLibrary
let…

Nathan Shively-Sanders
- 18,329
- 4
- 46
- 56
2
votes
1 answer
F#'s fshtmldoc.exe using Mono/OS X
This is doubtless something obvious, but downloading the F# PowerPack from codeplex and running fshtmldoc produces this error:
clements$ mono ./fshtmldoc.exe FSharp.PowerPack.dll
Processing 'FSharp.PowerPack.dll'...
Unexpected failure while writing…

John Clements
- 16,895
- 3
- 37
- 52
0
votes
1 answer
HashMultiMap save repetitive keys bindings on background?
why when table.Count = 1 table iteration functions get more than 1 key-value pairs?
And if this is feature how can I expected behavior?
//
let table = new HashMultiMap (HashIdentity.Structural)
table.Add("a",…

RomanKovalev
- 852
- 3
- 10
- 29
0
votes
1 answer
Displaying records in multiple rows - Visual Basic Power Packs DataRepeater control
I am developing an application using Visual Basic Power Packs DataRepeater control. For this application, I need to display records in rows. I will have a Image, Textbox and a checkbox for repeater control. I need to display 3 repeater control in…

mlg
- 1,162
- 1
- 14
- 32