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

    A new VFP contractor needs HELP!

    Hi All, Recently, the company I am F/T working for wants me to work as a contractor. The job is still the same, VFP programming for the software I have been working on in the past 8 years. I need helps regarding this matter; - Copyright. The company doesn't want to claim the copyrights for...
  2. pxw

    Email and Notes and VFP using the DCO.OCX

    Hi greywalk, Could you let me know the web site where you down load the IBM/Lotus Notes Domino Collaborative Object? I want to give a try. Currently, I am using Notes 5.0.6 with Win2000 in a NT4 network. Peter
  3. pxw

    move to VFP7 now or wait for VFP8?

    Hi, I am using VFP6 which is okay for my applications. Currenlty, the company I am working for has a fund to purchase a new version of VFP. Should I move VFP 7 now or wait a while for VFP8. Someone said even VFP9 is on the way(?!). The point is I don't want to buy something which needs to...
  4. pxw

    how to insert a page break in a Excel sheet ?

    Andreas, Fantastic.....It works! Many thanks. By the way, what is the meaning of the number -4135 in your codes and where do you get it from? danceman, thanks for the information. You have helped me many times. Peter
  5. pxw

    how to insert a page break in a Excel sheet ?

    Could someone tell me how to insert a page break in a Excel sheet using VFP, please? Following is my codes, sfile=Fullpath('EST.xls') oExcel=CreateObject("Excel.Application") oExcel.visible=.T. oExcel.Workbooks.Open(sfile) WITH oExcel oSheet = oExcel.ActiveSheet...
  6. pxw

    Text of diary can't be coped/pasted in some computers?

    danceman, it is an exe. following codes are used to start a menu in my main.prg, v_level=0 do CHECKLEVEL &&check password level and return v_level if v_level<3 do memu1.mpr &&the menu for other users else DO menu2.mpr &&the menu for team leaders endif Note that...
  7. pxw

    Text of diary can't be coped/pasted in some computers?

    Hi, Can someone tell me why the texts of diary can't be coped/pasted in some computers by using Window's default hop keys, Ctrl+C and Ctrl+V? The texts can be high lighted. However, they will be deleted if the users use the keys of Ctrl+C and Ctrl+V. Note that there are no troubles at all...
  8. pxw

    Free VFP Get-together seminars in Australia

    Just to let the VFP Aussies know that there are two coming VFP Get-togethers seminars in Australia next month. Both seminars are free charges: The get-together sessions will consist of two technical presentations by Andrew Coates, director of Civil Solutions. There will also be presentations...
  9. pxw

    Attach a .dbf file into a LN document programmatically?

    Hi All, Is it possible to attach a .dbf into a LN R4.6 document using VFP programmatically? I am a VFP prorammer with some Notesscript knowledge. My case is; - an existing LN database TEST.NSF, - an form named TESTFORM in TEST.NSF, - a date/time field, named D_date, and an attachment in...
  10. pxw

    Attach a .dbf file into a Lotus Notes document programmatically?

    danceman, Thanks for your response. Is it possible for you to give me some example codes? it seems I can't pick up a picture how to do. My case is; - an existing LN database TEST.NSF, - an form named TESTFORM in TEST.NSF, - a date/time field, named D_date, and an attachment in TESTFORM, -...
  11. pxw

    Attach a .dbf file into a Lotus Notes document programmatically?

    Hi All, Is it possible to attach a .dbf into a Lotus notes document using VFP6 programmatically? Any help would be appreciated. Peter
  12. pxw

    Calendar: Foxuser resource file is unavaiable ?

    Hi danceman, I found why the file is not available. This is becasue the resource file is setted to &quot;no used&quot; in the section of file locations of Options in my VFP system. The Calendar/Diary work okay now. By the way, I can not find the thread Q104884, which you memtioned in...
  13. pxw

    Calendar: Foxuser resource file is unavaiable ?

    hi danceman, Thanks. The foxuser.dbf does exit. I can open it in the VFP command window. It is in the default path. However, I still get the same error message. Peter
  14. pxw

    Calendar: Foxuser resource file is unavaiable ?

    When running the following codes, Activate window Calendar I got an error message, &quot;Foxuser resource file is unavaiable. Diary disabled&quot;. Note that the calendar still appears on the screen after the error message. However, it doesn't work. Any help would be appreciated. Peter
  15. pxw

    exactly equal (==)

    With SQL statements, I agree what dgrewe memtioned above. I am using alltrim()+&quot;==&quot; more than alltrim()+&quot;=&quot; to make sure the output is correct. Can someone tell what is the differenty of running speed between &quot;==&quot; and &quot;=&quot;? Peter
  16. pxw

    Pie and bar charts in FoxPro 6.0

    hi mgagnon, Testing your codes, I got an error message in the following line, oXLChart1.application.charts[1].SeriesCollection(m.i).delete The error message is &quot;unable to get the SeriesCollection property of the Chart class..&quot; All the rest of your codes work very fell. Have I...
  17. pxw

    data security ?

    is there any way to make the data, in VFP tables, can ONLY be accessed properly by using a specified VFP program? That means the data will be useless without the program, even those tables can be copied. Any help would be appreciate. Peter
  18. pxw

    can data be appended from a cursor?

    Many thanks for your responses. danceman: I have tried the following codes. It still doesn't work properly. select * from table1 into cursor cTemp nofilter use table2 in 0 select table2 append from cTemp The number of record in Table2 is the same as in cursor cTemp. However, all the records...
  19. pxw

    dial-up connection

    Hi danceman, May I has a copy of your test form, please? My email address is peter.wu@draeger.com.au. Thanks. Peter
  20. pxw

    can data be appended from a cursor?

    I tested the following codes. It doesn't work, select * from table1 into cursor cTemp select 0 use table2 append from cTemp Am I doing something wrong or VFP6 doesn't like so? The codes work very well if I use &quot;table&quot;, insead of &quot;cursor&quot;. Peter

Part and Inventory Search

Back
Top