Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Editbox - scroll to bottom on refresh
Message
From
10/05/2006 05:58:19
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Title:
Editbox - scroll to bottom on refresh
Miscellaneous
Thread ID:
01120636
Message ID:
01120636
Views:
63
* Form refresh, triggered by a timer

Local cLogDir As String, cPrefix As String, cFile As String, cSource As String

cLogDir = [Logs\]

If Thisform.Optiongroup1.Option1.Value = 1
	cPrefix = cLogDir + [RMT54]
Else
	cPrefix = cLogDir + [RMT54RunErrors]
Endif

cFile = cPrefix + Dtos(Date()) + [.Log]

If Not File(cFile)
	cFile = cPrefix + Dtos(Date()-1) + [.Log]
Endif

If File(cFile)
	cSource = Filetostr(cFile)
Else
	cSource = [There has been no activity for, at the very least, 24 hours...]
Endif

Thisform.AddProperty('cSource',cSource)

With Thisform.Pages1._Page1.Tekst       && the Edixbox
	.ControlSource = Thisform.cSource
	.Value = Thisform.cSource
EndWith

* Now it would be nice if there was a way to display 
* the last "page" of Thisform.cSource (I hope this is understandable) 
TIA
Peter Pirker


Whosoever shall not fall by the sword or by famine, shall fall by pestilence, so why bother shaving?

(Woody Allen)
Next
Reply
Map
View

Click here to load this message in the networking platform