Link to home
Start Free TrialLog in
Avatar of johnwood
johnwood

asked on

VFP6 IntelliSense

This should be very simple but
In VFP6, IntelliSense not works and thisform.image1.picture got error massage.
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

What was the error message text or number?
This works for me in form's Init event:

THISFORM.Image1.Picture = "c:\program files\microsoft visual studio\vfp98\gallery\graphics\appwiz.ico"
Avatar of johnwood
johnwood

ASKER

I have put IMAGE1 in the form but got error message
Unknown member IMAGE1.
for Form1.Load event code
thisform.image1.picture="C:\......\test.jpg"
ASKER CERTIFIED SOLUTION
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
pcelba,

yes, you are right! It works in Init event.

Can you tell me why IntelliSense not works for me? After type thisform and a dot, no list appeared.
Full Intellisense implementation was introduced in VFP 7. Some alternatives exist (read e.g. http://support.microsoft.com/kb/193404/en-us/) but they are not so good as native intellisense implementation.

Thank you for your help!