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 SkipVought 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: webmonger
  • Order by date
  1. webmonger

    VFP-6 Populating a combobox from aListPaths

    My immediaie problem is solved. After writing a new code segment to add a particular path to the array all entries appear. So it's a mystery that will remain unsolved - until it happens again. somehow the array was out of scope. Thanks Bryan
  2. webmonger

    VFP-6 Populating a combobox from aListPaths

    Stewart 1 - Yes 2 - Yes 3 - Previously selected paths. The idea is that a 3rd Party application stores projects ( Genealogy)in a user determined folder. Within that folder can be a number of projects. So on Page 1 they select the folder to investigate. And on page 2 they get a combo with...
  3. webmonger

    VFP-6 Populating a combobox from aListPaths

    Thanks again Ramani Was your code for a similar situation some years ago <G> I have replace the code and still have the problem. Both versions do it. I removed the combo and put a new one on the page1. I ran Builder and nominated the aListPaths array. No procedures were changed. When I run...
  4. webmonger

    VFP-6 Populating a combobox from aListPaths

    I have an application that I developed last year and am upgrading. I've moved to a pageframe control which works very well. My problem is with a 'previous path' selection combo. this has worked for ages with the following code to populate in in the main form's init procedure cTablename =...
  5. webmonger

    VFP 6 - error 1733 - Shell Application not found

    I am using the seldirdlg() function as illustrated at faq184-1821. This has worked around the world for me BUT I have a German user who now gets the error shown above. Does anyone have any experience of German Windows and/or why the error should occur only on this one machine? Thanks Bryan
  6. webmonger

    VFP 6 -Splitting indexed table into parts

    All working thankyou
  7. webmonger

    VFP 6 -Splitting indexed table into parts

    Darrell Sorry - I do see NEXT under scope - but I still get an empty table? Bryan
  8. webmonger

    VFP 6 -Splitting indexed table into parts

    Darrell I thought this was the answer but I find no records in the new table - I can't see the NEXT command in the definition of COPY TO. Do you have any further thoughts Bryan
  9. webmonger

    VFP 6 -Splitting indexed table into parts

    I need to split an indexed table up into a variable number of parts. That is - to produced the same report for n number of items at a time to get around the creation of an enormous MSWord document. I have a routine using a filter and record numbers. SET FILTER TO (recno() >=...
  10. webmonger

    VFP6 DO WHILE problem

    JIM Appreciate your suggestion. However, The split value is a selectable variable and the number of items is variable ( up to a large number). The purpose of the routine is to get around a MSWord restriction. Each item has an image. The image size is variable. When an internal limit in...
  11. webmonger

    VFP6 DO WHILE problem

    In the following code a MSWord document is created and written to in the do_wordinner routine. The code as it stands does not honour the loop command and if say I had 50 items to add to the document and am doing them 10 at a time only the first document with the first 10 items are processed. It...
  12. webmonger

    VFP6 Page Frames

    I now have the solution to set the Activepage property on my Next buttons Thankyou
  13. webmonger

    VFP6 Page Frames

    Mike said Rather than disabling the tabs, it would be better to make them invisible. To do so, set the pageframe's Tabs property to .F. This has the visual appearance I like but my [Next] button with code like thisform.con1.Page2.setfocus no longer works... Bryan
  14. webmonger

    Color on grid cell

    I am placing the textbox on field one ( leftmost ) in a grid and wish to make the 'button' more visible. Is it possible to use something like this.Set("dynamicbackcolor"RGB(192,192,192)") At present this has no effect? DEFINE CLASS gstxt1 AS TextBox Height = 17 ReadOnly =.f...
  15. webmonger

    VFP6 Page Frames

    Is it possible to disable the 'click on tab' action at the top of each page as I have navigation buttons with special 'jump pages' etc? Thanks
  16. webmonger

    reading from an ini file VFP6

    I have been trying the method shown in the FAQ to read from an ini file but I do not get a result. Declare Integer GetPrivateProfileString in Kernel32 ; string, string, string, string @, integer, string *!* To read the value: lcBuffer = space(255) ?GetPrivateProfileString(...
  17. webmonger

    WORD NOT SAVING

    Thanks Mike I'd forgotten about the path option - obviously another question to ask. Savefile variable is either lpath = SelDirDlg(cDialogTitle, , ) savefile = lpath + '\'+'ExhibitCatalogue.doc' cMessage = 'Document completed and saved in your folder .' ELSE savefile =...
  18. webmonger

    WORD NOT SAVING

    I create a document in my app which can either be invible or visible prior to a save. One user in Germany has stated that the document is not saved anywhere on his PC both to the default 'My Documents' or to a named folder path. Has anyone familiar with German windows any ideas on this? I have...
  19. webmonger

    Hoe to print FAQ

    As an alternative I use TREEPAD and cut and paste into a new thread.(http://www.freebyte.com) I have a great and useful libary for various subjects that I am interested in. Webber
  20. webmonger

    Inserting a picture ina textbox in MSWord

    I have attempted to get appropriate code using the VB Editor and a macro in Word I was able to get a macro to insert a picture and a macro to insert a textbox I was unable to make one to insert a textbox and insert a picture inside it. I tried this code in VFP6 without success newTextbox =...

Part and Inventory Search

Back
Top