i have made a winform1 dll in C# and try to use it in F# beacause the visual F# doesn't have the visual designer. What i want to do is like this
//F# pesudo code
let obj1 = new winform1()
obj1.show()//
let mutable i = 1
while true do
thread.sleep 1000
i<i+1
obj1.shownumber i
in other words, i am simulating to show something in a form over time. Can you hint me something. Thank you in advance!