Questions tagged [powerpack]

21 questions
0
votes
1 answer

F# Powerpack and Entity Framework: How refactor a common part of two queries

I have two queries: member private x.CheckIfUserExistsUsingId(userId:int, context:StoryBoardContext) = <@ context.Users |> Seq.exists (fun currentUser -> currentUser.Id = userId) @> And member private x.FindUserById(userId:int,…
Programmin Tool
  • 6,507
  • 11
  • 50
  • 68
0
votes
1 answer

Adding a ToolTip to an OvalShape in C#

I'm trying to add a tooltip to an OvalShape (Microsoft.VisualBasic.PowerPacks.OvalShape). Since its not a Control, I can't use the simple SetToolTip() method in the ToolTip class. How might I go about showing a ToolTip on an OvalShape? I don't…
Chad La Guardia
  • 5,088
  • 4
  • 24
  • 35
0
votes
0 answers

How to Dispose RectangleShape created on Form1 by button click on Form2

I have Form1 with button which creates some rectangles and another button on same Form1 which deletes those rectangles ( This is working by below code) canvas.Parent = Nothing Now In Form1 I have another Button which open New Form2 with some set of…
Mak
  • 3
  • 6
0
votes
2 answers

Could not load Microsoft.visualBasic.PowerPAcks (even though dll is next to exe)

I've developped an application on VS2010, in Vb.net. All is working well on some computers, but some are throwing this error : Could not load Microsoft.visualBasic.PowerPacks. I've already encounter this eror, and copying the…
LemonCat
  • 35
  • 1
  • 9
0
votes
1 answer

Issue on PowerPack Controls and Graphics upon clearing and redrawing

To briefly explain: I have a win form written in C# that contains a panel. The panel contains a shape container, through that I have programmatically added some oval and line shape controls from VisualBasic.PowerPacks to the panel. The reason of…
Afshin
  • 487
  • 6
  • 22
-2
votes
1 answer

error CS0234: The type or namespace name 'PowerPacks' does not exist

We have two Jenkins server, DEV and PRD. I am getting this error in PRD, but not in DEV. I see VB Power Pack is not installed in either server. Any other components may have this included in DEV? error CS0234: The type or namespace name 'PowerPacks'…
Jirong Hu
  • 2,315
  • 8
  • 40
  • 63
1
2