1
vote
1answer
36 views
In Power Point VBA, how to nudge all the present shapes in the window (not only one)?
As far as I understand, this code "grabs" only the first shape in the active window and nudges it:
Set oShape = oSlide.Shapes(1)
oShape.Left = oShape.Left + 5
How can I …
0
votes
1answer
52 views
Aligning Shapes on a plan, Algoryhtm
Hello Coders !
I am developing a simple diagram tool with shapes on a plan using flex.
First i was using a simple 20*20 grid.
But the real cool stuff out their is auto axe magnet …
0
votes
4answers
38 views
Line is erased when drawing shapes
Hi,
I am trying to make an application for drawing shapes on screen by touching it.
I can draw a line from one point to another- but it erases on each new draw.
Here is my code: …
0
votes
1answer
60 views
iphone pinch zoom
I have drawn few shapes in drawRect function of a view, these shapes color changes after some time repeatedly using setNeedsDisplay that calls the drawRect, secondly a shape name i …
0
votes
1answer
21 views
Combine multiple Ellipses
Hi
I need a way to combine multiple EllipseGeometry to make a union between them, but CombineGeometry class only can combine 2 Geometries.
The ideal way is to have a class similar …
-2
votes
3answers
48 views
How can I identify unfilled ovals in a PDF document using CAM::PDF?
I need to identify unfilled ovals in a PDF file. After that, I should fill them with color and I need coordinates of ovals with page numbers. Can anybody help me how to solve this …
1
vote
1answer
41 views
Silverlight, custom object for shapes
Hello,
I am studding Silverlight. I have an application where I create Polygons in UserControl_Loaded method. During creation stage I add MouseLeftButtonUp event handler like this …
0
votes
3answers
92 views
mouse Drag and Draw
Hello,
I have problem with displaying all the triangles. I draw a triangle using mouse drag. Everytimes I draw a new triangle, the previous triangle disappeared. How can I make the …
1
vote
2answers
104 views
How can I manipulate shapes in Adobe Flex?
I'm working on an application where I'm drawing some rectangles on the screen, and then will need to manipulate the shapes (change their size, location). I tried to do something w …
0
votes
1answer
74 views
Check for overlapping shapes in WPF
Hi,
I have a set of shapes which need to be drawn on top of each other. I need to re-order them such that the smallest shape gets drawn last (i.e. it will be closest to the user). …
0
votes
1answer
65 views
Shape name in Visio [closed]
This may be a dumb question, but I don't happen to know how to find the name of the shape in Visio below:
It would be great to know what this shape is called in Microsoft Visio. …
1
vote
1answer
87 views
Using Raphael JS to float shapes around the screen
I am working on having some shapes floating around the screen at random. Eventually they will interact with each other, as well as have onclick functions. I can get the circles t …
0
votes
3answers
85 views
Serializing Shape objects in WPF
Hi,
Does anyone know a good way to serialize a System.Windows.Shape (incl. Polygon, Circle, Triangle etc.) object so that it may be saved in a database?
I have tried to serialize …
0
votes
0answers
116 views
How to define XAML shapes in a ResourceDictionary and use them
What is the general approach for creating reusable XAML shapes in a ResourceDictionary? If I define a Path or other shape in the ResourceDictionary, how do I go about using it?
I …
0
votes
1answer
230 views
WPF Rectangle does not have a Click event
It seems that the WPF Rectangle shape does not have the Click event defined. What am I supposed to use instead?
It does have MouseUp, but it's not quite the same behavior.
