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. holzert

    Cisco 501 Pix Configuration problem

    Nevermind all, you pointed me in the right direction - it is working now :o) Thanks!
  2. holzert

    Cisco 501 Pix Configuration problem

    Isn't that what ip address outside dhcp setroute retry 4 does?
  3. holzert

    Cisco 501 Pix Configuration problem

    Thanks for replying. silly question, but I need to verify: from the pix citrix hypterminal, how do I verify that it is getting a default route? using sh conf?
  4. holzert

    Cisco 501 Pix Configuration problem

    Trying to setup a Cicso 501 Pix at home with a RoadRunner cablemodem connection. I have a linksys wireless 2.4ghz gateway between the Pix and the cablemodem. All connections through the linksys (pcs) work fine connecting to the internet. The pix gets an ip address from the linksys fine, but...
  5. holzert

    Cisco Pix 501 Configuration problem

    Trying to setup a Cicso 501 Pix at home with a RoadRunner cablemodem connection. I have a linksys wireless 2.4ghz gateway between the Pix and the cablemodem. All connections through the linksys (pcs) work fine connecting to the internet. The pix gets an ip address from the linksys fine, but...
  6. holzert

    Unusual Form Behavior

    It's worth a try. Thanks Mike!
  7. holzert

    Unusual Form Behavior

    That works temporarily. Then after 4-5 times of running the form (it is a simple receipt entry form) it starts happening again. What does pressing both windows keys simultaneously do exactly? How is that different than pressing one of the windows keys?
  8. holzert

    Unusual Form Behavior

    It is Norton AntiVirus and I excluded the entire directory structure for testing purposes. Sorry, I should have mentioned that previously.
  9. holzert

    Unusual Form Behavior

    I have a process that a user goes through maybe 30 times a day. The steps are always the same. During the process the sequence goes through 4-5 forms being displayed and allowing keyboard entry before a report prints from each form. This happens at literally hundreds of locations with no...
  10. holzert

    What is a good Vfp substitute for IsArray()

    In VFP8 I find it more reliable to use: IF TYPE('ALEN(myarray,1)')="N" *--Is an array ELSE *--Is not an array ENDIF
  11. holzert

    PDF w/form fields View/Edit/Print Activex control

    Thanks for the information on correct formatting for code. I didn't realize that I needed to use the square brackets. Can you fix it (replace < with square brackets)? thanks, Tracy
  12. holzert

    PDF w/form fields View/Edit/Print Activex control

    For any lurkers, I found a way to do it using automation or javascript directly from VFP (see the SDK for more information) <code> *--This example reqs test.pdf with the following fieldnames (all are case sensitive): * "AGENCY.NAME" * "AGENCY.ADDR1" * "AGENCY.CITYSTZIP"...
  13. holzert

    PDF w/form fields View/Edit/Print Activex control

    Thanks everyone for the ideas.
  14. holzert

    PDF w/form fields View/Edit/Print Activex control

    VFP8. We are once again looking at editing PDF forms inside of VFP. We are currently testing the pdf.ocx from Adobe in conjuntion with Gnostice's pdftoolkit. I have looked at a couple of other options such as iSedQuickPDF. Right now I am able to open a pdf file using Gnostice's pdftoolkit (the...
  15. holzert

    Create a FPD26 Screenset

    Thanks!
  16. holzert

    Create a FPD26 Screenset

    I have not created screensets in FPD26 in a couple of years at least. Can someone refresh my memory on how to create a screenset versus just creating a single screen? I have two screens already designed and wish to combine them into one screeenset in FPD26. TIA
  17. holzert

    An excellent FRX-Word/HTML - where is full version?

    http://nsvisual.com/fox2/faq/art.php3?file=fido-faq3.htm
  18. holzert

    VFP 7.0 how to tell if directory is empty

    *Example directory structure delete *Created a directory c:\tracy for testing purposes *C:\tracy has 2 subfolders and each subfolder has *2 files for testing purposes SET SAFETY OFF IF FILE('dirlist.dbf') DELETE FILE ('dirlist.dbf') ENDIF * Pass the name of the directory you wish to delete...
  19. holzert

    VFP 7.0 how to tell if directory is empty

    IF ADIR(gaFiles, 'c:\test\*.*')>0 WAIT WINDOW &quot;Files exist!&quot; ELSE WAIT WINDOW &quot;No Files found.&quot; ENDIF
  20. holzert

    Same Report TWICE on Same Sheet of Paper?

    I have a report that is based on a parent-child relationship. It is a receipt grouped on the receipt number with detail items. It is 8.5 x 5.5 inches and used to print on perforated dot-matrix sheets. Now the users have purchased perforated laserjet sheets so I need the ability to print the same...

Part and Inventory Search

Back
Top