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

    Image problem

    Hi When I make a word doc with text and pics it all works fine, then when I konvert it to .pdf the images are just grey boxes. I use Acrobat Proffesional 6.0.2 I have reinstalled and whent through the properties, fond nothing wrong. Help needed.. Thanks /Michael
  2. Holm78

    Compability V.2,6 to V.8

    Hi all Simple question. Today we use a large Foxproapp built in Foxpro 2.6, my question is can we transfer all the code and tables to Foxpro 8 and it will work? Thanks Michael
  3. Holm78

    DTpicker activeX value prob

    Hello all I have recently installed VFP 8.0 and SP1. My prob is that a add a DTpicker (any kind that comes with VFP) to my form and all looks good but when I want to use the value property it does not find it. If i mark the DTpicker and look in propertys the value does not exist... but when...
  4. Holm78

    Delete duplicate based on date

    Hi all reg, name, operation, date My wish is to delete all duplicates (reg) and have one left and that one should be the most up to date for example Reg Name Operation date HGT876 Phill 15240 2003-01-01 (1 jan) HGT876 Phill 15260 2003-05-01 (1 may) In this case...
  5. Holm78

    Add record after SET FILTER

    Hi I have the wizbuttons and the add new record button, when I start my form and press the button it all works perfect, it adds a record without any questions. But if I press a button with SET FILTER TO and then tries to add a new record a question pops up that says: "The fields relating...
  6. Holm78

    How to print flawless

    Hello I have a Form and a Report. In the form I have a button with the code: report form rep_test.frx to printer When I press the button the report prints out perfect, but when I am back att the form and press print again it prints out the report result on the Form and behind my objects and...
  7. Holm78

    Count Days

    Hi all I have a textbox with a date ex. 2003-05-01 And in another textboxt I want a number for how many days has gone since that date to todays date. in this case 7 days. Any code examples? //Holm
  8. Holm78

    Delete files read only

    Hi all I have this module that I use to delete files and libraries. I have one problem: If the file is writeprotected Foxpro says acces denied. Is there a way to delete the file/files anyways? Thanks Michael
  9. Holm78

    Excel , jump over a row?

    Hi I have a simple form. And beetween each cell there is a empty row. My wish is that after I typed in my data in the cell and press enter the cursor should jump over 1 row. It look like this: Date:............ ................. <--- Empty row. jump over this one Name...
  10. Holm78

    Open memo in top level form

    Hi all I have a top level form and I use the file config.fpw to hide the vfp desktop. And in the form there is a grid with memo field. My prob. is that I can not open the memo field, nothing happends, and the form stops working. plz help Thanks //Holm
  11. Holm78

    New line ??

    Hi all I have an edit box and I user can select different alternatives, and each alternative have a text that apears in the edit box. My question is how can i put in the code that there shoulb be a new line. As if I pressed enter? ex. Hello. My name is Bob My wish is Hello. My name is Bob...
  12. Holm78

    Report Question

    Hi all!! I have this form with a bunch of buttons, and when I press a button a specific text apear in a label. On my report I have a field and in that field I want the same caption as the forms label depending on witch button that was pressed. How do I make this? Do i put a code in the field on...
  13. Holm78

    1000 separator

    Hi In my init of the form I put SET SEPARATOR TO '.' In the options I chose . as separator and when I run the form nothing is affected. Nummbers are shown as 1000000 instead of 1.000.000 plz help
  14. Holm78

    overwiting a file prob.

    Hi The user select a file to be copied and then the user select a server where the file should be copied to. And if a file allready exists a messagebox apear and ask if you want to replace the file. the code: if not file(addbs(alltrim('\\m10878300010\'+v_target))+filename) copy file...
  15. Holm78

    Relations question..

    Hi I have 2 tables both has a field that contains the same info, a id field. I also have a form with 3 textboxes 2 is conected to same table and 1 is to the other. when I click move to next record I want the 3 txtbox to change. Now only the first 2 changes. Suggestions on how to solve this...
  16. Holm78

    My grid is blank??

    Hi Here is the code for MyForm.init : DIMENSION a_omr(1,3) use MyTable i=0 SCAN i=i+1 a_omr(i,1) = column1 a_omr(i,2) = column2 a_omr(i,3) = column3 ENDSCAN thisform.grid1.column4.header1.caption = a_omr(1,1) thisform.grid1.column5.header2.caption = a_omr(2,1)...
  17. Holm78

    Language on messages

    Hi I am placed in Sweden and my employer want the messages that appears in the exe app to be in swedish where can I find the text so I can change it?? For example Are you sure you want to quit? I need to change that. thanks //Holm
  18. Holm78

    Do Form instead of quickstart

    Where do I put Do MyForm I have unchecked the quickstart box and now I want my main form to start when the exe file has been executed. The problem is that there is so much code in the main prg so I don't know where to put it. thanks //Holm
  19. Holm78

    Record is out of range??

    Hello When I sort my grid with varios buttons with set filter(). But if the filter don't find any records an error comes up: record is out of range. Here is the code for one button: clear thisform.label3.caption = &quot;ATT GÖRA IDAG&quot; set filter to avslutad <> .T. and startdatum =...
  20. Holm78

    Weard problem with grid

    Hi I have a grid and a set of data edit buttons (foundation class). When the form is open and I press the add new button I insert all the data I want (1 is memo) and when I press save the record is reverted. First it shows in the grid as it should end then after I've saved *gone*. Does anyone...

Part and Inventory Search

Back
Top