Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MadTown

    Maximize Window "Access is Denied Error"

    Adam, Thanks!! You were right on the money.
  2. MadTown

    Maximize Window "Access is Denied Error"

    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...
  3. MadTown

    Vanishing table when entering in a input text field on a form

    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...
  4. MadTown

    GROUP BY with Memo field in VFP8

    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...
  5. MadTown

    Please Help with Printing Reports

    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.
  6. MadTown

    CreateObject Misconception

    Don, OutputReport = CREATEOBJECT(&quot;my_frm&quot;) outputReport.caption = &quot;Report Output&quot; OutputReport.AddObject(&quot;cmdVIEW&quot;, &quot;my_cmd&quot;) OutputReport.AddObject(&quot;cmdPRINT&quot;, &quot;my_cmd&quot;) OutputReport.Show() The CREATEOBJECT creates the form it is...
  7. MadTown

    Listboxes

    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.
  8. MadTown

    Trouble With A SQL Select Incorporating 2 Child Tables For A Grid

    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...
  9. MadTown

    HTML Help - won't open on non-VFP pc's

    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
  10. MadTown

    PUBLIC, PRIVATE &amp; LOCAL

    Thought this might be helpful with the thread. Explains a little how Private Variables work. From the &quot;Hacker's Guide to VFP 7&quot; LOCAL and PUBLIC actually create variables—once you issue them, the variables actually exist, and early binding can take place. PRIVATE doesn't create...
  11. MadTown

    Select Distinct

    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...
  12. MadTown

    Moving between forms

    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
  13. MadTown

    Word Automation - Template 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...
  14. MadTown

    Word Automation - Template Error

    Jason, Is it possible that the users normal.dot is corrupted or perhaps she has a macro virus?
  15. MadTown

    VFP + Contact Manager (ACT! or Goldmine?)

    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.
  16. MadTown

    &amp; replacement

    Linda, try lsTable=&quot;tmp_step&quot; lsRatio(1)=&lsTable..m40_39 be sure to use 2 periods. the first ends the macro substitution.
  17. MadTown

    Reading Jpeg Picture to a Database

    [code]fileloc = &quot;S:\Images\&quot; + ALLTRIM(thisform.txtitem) + &quot;.bmp&quot;[code] This should work
  18. MadTown

    Reading Jpeg Picture to a Database

    Kerbouchard, Try something like this in the refresh of the image1 control. ThisForm.image1.picture=ALLTRIM(table.field) DODEFAULT What's happening is that when you store the value to the picture property it doesn't see it as ALLTRIM(table.field) what it sees is &quot;C:\picture...
  19. MadTown

    I'm hoping somebody here can give m

    Just want to give an update so if anyone else should run into this problem. They'll be able to fix it. The issue was a wrong version of oleaut32.dll existed on the computer that had the problem. Apparently the version that was on the computer was for XP only. The problem was repaired with...
  20. MadTown

    Deliberate virus infection

    Kimber, no matter how you received the file, the fact that your computer was infected indicates your defenses are not fine. TRUST shouldn't play any role in your defenses. What would happen today, if a person that you trusted had unknowingly transferred you a file with a virus? If you...

Part and Inventory Search

Back
Top