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 wOOdy-Soft 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: *

  • Users: SleepDepD
  • Content: Threads
  • Order by date
  1. SleepDepD

    Compare HTML Page, Not Data

    I writing a program that interacts with a web site; I want my program to be able to check if the source code behind a particular web page has changed. I can't just compare the HTML directly because the web page has text boxes, combo boxes, check boxes, etc. that all contain data. More...
  2. SleepDepD

    Can't Set WebBrowser.Height

    I've been researching/coding how to add a WebBrowser to a Access form all day. I've made a lot of progress, but I ran into another problem I cannot seem to get around. I'm working on handling pop-up windows (the web site my application will connect to has pop-ups that the user should have...
  3. SleepDepD

    "Record is in use" Err, w/ CRS Not TBL

    I'm having problems with a class in my project that was written by someone else--base class: TextBox. It's worked fine when the ControlSource has been a field in a table, but now I'm trying to use it with a cursor. I'm getting the error: #109 - Record is in use by another user. I'm sure this...
  4. SleepDepD

    TextBox.DblClick in Grid

    I can't get the DblClick event for a TextBox in a Grid to trigger. My project uses custom Grid and TextBox classes developed by someone else who's no longer on the project and I'm trying to add double-click functionality to the grids. I've used the Coverage Profiler and the DblClick event is...
  5. SleepDepD

    SET PROCEDURE TO/Multiple APPs

    I'm working on a project that has one EXE and several APP files. I have a PRG containing "global functions" (GLOBAL.PRG)--and my SET PROCEDURE TO command for this is in the main PRG for my EXE (MAIN.PRG). I've noticed I have to have the GLOBAL.PRG referenced in my other APP projects otherwise...
  6. SleepDepD

    Learning Resources for VFP

    If you were going to have a friend or co-worker learn VFP, what books/learning resources would you give them? Would you just drop a copy of KiloFox on their desk...or are there some other good resources out there?
  7. SleepDepD

    SET FILTER TO and APPEND BLANK

    There's an implied relationship between my two tables, "People" and "Rides". My form shows "rides" records. I only want my form to show the rides for a given person, so I'm using:SET FILTER TO rides.PeopleID=people.PeopleID IN "rides"On this form new rides can be added--and I'm using APPEND...
  8. SleepDepD

    Macro Substitution, Partial Field Name

    Could I somehow use the & command for the following? ** "tcType" could be "pick" or "drop" ** the following is kind of pseudo-code REPLACE first.tcType+"name" WITH ALLTRIM(second.name) ; ,first.tcType+"address1" WITH ALLTRIM(second.address1) ; ,first.tcType+"address2" WITH...
  9. SleepDepD

    Base Table Changed in View: Error

    Working in VFP 7.0, I got the error message "Base table fields have changed and no longer match view fields. View field properties cannot be set." I'm working on a "update" EXE for my deployed application--it updates some tables, adding new fields, etc. I looked at the definition for the...
  10. SleepDepD

    Reorder Records in Table

    I'm working in VFP7. I have a simple archiving component in my application that moves records between specified dates from table "A" to table "B". There's also a "recall" functionality (using APPEND FROM DBF) that moves the records back--however this leaves the records in table "A" not in...
  11. SleepDepD

    Combination, Not Permutation, Algorithm

    I'm looking for a combinatorial algorithm written in VB; a function that would list every possible combination of characters in a given string "ABC". I've found a lot of algorithms outputting permutations:ABC,BCA,CAB,... but none of all combinationsA,AB,ABC,...If anyone has one, I would...
  12. SleepDepD

    Run EXE Minimized

    I have a VFP7 EXE (PRG) that's apart of an update package that is executed by InstallShield. I want this EXE to run completely "behind-the-scenes", what should I put at the beginning of the PRG file to keep it out of the users face?
  13. SleepDepD

    DataEnvironment Relationship Not Updating

    Here's what I've got; I appreciate any help: In the DataEnvironment of my form I have 2 tables, "tblRoute" and "tblPeople". Both tables have a field "PeopleID", and conceptually there is a one-to-many relationship from "tblRoute" to "tblPeople" using them--but we're not using persistant...
  14. SleepDepD

    Error: "Cannot update the cursor" at Build

    Anyone else ever ran into this? I'm trying to build my .APP (in VFP 7.0 SP1), with "Recompile All Files"--at the tail-end of the build process I get the error "Cannot update the cursor". Clicking "Help" just gives me "Cannot update the cursor (Error 111)"...not too helpful. I appreciate the...
  15. SleepDepD

    Where is VB Toolbar Saved?

    I'm wondering if anyone knows which file houses the VB toolbars setings...I have the Menu Bar, Shortcut Menus, etc. all set up the way I want and I want to copy them to a second computer. Appreciate the help.
  16. SleepDepD

    Create URL of EXE w/ Command Line Parameters

    * Sorry if this is the wrong forum--would appreciate the help though... * I created an EXE that will be stored at a shared location on my company's intranet. I want to add a hyperlink to HTML e-mails for employees to run this EXE. However, the EXE needs a pipe-delimited command line parameter...
  17. SleepDepD

    Looking for Software: Deleting Cookies

    Does anyone know of a program (freeware/shareware/VB source code) that will allow you to selectively delete cookies? I know you can just delete the cookie (.txt file) from the "Cookies" folder, but there's still additional junk in the "index.dat" file in the same folder. Thank you.
  18. SleepDepD

    RichTextBox: Using CreateObject In Module, or Convert RTF to Text

    Having a problem, maybe someone can help: I have a DataReport in my project that prints from multiple places so I have a global procedure to handle printing. One of the fields it gets from my DB is RTF text; I need a way to convert this RTF to plain text before putting it into the RPT (I'm...

Part and Inventory Search

Back
Top