473,394 Members | 1,773 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Save calculations

6
Hi! i am i trying to make o vb program and i have a big problem.
I have a combination of forms into i put some keywords and i transfer data from one form into an other (from text to text or from labels to texts). I have a command and when i press it, it makes all the work, all the calculations and completes all the tables i have to the forms. The problem is when i have finished i want to keep this calculations. i don't want to lose them and to make them from the begging. The program take the names of the soldiers of the army and put them to a table of tasks. I want to use this program weekly. Is there any solution? A save command?? Or i way to export the tables as it is designed to a word with a simply command??
I Hope to hear news soon. . .
Many thanks J.K.
Apr 2 '08 #1
10 1444
kadghar
1,295 Expert 1GB
I want to use this program weekly. Is there any solution? A save command?? Or i way to export the tables as it is designed to a word with a simply command??
I Hope to hear news soon. . .
Many thanks J.K.

The easier way to save progress is to save your variables in a text file, then read them when you load it.

If you promess you'll be honest, the text file can have variables as they are, but if not, you'd beter use some cryptography.

HTH
Apr 2 '08 #2
epp319
6
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Apr 2 '08 #3
epp319
6
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Apr 2 '08 #4
epp319
6
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Apr 2 '08 #5
epp319
6
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Apr 2 '08 #6
epp319
6
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Apr 2 '08 #7
Yes, gon on my FREE VB TOOLS and you will find how to SAve and OPen a *.txt FILES.

BorlandDelphi
Apr 2 '08 #8
kadghar
1,295 Expert 1GB
is there a code to load the variables automatically or i have to put them one by one from the beginning??

many thanks for your help
Well, there's not a magic code, but its quite simple. I'll write a little example where i define a couple of public variables, a Sub to save them and a Sub to load them:

Expand|Select|Wrap|Line Numbers
  1. dim Var1 as string
  2. dim Var2 as string
  3.  
  4. sub SaveVars()
  5. dim Lon1 as integer
  6. var1 = inputbox("write Var1") 'you dont need this, is just for this
  7. var2 = inputbox("write Var2") 'example not to have empty variables.
  8. lon1 = freefile
  9. open "C:\SaveGame.txt" for output as #lon1
  10. print #lon1, var1
  11. print #lon1, var2
  12. close #lon1
  13. end sub
  14.  
  15. sub LoadVars()
  16. dim Lon1 as integer
  17. lon1 = freefile
  18. open "C:\SaveGame.txt" for input as #lon1
  19. input #lon1, var1
  20. input #lon1, var2
  21. close #lon1
  22. msgbox "your first variable is: " & var1
  23. msgbox "your second variable is: " & var2
  24. end sub
you can run the first sub to store a couple of words, then close your application, or turn off your computer, then run only the second sub to see how it works (make sure you turn on your computer again before this step).

HTH
Apr 2 '08 #9
Hah, so many code, so many work. Insert my Free VB Tools - Easy Open and Easy Save *.ocx,add to the form and the work is finished

BorlandDelphi
Apr 2 '08 #10
kadghar
1,295 Expert 1GB
Hah, so many code, so many work. Insert my Free VB Tools - Easy Open and Easy Save *.ocx,add to the form and the work is finished

BorlandDelphi
So many code??
its a simple-one-line method to read/write
i dont know an easier way, but if you do, please share the code. it's always good to learn something new.

Otherwise, please read the site's terms of use
Apr 2 '08 #11

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Andras Gilicz | last post by:
Hi VB fans I'm working on a relatively large project in VB6 with about a dozen forms, including graphs, labels, text boxes, etc. The software itself is actually a flow simulator with more or...
11
by: lduperval | last post by:
Hi, I`m trying to do date calculations in three types of time zones: local, GMT and specified. The issue I am facing is that I need to be able to specify a date in the proper time zone, and I`m...
3
by: brian kaufmann | last post by:
Hi, I had sent this earlier, and would appreciate any suggestions on this. I need to make calculations for unemployment rate for three different data sources (A,B,C) for many countries and age...
3
by: John M | last post by:
Hi, I've been coming up against a failure of a report to display the result of a simple calculation. I have realised that this calculation cannot take place unless the field I am working on is...
0
by: SJM | last post by:
There is a database which has combo boxes to allow users to select values from pre-set lists of common specifications. The form allows users to enter values that are not in the dropdown lists....
1
by: James Scott | last post by:
Hello, I was wondering if there is a package out there, that allows to convert a date into an int-Timestamp (accuracy needed: 1 sec) and maybe provides some basis time calculations. ...
6
by: Sanjay | last post by:
Hi, Is it possible to save all the names/values of a form to another memo textfield before a Insert to the database then when required on another page split that memo textfield into the name and...
6
by: Josetta | last post by:
Access 2003 I've been experiencing some problems with my "monster" database the last couple of days. I imported all objects into a new database yesterday, which pretty much stopped the crashing...
1
by: msanger | last post by:
Hi, I have several excel sheets in Office 2007, which has all kinds of standard calculations, and a consolidated Excel Sheet with totals and rollup of all the other excel files. The issue I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.