-1
votes
2answers
32 views
Drawing in wof(MsPaint)
How can i make Mspaint in wpf?
I use Canvas and Shapes, but i don't know how to make erase function. May be i shud use some diferent controls (image control for example) or other drawing technology?
0
votes
2answers
71 views
How to clear and then redraw a quartz drawing
I'm making a complex drawing using quartz based on passed in information. The only part I haven't been able to figure out is how do I clear the lines, rectangles, etc that I've already drawn? …
1
vote
2answers
83 views
Erase-remove idiom: what happens when remove return past-the-end-iterator?
I got this question when I was reading erase-remove idiom (item 32) from Scott Meyers "Effective STL” book.
vector<int> v;
...
v.erase(remove(v.begin(), v.end(), 99), v.end());
remove …
0
votes
5answers
319 views
How can I erase the current line printed on console in C ? I am working on a linux system
How can I erase the current line printed on console in C ? I am working on a linux system
example -
printf("hello");
printf("bye");
I want to print bye on the same line in place of hello.
output
…
0
votes
1answer
209 views
Problem with actionscript 3 erasing drawing
I have a based image and some sprites on top of the basd image movieclip... Some of the sprites can be drawn by the user using graphics api in actionscript 3. I can draw things on the sprites but I …
0
votes
1answer
145 views
how to erase some portion of uiimageview’s image in iphone?
i have a view with uimageview and an image set to it. i want to erase image as something like we do in photoshop with an eraser.how do i achieve this.also how do i undo erase???
0
votes
1answer
218 views
completely removing a vector c++
Hi ,
I'm having problems removing a vector from a "multidimensional vector"
I would like to achieve this:
1 1 1 1 1 1 1 1
2 2 2 2 2 2 2 2
3 3 3 3 4 4 4 4
4 4 …
3
votes
6answers
1k views
How to erase & delete pointers to objects stored in a vector?
I have a vector that stores pointers to many objects instantiated dynamically, and I'm trying to iterate through the vector and remove certain elements (remove from vector and destroy object), but I'm …
0
votes
3answers
420 views
C# : How to erase content on a Bitmap
Hi
I have C# winForm application which holds a pictureBox control.
This control has a Paint event.Every time paint event is fired , a Bitmap is dynamically created and I perform some drawing on it.
…
-1
votes
1answer
225 views
Disabling/Overriding some Javascript from Webbrowser Control using Inject?
I am trying to access a page that has certain javascript that causes errors and prevents the page from fully rendering.
<script language="Javascript">
parent.hidden.vPageState = …
6
votes
2answers
480 views
How to erase element from std::vector<> by index?
If I have a std::vector and I want to delete the x'th element how to do it?
std::vector<int> vec;
vec.push_back(6);
vec.push_back(-17);
vec.push_back(12);
vec.erase(???);
Please help!
2
votes
2answers
638 views
Is there an alternative to /dev/urandom? [closed]
Is there some faster way than /dev/[u]random? Sometimes, I need to do things like
cat /dev/urandom > /dev/sdb
The random devices are "too" secure und unfortunately too slow for that. I know that …
3
votes
2answers
527 views
C++ STL map::erase a non-existing key
Regarding the C++ STL map, erasing by key:-
size_type map::erase ( const key_type& x );
Is it legal to erase a non-existing key? i.e. is the snippet below ok?
map<char,int> mymap;
…
3
votes
5answers
2k views
How does a 7- or 35-pass erase work? Why would one use these methods?
How and why do 7- and 35-pass erases work?
Shouldn't a simple rewrite with all zeroes be enough?
1
vote
4answers
591 views
How do I erase printed characters in a console application(Linux)?
Hi all,
I am creating a small console app that needs a progress bar. Something like...
Conversion: 175/348 Seconds |========== | 50%
My question is, how do you erase characters already …
