Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Stupid label question
Message
De
10/11/1998 22:23:48
Nancy Folsom
Pixel Dust Industries
Washington, États-Unis
 
 
À
10/11/1998 22:12:24
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00155701
Message ID:
00156463
Vues:
67
Hi, Vlad et al.
Here is the information from MS KB Q163037
FIX: Label Properties Cause Illegal Operation
Last reviewed: October 29, 1998
Article ID: Q163037 
 
 


--------------------------------------------------------------------------------

The information in this article applies to: 
Microsoft Visual FoxPro for Windows, versions 5.0, 5.0a 


SYMPTOMS
Running a program that instantiates a form containing a label that has properties of Autosize and WordWrap together causes a stack fault. 

In Windows 95, the message shows a dialog box with Visual FoxPro as its title saying the following: 


   This Program has performed an illegal operation and will be shut down.

The Details button opens a message saying the following: 

   VFP caused a stack  fault in module VFP.EXE.

In Windows NT, the message is in a Dr. Watson dialog box and says the following: 

   An application error has occurred and an application error log is being
   generated. VFP.exe - Exception: stack overflow [0xc00000fd].
   Address<...>.

After the error message appears, VFP shuts down. 


RESOLUTION
The error does not occur if the label properties include either AutoSize or WordWrap, but not both. 



STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This has been corrected in Visual FoxPro 6.0. 



MORE INFORMATION
The same error may occur from a label on a form generated by the Form Builder. The workaround in that situation is different. For more information on that form of the problem, please see the following article in the Microsoft Knowledge Base: 


   ARTICLE-ID: Q162253
   TITLE     : PRB: Form Builder Form Causes Illegal Operation

Steps to Reproduce Behavior
Copy the following code into a program named LabelTest.prg, then run the program: 


   ********************************************************
   *- LabelTest.prg
   *-  A program to demonstrate the effect of combining the
   *-  Autosize and WordWrap properties on a label.
   ********************************************************
   PUBLIC x
   x=CREATEOBJECT("Form")
   x.AddObject("mylabel","test")
   x.Visible=.t.

   DEFINE CLASS test AS label
     AutoSize = .T.
     WordWrap = .T.


     PROCEDURE Init
       LOCAL lcTest,lcname
       lcname=THIS.NAME+"A" && Get a unique name
       THIS.PARENT.ADDOBJECT(lcname,'label')
       lcTest=lcname

       WITH THIS.PARENT.&lcTest
         .AUTOSIZE=THIS.AUTOSIZE
         .WORDWRAP=THIS.WORDWRAP   && Comment this line for success.
         .VISIBLE=.T.
       ENDWITH
     ENDPROC
  ENDDEFINE
 
>But I understand that removing that combination solved your GPFs...
>
>Vlad
>
>>My understanding of how it works vs the docs is the same as yours, Vlad. As for the combination: it has been a while, so I don't remember the conditions of this. It was pretty weird, and obsure enough that I didn't have any hint that the problem was a label!
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform