Search found 8 matches

by Yuri
Mon Sep 01, 2003 11:20 am
Forum: Game Programming
Topic: 30000 stars (starfield)
Replies: 21
Views: 8959

http 404... page not found
by Yuri
Wed Aug 27, 2003 8:45 am
Forum: Coding Questions
Topic: CPU utilization
Replies: 21
Views: 6610

i've tried out both two your programs on two systems
and they boost my cpu usage to 100%

system 1: Acer aspire 1200 (celeron 1.3ghz, 256 Mbytes S3 Graphic Twister, WINDOWS XP PRO, dx 9.0b)
system 2: Home Pc (Pentium 4 2.0Ghz, 512 Mbytes, Radeon 7500,WINDOWS XP PRO, dx 9.0b)

hope this help you
by Yuri
Wed Aug 27, 2003 8:35 am
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

the purpose of this program is to alpha-order a csv (comma separated value) file...
this file has only one empty line at the end and no empty line in the middle because there aren't paragraph... so it should work..
i found the problem in the file writing part! the file reading part was ok...
by Yuri
Tue Aug 26, 2003 2:38 pm
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

"figured it out"

i've modified the first original program i posted in this way and it worked:
Dim array$(10000)
filename$ = OpenFileRequester("Seleziona un file da ordinare in ordine ALFABETICO", "*.csv", "Comma Separated Value", 0)
If filename$="" Or filename$=".csv"
MessageRequester("Errore ...
by Yuri
Tue Aug 26, 2003 2:18 pm
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

the modify you suggest to me reduce the loss of data from two lines to one... i think the problem is in the second part of the program (when the file is saved) but i can't figure it out...
by Yuri
Tue Aug 26, 2003 2:01 pm
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

no way.. it remove 2 lines from the text file everytime...
i've modified in this way:
Dim array$(10000)
filename$ = OpenFileRequester("Seleziona un file da ordinare in ordine ALFABETICO", "*.csv", "Comma Separated Value", 0)
If filename$="" Or filename$=".csv"
MessageRequester("Errore", "Nessun ...
by Yuri
Tue Aug 26, 2003 11:36 am
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

I've made the modification.. but it continue to remove two lines from the file... :cry: :cry: :cry: :cry:
Dim array$(10000)
filename$ = OpenFileRequester("Seleziona un file da ordinare in ordine ALFABETICO", "*.csv", "Comma Separated Value", 0)
If filename$="" Or filename$=".csv"
MessageRequester ...
by Yuri
Tue Aug 26, 2003 10:17 am
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3134

Please help me to figure out the problem

hi to all, i've written this program to sort a file alphabetically but when i execute , it remove two lines from the text file.. i tried to process the same file until it goes empty!!! but i can't figure out the problem!!!
Someone may help me?

here's the program:
Dim array$(10000)
filename ...