Subject |
Path problem |
From |
bob McKinney <jrmckinney4831@gmail.com> |
Date |
Sun, 18 Sep 2022 19:18:01 -0400 |
Newsgroups |
dbase.getting-started |
Hi All: After my exerience with "Big Mistske" I guess I'm over cautious. I opened a "form", set the custom form class to "Base" and named the form and set the text to "New Test3 ". (See code below).. My question: How did "Seeker" get in the path to Basesb.cfm
*******************
** END HEADER -- do not remove this line
//
// Generated on 09/18/2022
//
parameter bModal
local f
f = new NewTest3Form()
if (bModal)
f.mdi = false // ensure not MDI
f.readModal()
else
f.open()
endif
class NewTest3Form of BASESBCFORM from :Seeker:Basesb.cfm // where did Seeker come from
set procedure to :Seeker:MyControlsb.cc additive
with (this)
visible = true
height = 472.0
left = 618.0
top = 68.0
width = 419.0
text = "New Test3"
endwith
with (this.MYTITLETEXTSB1)
left = 0.0
top = 0.0
text = "New Test3 Form"
endwith
endclass
*******************
Once I get past the basics, I hope the sea will smooth out a bit. I guess I didn't realize how much 10 years of absence can effect your memory
Thanks for any How, When, and Where help.................Bob
|
|