Questions tagged [overwrite]

Overwriting is a process of replacing content with other content in place. It can be physically replaced on storage, or overridden with newer version of content type.

Overwriting is a process of replacing content with other content in place. It can be physically replaced on storage, or overridden with newer version of content type.
Not to be confused with Override in Object Oriented Programming.

1479 questions
-4
votes
1 answer

Second iterator overwrites first iterator

I am not (yet) a good coder in C++ and I am working through some tasks from a training book, where I wrote a class for IP-addresses. In this class I have a private vector which saves the single blocks of the address. I overloaded the ==…
-4
votes
2 answers

Overwrite wordpress css?

So i am currently creating a website for a eSports team in wordpress, and i have just ran into a problem, that i do not remember how to sort out. I remember from making chrome extensions there is a method for doing this, but i do not remember, and…
-4
votes
1 answer

Visual studio Overwriting Code

Our development team is currently working on a project in Visual Studio Professional 2015 that involves forms, etc. As it stands, the master code is stored on an individuals desktop but a copy can be found on a shared drive as well as my personal…
-4
votes
3 answers

Overwrite an image file using Javascript

Is there a way to overwrite an image already existing in my site using javascript... if yes, what method, and any links for tutorials?
-4
votes
1 answer

"Overwrite" repeated values in a file (C)

Hello i have a little problem, and i cannot find a solution yet. I have a file (data.txt) with the next information: 5,5,6,2,5,2 1,4,2,3,7,2 4,2,5,2,3,4 5,5,6,2,5,2 4,5,2,6,2,4 2,1,5,6,3,2 And i want to set to 0 all the repeated lines, for example:…
-5
votes
2 answers

How to handle "Exception; must be caught or declared to be thrown"?

I am trying to write a test file that will overwrite the file I am working on so I can use it with a much more complex program. I keep getting an error message associated with creating a new PrintWriter. This is the error message: unreported…
-5
votes
4 answers

How to overwrite a PHP session variable

Is this possible? if ($_SESSION['variable'] = 'one' { $_SESSION['variable'] = 'car'; } It doesn't seem to be working. Is this enough information?
Ghost Echo
  • 1,997
  • 4
  • 31
  • 46
-6
votes
5 answers

JAVA string how can i implement the length method

My roommate's teacher gave them a assignment to implement string length method in JAVA? we have thought out two ways. Check the element,and when get the out of bounds exception,it means the end of string,we catch this exception,then we can get the…
Wythe
  • 149
  • 3
  • 12
-6
votes
1 answer

How can I overwrite html file?

if (!System.IO.File.Exists(Server.MapPath(klasoradi + htmlname + ".html"))) { System.IO.File.WriteAllText(Server.MapPath(klasoradi + htmlname + ".html"), htmltext); } I'm using this code for creating and saving my html file. But I can't…
Seration
  • 233
  • 2
  • 4
  • 8
1 2 3
98
99