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 TouchToneTommy 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: eric43
  • Content: Threads
  • Order by date
  1. eric43

    VFP 6 Cmd button enabled after a pause

    I have a form with a command button which is fired before I open a new app with 'run'. I would like the button on that form to be disabled in the short time the ne app takes to get on screen. Then it will be ready when the new app is closed. Thanks Eric
  2. eric43

    VFP 6 - getting data from served page

    I am using a mapping site from within a VFP form using text address searches and it works very well. Within the source of the downloaded page on the client PC is the following morsel of information that I would like to capture <dd class="latitude">35:07:16S (-35.121)</dd> <dt>Lon:</dt>...
  3. eric43

    VFP 6 Selective printing on label

    Is it possible to add a command to only print a (record on a) label when a certain value is true ( without adding an expression to each field) ie the table has a 'selected' logical field to enable only some from thousands of records to be printed each time. Regards ERIC
  4. eric43

    VFP 6 Create button on dev screen

    Is it possible to save typing 'Do Main' each time I want to test run my code ? Can I create a button on the ToolBar to do this? Many thanks Eric
  5. eric43

    SQL for an existing field name

    I am creating an SQL SELECT from a number of tables but the final criteria will be whether the 'last' table has a field of a certain name eg 'FLAG9'. SELECT DISTINCT ref_id,srnamedisp,perno,a.dsid,nprime,G_toneplnu,; G_Efoot,g_recno,b.primary as e_primary; FROM; TEMP_1 as a,TEMP_EE...
  6. eric43

    VFP 6 Duplicating a record

    I have a need to take all the fields in a in a record and make a duplicate record with the only difference being a ref number in one of the fields. Is there a way to do this without copying all field values into an array or variable. I have a number of tables that I need to do this with. Can I...
  7. eric43

    VFP 6 Combo control initial value

    I have a combo based on a small table which could range from a single record from 1 to a variable number based on prior processing. I want to display the value of the record when the form fires up. I use cmbo.value = table.field in the init method. When there is only one record it displays 1...
  8. eric43

    VFP6 - containers on a form

    Is there a limit of 2 containers on a form? I keep getting 'not found' errors for the 3rd one. Or should I look elsewhere? Thanks Eric
  9. eric43

    VFP 6 Backup routine problem

    I am using an excellent backup routine on F12 I found somwhere which contains et al CLOSE ALL DATABASES lcTimeStamp = 'etc' && add your own lcDevDir = 'etc' && add your own lcBackupDir = 'C:\Backup\' + lcTimeStamp fso= CREATEOBJECT ('Scripting.FileSystemObject') fso.CopyFolder (lcDevDir...
  10. eric43

    VFP6 - removing classes

    I have the following form I use to show locations from a database use WWW Multimap. My problem is that the form 'hangs around' and shows as an outline when I go back for the next person. How do I kill it please? PARAMETERS line1,line2,line3,line4,line5 lAddr2 = line1 lAddr3 = line2 lState...
  11. eric43

    VFP 6 Debugging a form

    In my app I see my main form with its pageframe entries and the controls thereon in the debugger. As a test of a problem - I am opening a simple form with a command button on it from a command button on page 2 of the page frame. I am surprised that I do not see this form as an object in the...
  12. eric43

    VFP Form combo error

    I have a form with three combo boxes. Each one's contents is based on a selection in the previous. After the second I am trying to apply a filter ie applies a filter via a SELECT sql. Now when I get to the third combo I get an error 'Cannot access the selected table'. I find I need the...
  13. eric43

    VFP 6 string translation

    I have just tried storing a memo field in mystring -then mynewstring = strtran(mystring,'C:\Program Files\My Program\Projects\Jones\Jones Pictures\','C:\My Store\Pics') I still see the original content in mynewstring. What am I doing wrong please. Eric
  14. eric43

    VFP6 Writing to a search engine

    I have a variable laddr2( one of a number - but one will do as a sample). I wish to make up a URL with this value -like lcURL = "http://www.multimap.com/map/places.cgi?lient=public" lcURL = lcURL + "&addr2="+ MY VARIABLE HERE +"&icon=x" I have tried brackets and & with the variables but...
  15. eric43

    VFP 6 Starting a testing session

    I use this code which I think Geoff gave me a while ago - with a variation for each of my projects - each shortcut to a similar prg for each project starts them nicely when required - I colour code the background to help in stopping errors *-- Startup program called to load Project abc *--...
  16. eric43

    VFP6 Writing to an image file in EXIF area

    Having spent a few hours going through miscellaneous image files I have collected over the years ( genealogy related) (using the code in a previous posting) I note a number of Properties ( Fields ) which I would like to use to classify my images. I prefer not to use a filename - I use a code...
  17. eric43

    VFP 6 Replicating a table

    I have a table with many records - I wish to create an empty temporary table with the same structure with no records. This will be needed to work whether the new table is in use and hasn't been closed or not. Is this possible? Thanks Eric
  18. eric43

    VFP 6 - Getting at hidden picture information

    If you right click an image in Explorer and go to 'Properties' there are 3 tabs. If you are lucky the summary tag screen will contain a mess of details about the image - obviously stored by the camera. Is there a way to access this information on an image file via VFP? Thanks Eric
  19. eric43

    VFP 6 Word - Using a template for labels

    I am trying to do a Mail Merge type operation. I have a table - Contacts - with 6 fields. I have created a template in MSWord for 12 labels on a page. I create contactlabels.doc based on template. I have fields for each line of the table. All other aspects of my code are working ok and I see...
  20. eric43

    VFP6 Outlook Accounts

    I have three accounts in Outlook and wish to use a specific one for messages from VFP using PostCast. I am using the following code with some passed parameters o=createobject("outlook.application") oitem=o.createitem(0) oitem.subject=alltrim(bodymsg1) oitem.to=sendingto...

Part and Inventory Search

Back
Top