So I installed F# and I'm running VS 2008. I'm following along on a video tutorial the microsoft guys put on awhile ago. At one point, he wants to throw his output to a grid window and types

grid prices;;

this produces an error for me:

C:\Documents and Settings\myusername\Local Settings\Temp\stdin(3,1): error FS0039: The value or constructor 'grid' is not defined

Am I missing something? Is this a feature of VS 2010 only?

Thanks.

link|improve this question

42% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Are you watching a video by luca bolognese? If so, he is using a component he got from somewhere, which off the top of my head I believe is these guys:

http://www.ffconsultancy.com/dotnet/fsharp/

I remember something about being able to get a free version if you email them.

link|improve this answer
Yep, that's the video. I'll check it out, thanks. – Avoidiam Jun 22 '10 at 2:00
1  
I should also say that I think in the video he mentions where he got it. – Luke Schafer Jun 22 '10 at 2:00
2  
Ahh, if I had watched more of the video, he shows the source: let grid (prices:seq<System.DateTime * float>) = let form = new System.Windows.Forms.Form(Visible = true, TopMost = true) let grid = new DataGridView(Dock = DockStyle.Fill, Visible = true) form.Controls.Add(grid) grid.DataSource <- prices |> Seq.toArray Also, I've been told the free version is no longer available. – Avoidiam Jun 22 '10 at 2:20
ok, thanks for the update. Ah, didn't realise he gave the source. Luca is fantastic, isn't he? :) – Luke Schafer Jun 22 '10 at 3:07
1  
He is, I thoroughly enjoyed the tutorial. For those interested, you can find it here: channel9.msdn.com/pdc2008/TL11 – Avoidiam Jun 22 '10 at 8:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.