I'm fairly new to javascript. I have a web intranet application that calls my maxwindow function in the body's onload
<body onload="maxWindow('')">
The page initially loads fine but when you go back to the page by the back button or refresh an "access is denied" error alert pops up. Below is...
I have a page with a form on it, within the form is a textbox, beneath the textbox is a table inside a division. Everything displays fine until you try entering data in the textbox. The table disappears leaving only the select boxes that were in the table. Has anyone seen this type of...
Here's the reference in the Help to the Memo field in a group by clause issue. It's under the What's New in VFP8 Section under behavior changes since VFP7.0
Visual FoxPro contains a new SET ENGINEBEHAVIOR command so that you can control SQL data engine compatibility. This impacts how SQL...
Serincino,
My guess is you are using a Private Data Session which each have there own SET values. My suggestion would be to put a SET TALK OFF in the BeforeOpenTables Event of the Data Session or the Load Event of the Form.
Don,
OutputReport = CREATEOBJECT("my_frm")
outputReport.caption = "Report Output"
OutputReport.AddObject("cmdVIEW", "my_cmd")
OutputReport.AddObject("cmdPRINT", "my_cmd")
OutputReport.Show()
The CREATEOBJECT creates the form it is...
Keeper00
You can use the picture property in the listbox to display images like a checked and unchecked box. There is a good example of this in 1001 Things you Always Wanted to Know About Visual FoxPro (KiloFox) from Hentzenwerke.
drosenkranz,
Your Select statement looks very much like a statement that the view designer would create. The view designer can't handle this type of query. I think changing the statement to read like the following should fix your problem.
SELECT Phonemast.emp_no, Phonemast.phone_no...
This thread may help. You're most likely missing the vfp 7 support files. In my case the original merge module for Didn't install the correct files.
Thread184-371355
Thought this might be helpful with the thread. Explains a little how Private Variables work.
From the "Hacker's Guide to VFP 7"
LOCAL and PUBLIC actually create variables—once you issue them, the variables actually exist, and early binding can take place. PRIVATE doesn't create...
Dsummzzz and Griff,
Maybe I'm missing something here, according to The Hackers Guide to FoxPro
When you specify DISTINCT, every field is compared; records that exactly match another record in the set are eliminated, so that each unique combination appears only once. If this sounds slow, it's...
Mejiaks,
Your solution will only work if formb is modal.
Mep1,
A better solution is when opening forma use
DO forma NAME forma
then you will be able use
forma.show()
without an error
This is a link to a Microsoft KB article titled WD2000: Prompt to Save Normal Template When You Quit Word it explains a couple of possibilities for why this would happen Including Macro Virus Infection...
Both Act! and Goldmine have SDKs available on there web sites you just have to search for them. Both Act! and GoldMine use DBFs they just use different extensions to confuse you. You can open them in VFP but they both contain encrypted fields which only they can update.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.