Sorry, I should have mentioned in my first post that I'm usiing Windows XP.
I checked out the things you mentioned:
1. The field is much bigger than the text I'm trying to insert (which at this point is only 3 characters).
2. The field still has the default settings of black for text and yellow for background
3. The field was set for single line, which should have been OK for this text, but I changed the field property to mulitline.
Number 3 was the only change I made, and now when I run the program it crashes, giving me two consecutive error messages: "Sorry, an internal error has occurred: XR_GotoCard" followed by "Sorry, an internal error has occured: DragCanvas Update StretchedPic"
At the moment my stack consists of two cards. There is one field on card 1 and nothing on card 2.
Here is the entire code so far (locared in the StartUp section on the MainScript:
@ Any code here is exectuted before the Home card loads.
@ ---------------------------------------------------------------------------------------------------------------------------------
@Global variables:
Global varCardCount
Global varScreenWidth
Global varScreenHeight
@ Local variables:
Local x
@ ---------------------------------------------------------------------------------------------------------------------------------
@ Store number of cards, screen width and height::
Put TotalCardsFN into varCardCount
Put ScreenWidthFN into varScreenWidth
Put ScreenHeightFN into varScreenHeight
@ ---------------------------------------------------------------------------------------------------------------------------------
@ Set card sizes to fill screen
Put 1 into x
For x = 1 to varCardCount Step 1
CardSetLeft(x,0)
CardSetTop(x,2)
CardSetWidth(x,varScreenWidth-100)
CardSetHeight(x,varScreenHeight-100)
EndFor
@ ---------------------------------------------------------------------------------------------------------------------------------
@ TEMP Get Info
GotoCard 1
Put 123 into field 1
@ ---------------------------------------------------------------------------------------------------------------------------------
Thank for any help you can give me.
P.S. I'm still worried that my copy of HyperNext may be corrupted, but before I download it again, I would like to be sure that I delete EVERYTHING from the past installations. For example, are there files in some temp folder that your Uninstall program would not delete?