Tagged Questions
The powerpacks tag has no wiki summary.
7
votes
4answers
1k views
GDI+ How to change Line SmoothingMode?
Is it possible to change PowerPacks.LineShape smoothingMode?
I tried to use this code(a class that inherits LineShape):
Protected Overrides Sub OnPaint(ByVal e As ...
4
votes
5answers
620 views
Detect the intersection point of 2 lines
I have 2 (VisualBasic.PowerPacks)LineShapes on my form:
When I click on one of them, a specific context menu appears. The lines can be moved by the user. A context Menu is associated with a line. ...
1
vote
2answers
2k views
Where can I d/l MS Powerpacks 10?
I am not able to find site where to download ms Powerpacks 10, I use it with vb.net 2010.
1
vote
2answers
208 views
Zoom a Rectangle in .NET
In a WinForm I use rectangles, ovals and lines of Microsoft.VisualBasic.PowerPacks.
Is it possible to make a zoom on it? How?
1
vote
1answer
137 views
Link two controls in one
I wonder if there is a possibility to (visually and functionally) link two controls(components)? (.NET2)
Simplifying the things, I have two labels - one of them is the main label (it can be deplaced ...
1
vote
1answer
1k views
Handle Button Click in WinForm DataRepeater C# Power Pack
i want to handle winform button click in the DataRepeater, how can i do it? all button are placed in a DataRepeater
Thank you very much
0
votes
0answers
46 views
C# LineShape Flicker
I'm drawing a line over a Chart using a LineShape - part of the Microsoft VisualBasic Powerpacks kit. I need to be able to click and drag the line. I can currently do that, but while dragging the line ...
0
votes
1answer
193 views
VB.net Collection was modified; enumeration operation may not execute Error
I'm getting a Collection was modified; enumeration operation may not execute error every time I try to close this form. I suspect it has something to do with the StringBuilder() which I have declared ...
0
votes
2answers
137 views
.NET PowerPacks RectangleShape flickers on form resize
I can do something as simple as:
Create a new .NET form application
Put a single RectangleShape onto the form
add the following into the InitializeComponent method in the designer code
...
0
votes
1answer
349 views
How can I bind a DataTable to a DataRepeater(Windows Powerpack) at Runtime?
I'm currently attempting to use the Windows Powerpack DataRepeater control to display data from a DataTable.
So far, the DataRepeater recognizes that the resulting DataTable called from the Database ...
0
votes
2answers
300 views
line and opacity
I would like to draw an opaque line on a control in c#.
I tried this with visual basic powerpacks shapecontrol.. but I couldn't find any properties that set opacity.
How do I draw an opaque line ? ...
0
votes
1answer
318 views
Unbound Data Repeater Scroll Issue
I Dragged a DataRepeater into my form.
Added a TextBox to the DataRepeaterItem.
Added A button to the form.
Wrote these 2 Lines of Code :
Private Sub Button1_Click(..) Handles Button1.Click
...
0
votes
2answers
190 views
Crazy errors with FsLex and FsYacc
I am trying to compile this project:
http://ramon.org.il/Here.zip
But I get a bunch of non-sense errors. They got text I am familiar with, but in the position there is nothing like that (like ...
0
votes
2answers
150 views
F# 2.0 with Powerpack 2.0, fslex error 1
In namespace RSLispV3.RunTime:
http://pastebin.com/XNb9qi11
LispParser.fsy:
http://pastebin.com/pymF1Vvm
LispLexer.fsl:
http://pastebin.com/pfXdDuxs
I got in MSBuild the PowerPacks targets, calling ...
0
votes
1answer
119 views
A way to remove selected LineShape shadow effect?
Is there a way to remove the LineShape shadow effect when selecting the lineShape?
I tried
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
Dim g As Graphics = ...
0
votes
6answers
1k views
Help Repainting a Line
I am doing a custom control (inherited from VisualBasic.PowerPacks.LineShape), that should be painted like as standard one, but also having a Icon displayed near it.
So, I just overrided OnPaint like ...
0
votes
1answer
188 views
Draw a new Curved Shape inherited from LineShape
I use Microsoft.VisualBasic.PowerPacks. LineShape component.
This component is good, but I want to draw a curve instead of a right line. I stardet to modify the OnPaint:
protected override void ...
0
votes
1answer
2k views
Dynamically bind a DataRepeater (Microsoft.VisualBasic.PowerPacks)
I am using a DataRepeater to show data from a business objects on the screen. I am using windows forms in C# to accomplish this. The datasource is not available at compile time so I want to bind the ...
0
votes
3answers
1k views
Iterate thru DataRepeater (VB.Net PowerPack)
I am using the winform datarepeater control from vb.net power pack.
All of the items on the repeater are readonly except for a checkbox column.
I want to iterate over the items and find out which ...