Fle I/O in eVB for Casio E-100 (Palm-size PC) 
Author Message
 Fle I/O in eVB for Casio E-100 (Palm-size PC)

I am trying to write a program in eVB for my Casio E-100. The device is
marked "palm size PC", so I choose Palm-size PC 2.11 Emulation as my
debugging environment.

The problem is the code that follows returns a error saying "file not found"

    Dim M(1)
    File1.Open "menu.txt", 1
    Do While Not File1.EOF
        M = File1.InputFields(2)
        myCboBox.AddItem M(0)
        myCboBox.ItemData(myCboBox.NewIndex) = M(1) * 100
    Loop
    File1.Close

I tried to put the file in all different places but still get the same
error. However the same code works if using Pocket PC as the emulation.

Even stranger if I change the code to

    File1.Open "menu.txt", 2
        M = File1.Writeds
    File1.Close

The code went through and it is supposed to create an empty file by name
"menu.txt", but I searched all my local dives and there is no such a file!

Any suggestions?



Mon, 07 Apr 2003 03:00:00 GMT  
 Fle I/O in eVB for Casio E-100 (Palm-size PC)

Try "/menu.txt"


Quote:
> I am trying to write a program in eVB for my Casio E-100. The device is
> marked "palm size PC", so I choose Palm-size PC 2.11 Emulation as my
> debugging environment.

> The problem is the code that follows returns a error saying "file not
found"

>     Dim M(1)
>     File1.Open "menu.txt", 1
>     Do While Not File1.EOF
>         M = File1.InputFields(2)
>         myCboBox.AddItem M(0)
>         myCboBox.ItemData(myCboBox.NewIndex) = M(1) * 100
>     Loop
>     File1.Close

> I tried to put the file in all different places but still get the same
> error. However the same code works if using Pocket PC as the emulation.

> Even stranger if I change the code to

>     File1.Open "menu.txt", 2
>         M = File1.Writeds
>     File1.Close

> The code went through and it is supposed to create an empty file by name
> "menu.txt", but I searched all my local dives and there is no such a file!

> Any suggestions?



Sat, 19 Apr 2003 08:26:08 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Help on EVB 3.0 an Palm-Size PC

2. Site 100% fran?ais, 100% développement, 100% Pocket PC

3. Diff between Pocket PC OS / Handled PC OS/ Embedded NT OS

4. Palm OS'er seeks Pocket PC help

5. Newbie : Pocket PC/Handheld PC/Palm PC

6. Visual Basic 6.0 Development Support for WinCE and Palm-size PC

7. Scribble Application Components error (Palm Size Pc)

8. InputBox for Palm-Size PC

9. ADOCE problem with palm size pc (in emulation)

10. Installing Application on Palm-size PC

11. Database in a Palm (Casio E-11)

12. Difference between PalmSize PC et Pocket PC

 

 
Powered by phpBB® Forum Software