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

    Retaining Precision with STR and TRANSFORM

    Thanks to all of you for your comments. I'll go with the string entry approach. Linda
  2. LindaRichard

    Retaining Precision with STR and TRANSFORM

    Thanks for taking the time to answer my question. I guess this means that there is no way of transforming very long numbers into strings in VFP. Thanks Linda
  3. LindaRichard

    Retaining Precision with STR and TRANSFORM

    I have a series of numbers with various precisions: For example a(1)=12.34 a(2)=134.234 a(3)=1343456543.343234323 I wan't to transform these numeric values into strings but I want to retain the original precision. I know that for example, if I wanted to round to 2 digits I could use...
  4. LindaRichard

    Excel start up in print preview

    That's what I will do. Thanks again for your advise. Linda
  5. LindaRichard

    Excel start up in print preview

    Mike thanks for your suggestion. Unfortunately I would need to save the worksheet first which I don't want to do. Do you know of any other way to automatically show the content of the worksheet in print preview? Thanks again for your help. Linda
  6. LindaRichard

    Excel start up in print preview

    Hi, When programming Excel from VFP 8.0 is there a way to display a sheet in print preview view on entry instead of the standard grid sheet? I also have code to display some text over serveral columns using the merge command, this works fine, except that I would like the row height to adjust...
  7. LindaRichard

    Speed problems with string contains search.

    Hi Mike, Thank's for your answer. This is not the first time that you have answered one of my questions and I very much appreciate your responses. Your right, not the answer that I was hoping for, but now I can concentrate I finding a solution. I will go with a local copy of the database...
  8. LindaRichard

    Speed problems with string contains search.

    My question is more of a "what is VFP doing?" For example, I have been performing a search of a character field, named sampleno. This field is indexed and a common search would be to find a sampleno that contains "ABC". The database is located on a server and this search is run from a local...
  9. LindaRichard

    Menu Bar and command button synchronized

    Mike thanks for your reply. It sounds like it will work, but as you mention, my only concern is the use of the timer. I will give it a try. Thanks again for your help. Linda
  10. LindaRichard

    Menu Bar and command button synchronized

    Mike, Thanks for your reply, I appreciate you taking the time, to answer my question. I have part of my problem resolved. In the refresh event of class that contains my toolbar I place the following code: IF SKPPAD('_medit','_med_cut') then this.cmdCut.enabled=.f. ELSE...
  11. LindaRichard

    Menu Bar and command button synchronized

    Hi, I have a menu bar that contains cut/copy/paste items _med_copy etc... This menu bar was created using the wizard and displayed using do menuiso.mpr ( I am using VFP 8.0 sp1) This works fine various cut/copy/paste items are enabled/disabled depending what type of control is being edited...
  12. LindaRichard

    return character in editbox

    Thanks to both of you for answering my question. Both the grid and textbox are currently set at arial. Changing the font does make a change on what the character looks like but there is still some odd character displayed in the grid. I set the textbox property addlinefeed to .f. so this should...
  13. LindaRichard

    return character in editbox

    I have a multi-line edit box and a grid that displays the typed text. The problem is when the user includes a return in the edit box the return appears as a square character in the grid. When I browse the database record the return is represented as a double vertical line character. Anybody...
  14. LindaRichard

    Scientic notation

    Thank you both for taking the time to answer my question. I will do as you suggested and parse them out. Thanks again Linda
  15. LindaRichard

    Scientic notation

    Hi, I am trying to display the number 0.00000009 using scientific notation. I set the .format property of a text box at ^ and it displays 9.0000E-8. I would like to control the precision of the number displayed. For example I want to display 9.0E-8. I tried setting .format to 9.9^ and #.#^...
  16. LindaRichard

    scatter/gather to an array

    I use the following code to scatter a series of records for a view I created from a larger table ar_raw PUBLIC giNberofRawToKeep select tmp_monraw giNberofRawToKeep=RECCOUNT() PUBLIC ARRAY gmRawToKeep(giNberofRawToKeep) GO top FOR t=1 TO giNberofRawToKeep SCATTER NAME gmRawToKeep(t)...
  17. LindaRichard

    Printer.hDC equivalent in VFP

    I have an OCX control called Metadraw. This allows me draw and edit graphs. In Visual Basic to print the content of the control (MDdraw) I would type Printer.Print "" MDdraw.ExportDC=Printer.hDC Printer.Newpage Printer.Enddoc The code SET Printer ON SET printer OFF does result in a...
  18. LindaRichard

    adding a custom text box to a grid

    I found the solution to my problem. I forgot to set the following property .columns(i).mytextbox1.visible=.t. Thanks Linda
  19. LindaRichard

    adding a custom text box to a grid

    I am trying to add a custom text box to a grid without success. I created a custom textbox called mytextbox using the class editor. In the click event I placed the text messagebox ("Hello") I then created a form and added a grid control to the form. Using...
  20. LindaRichard

    Minimum form width

    Thanks to all of you for taking the time to respond. It's great to see so many people contributing to solving a problem. Your help is appreciated. Thanks Linda

Part and Inventory Search

Back
Top