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

    resizing forms

    Has anyone build a function to resize everything on a form so that all items on the form are resized proportionally? We originally designed our forms around the 800x600 size and now want to enlarge. I don't want to lose alignment (so that items currently aligned will still be aligned). We...
  2. samsnead

    text noshow problem

    We have an application that creates XML file using text endtext code - see below. In a recent case VFP but an extra carriage return line feed in the </charge_desc> delimiter - all other records in the file were ok. Has anyone experienced anything like this? Here is code && put into txt file...
  3. samsnead

    VFP9 and Vista

    I just upgraded to a new computer with VISTA and have many problems with VFP (that used to work in XP). 1. When I try to compile a program and create an exe - get error message "Cannot find the menu-generation program". 2. When I change the compiler settings to create win32 exe, recompile all...
  4. samsnead

    0: Class definition MSXML2.DOMDOCUMENT.4.0 is not found.

    I get this error when trying to run TASK PANE (just installed VISTA on new computer and had to install VFP 9). Any ideas? I did download the msxml2.dll but still no luck.
  5. samsnead

    preview then click print and reboots XP

    We have a report that uses vfp9 - see below. However if you preview the report then click print on the printer toolbar, system gets rebooted (no error message or anything - but a black screen). Any ideas or has anyone heard of this? ** To PDF LOCAL pToolBar, lcPreviewCaption pToolBar =...
  6. samsnead

    vfp9 slower on gigabit network

    We tested our VFP9 app on a gigabit network controller (DLink) and found that it actually ran slower than it did on our 100Mbps network. Has anyone got any idea as why the supposedly faster network is actually slower?
  7. samsnead

    text noshow pretext 4 - extra carriage return line feed

    I create a text file for each user using - Store Fcreate(lcfilename) To _Text && Create low-level file I then output text to the file using text endtext TEXT NOSHOW PRETEXT 4 <?xml version="1.0" ?> <!DOCTYPE ledesxml> etc. The file is created and all xml is ok but there is an...
  8. samsnead

    how to handle 2 users updating file viewed in grid

    I need some way of updating the grid view where 2 different users may be viewing the same file in a grid so that changes made by user 1 to the file show up automatically in user 2 grid (even tho user 2 may be just viewing the grid). I guess question is how can I refresh user 2 grid if user 1...
  9. samsnead

    add combox of fields to report controls

    Is it possible to add a combobox to the report controls toolbar or add a toolbar so that users could drag and drop fields onto the report?
  10. samsnead

    hypertext on form

    I have put hypertext on form using shellexecute command to open the html file - however, IE always opens full screen - does anyone know if we can control size of Internet Explorer screen - and should this question be in different forum?
  11. samsnead

    form caption as hypertext

    is it possible to add an icon to the form caption titlebar so that form caption would have Title of program and also an icon for help (as well as minimize, maximize, close options)
  12. samsnead

    how to enable page on one form from another

    I have 3 forms - form 1 loads form 2 and also form 3 - all modeless. If I load form2 then load form3, I want ability to enabled page 2 on form2 from form3 then activate form2 so I end up on page2 of form2. I can activate form2 but have no success enabling page 2. code I tried in form3 was...
  13. samsnead

    adding column to grid

    I have a grid with 9 columns, data is bound to grid and control source is set to field in cursor. If a certain condition exists, I want to add a column to the grid, show that column as the second column and show all other columns. When I do this, the columns show properly but the data...
  14. samsnead

    add button to fox ide

    I would like to add a button to vfp (9) that would let me run a vfp program - I saw a similar request when searched for answer but it only added program to startup. Can we add button to vfp so automatically available everytime we run vfp?
  15. samsnead

    outlook automation using 100% of cpu

    Hello - I copied the following code from a Microsoft article, put in activate on a page in one of my forms and when I click on that page my CPU usage jumps to 100% and stays there. Is there something wrong with this code - or my app!? oOutlookObj = CREATEOBJECT("Outlook.Application")...
  16. samsnead

    invalid date

    All of our date textboxes have value of {}. If we enter a partial date (i.e. 1/ / ) and then exit or click somewhere else on the form - we get Invalid Date message. Is there a way to bypass this (without changing all our textboxes and building our own date validation)?
  17. samsnead

    exact match searches

    I have a dbf with a number of alpha fields where I want to search the dbf but only report those records where I get an exact match on a name or a character string. (e.g searching for SHARP but do not want records that have SHARPER, SHARPNESS etc.) Some of the alpha fields will contain multiple...
  18. samsnead

    how to drag drop an editbox

    I have an editbox that I make visible on a screen under certain conditions. I want ability to move(drag) it. Is this possible?
  19. samsnead

    grids, dynamiccolor and activatecell problems

    I made a posting some time ago about this topic and somehow got grids to respond properly. We put the dynamic code in the init of the grid WITH THIS .SetAll("dynamicbackcolor",; "IIF(MOD(this.activerow, 2) # 0,RGB(255,254,210), RGB(255,255,255))", "Column") ENDWITH THIS.Refresh() and...
  20. samsnead

    buttons highlighting

    We have a form with multiple pages where we have buttons that are letters A to Z. If we click on a number of the buttons, all remain highlighted - but only if they are on a page (e.g. - click A C M - all are highlighted). Another unusual event - if you mouse over all of them (just drag mouse...

Part and Inventory Search

Back
Top