Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
save-file
- Page 1
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
… my equivalent folder on D: Unfortunately, when you try to
save
to My Documents it still thinks you are saving on… being made according to the hidden desktop.ini
file
. What an abortion of a
file
system. And OneDrive is impossible to uninstall…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by Reverend Jim
>No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example,
save
a
file
in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task.
Save file help
Programming
Software Development
15 Years Ago
by zackzak
I am creating a game like the text-based game Zorg using a console program. However, I don't know how to create a
save
file
. How can I do this using the player's name to restore the variables I need?
Save file data to int or string array
Programming
9 Years Ago
by Ammar_7
i am trying to
save
file
data to int array their are three files and every
file
contain more than 1 million records and i don't know how to
save
this data to array..............
file
look like 12000 135680 69857 5986 . . . . . anyone please help me everytime i run the code the error show overflow.........................
Save File Dialog and Writing in text file
Programming
Software Development
13 Years Ago
by deva.v
… am creating a text
file
using a
save
file
dialog and copying the path to the text box which
file
is used to write… i get an error "The process cannot access the
file
'....fileName.txt' because it is being used by other program…
Re: Save file help
Programming
Software Development
15 Years Ago
by imclumsy
so you're trying to
save
the variables in a
file
so that when the player starts the game again, you can read the
file
and get the variables out?
Re: Save file help
Programming
Software Development
15 Years Ago
by zackzak
[QUOTE=imclumsy;1068244]so you're trying to
save
the variables in a
file
so that when the player starts the game again, you can read the
file
and get the variables out?[/QUOTE] Yes oh Yes!
Re: Save file help
Programming
Software Development
15 Years Ago
by imclumsy
do you mean create OR
save
a
file
?
Re: Save file help
Programming
Software Development
15 Years Ago
by zackzak
[QUOTE=imclumsy;1068210]do you mean create OR
save
a
file
?[/QUOTE] I don't know. I am trying to make it so the player can start where they last left in the game
Re: Save file help
Programming
Software Development
15 Years Ago
by zackzak
… on that i can see?[/QUOTE] this is the main
file
[CODE] public class Game extends GameClasses{ public void run(){ runStart… this is the one with the variables I need to
save
[CODE]import acm.program.*; public class GameClasses extends ConsoleProgram{ /** * @return…
Re: Save file help
Programming
Software Development
15 Years Ago
by imclumsy
… you run the program you should check if a saved
file
exists first before running the actual game. this will check… it has been started before, then you can read the
file
, get the variables and then continue the game!
Re: Save file help
Programming
Software Development
15 Years Ago
by imclumsy
which part are you stuck at? writing into and reading from a
file
?
Re: Save file help
Programming
Software Development
15 Years Ago
by zackzak
[QUOTE=imclumsy;1068262]which part are you stuck at? writing into and reading from a
file
?[/QUOTE] yes, and srry it took me so long i got caught up in something
How to insert Open File and Save File Dialogue to this code
Programming
Software Development
9 Years Ago
by sashiksu
…the clipboard Clipboard.Clear() '
Save
and close the document. objWordApp.Documents.Item(1).
Save
() objWordApp.Documents.Close(Word.…
file
by open
file
dialogue. Currently I coded where word
file
located. And also want to
save
new edited word
file
to other location by
save
file
…
Want to save file using save file dialog
Programming
Software Development
13 Years Ago
by hueikar
… have the following coding and i would like to
save
it using
save
file
dialog. Any idea? Thnx. [CODE] Dim numCols As Integer…
open file-write on file+save file+close file
Programming
Software Development
11 Years Ago
by sarila
hi everybody I have a project that I teach machine language source code: Open the
file
Writing to a
file
Save
File
I have to leave the files on the machine. Can anyone help me?
how to set destination directory path to save file
Programming
Software Development
15 Years Ago
by udayreddy
how to set destination directory path to
save
file
Re: how to set destination directory path to save file
Programming
Software Development
15 Years Ago
by Smith5646
Assuming you are using a SaveFileDialog, try .InitialDirectory = "yourpath" [QUOTE=udayreddy;1150433]how to set destination directory path to
save
file
[/QUOTE]
Re: Save File Dialog and Writing in text file
Programming
Software Development
13 Years Ago
by codeorder
This has never given me any issues with "The process cannot access the
file
'...' because it is being used by other program.". [CODE] Dim myFile As String = "C:\test.txt" IO.
File
.WriteAllText(myFile, "text to
save
here")[/CODE]
Re: Save File Dialog and Writing in text file
Programming
Software Development
13 Years Ago
by debasisdas
Check if the
file
open while you are trying to write to it.
Re: Save File Dialog and Writing in text file
Programming
Software Development
13 Years Ago
by vforvijay
… this method.......... [CODE]Dim filelocation as string =source & "
file
.txt" Dim fs As New FileStream(filelocation, FileMode.Create…
Re: Save file
Programming
Software Development
16 Years Ago
by Nick Evan
…; int main() { ofstream out("test"); // create a
file
'test' if(!out) // if it didn't succeed in creating…exit the program } // write 10 and 123.23 to the
file
separated by space out << 10 << &…lt; endl; // write "This is a short text
file
." to
file
out << "This is a short text…
Re: save file
Programming
Web Development
15 Years Ago
by colweb
… button and when clicked will open a
file
download dialog asking you where to
save
the
file
or what program to use to… few test and did see if the
file
isn't there it will create a
file
with the html part in it…. If the
file
is there the correct content will…
Re: save file
Programming
Web Development
15 Years Ago
by colweb
…-Disposition is used to force the browser to open the
save
as dialog. And as you can see, you can use… saved this way, you must first place it in a
file
that can be saved as... It is not possible to…
Re: Save file
Programming
Software Development
16 Years Ago
by Nick Evan
Write all the important vars to a
file
. You could use [URL="http://www.cplusplus.com/reference/iostream/ofstream/"]ofstream [/URL]for that. [URL="http://www.java2s.com/Code/Cpp/
File
/Writetofileofstream.htm"]example[/URL]
Re: save file
Programming
Web Development
15 Years Ago
by Lolalola
… speak well explain. I want to create the
file
(virtual), but he did not
save
on server. When creating a virtual, it…
Save file
Programming
Software Development
16 Years Ago
by hocuz pocuz
Hi. I am writing a text-rpg game using c++ and I want to
save
the gave somehow. How can i do it? Thank you.
Re: Save file
Programming
Software Development
16 Years Ago
by Ancient Dragon
How to
save
the game depends on how the program is written. Since …
save file
Programming
Web Development
15 Years Ago
by Lolalola
Hi, why in my new
file
put all program code? When i open "new_doc.doc&…
Re: save file
Programming
Web Development
15 Years Ago
by colweb
… any code behind it, it will go in the downloaded
file
. [CODE]<?php if (!isset($_POST['ok'])) { echo "<…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC