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

    open explorer.exe with thumbnails

    Hi, I use to open a directory ShellExecute(0,'open,[Explorer.exe], myDirectory, [], 1) which works fine. Now I would like to open the directory default with the Thumbnails view. Any idea which paramaters I should apply to get this result? Kone
  2. KoenPiller

    Field UniqueID in SCX and VCX

    Hi, When I browse VCX files I notice that the field UniqueID is not so unique as one would expect. Viz you will find numerous "RESERVED" in the same file. Now I also have a class with "FONTINFO" in the field UniqueID. Is this "by design" and is there a solution to ensure the field is truly...
  3. KoenPiller

    dynamicfontbold

    Hi, With this code I expect to have alternate bold / normal font, however nothing happens. Anybody to give me a clue? thisform.MyGrid.SetAll("dynamicfontBold",; "IIF(RECNO()%2 = 0,[.T.],[.F.])","Column") Thanks, Koen p.s. this question was previously posted in the "general foxpro...
  4. KoenPiller

    sql statement takes too long non-optimesed

    Hi, I cant get this select statement optimized, it takes too long: Select myCursor.productnmr, ; myCursor.startingdate, ; sum(myCursor.productive) as productive ; from myCursor ; join products on products.productnmr = myCursor.productnmr ; where myCursor.startingdate...
  5. KoenPiller

    how to show duplicates

    Hi, I have this table with duplicated entrees: recno field1 field2 field3 1 aa ab abc 2 ab ab abc 3 aa ab abd 4 ac bb abc would like to show only recno(1) and recn(3) which are identical on field1 and field2 How to proceed? Regards, Koen
  6. KoenPiller

    How to start FrontPage in VFP

    Hi, I would like to open a HTM page after I made a selection in in VFP Form. Basicly the same way one could open a Word page. Something like: cMyPage= ThisForm.txtPage.Value loFrontPage=Createobject("Frontpage.Application") loFrontPage=GetObject(,"Frontpage.application")...
  7. KoenPiller

    How to set the TopMargin (programmaticaly) in report 6.0

    Hi, I have this multiple page report for which I would like to make the topmargin wider on the continuous pages than on the 1st page. I have unsucesfully implented a Printwhen<>_pageno=1 on a few extra blank lines in my Page Header with radiobutton ‘Float’ activated, h/e this results in a...
  8. KoenPiller

    Debug will not break when expression has changed

    Hi, Consider following scenario: I have myForm with a buttonclass like the wizBtns.vcx. When activating the cmd Append/Save Button I am ‘appending’ a blank reccord (-1), activating this button again and a new psysical record is added to the table. Nothing special always works o.k. Untill...
  9. KoenPiller

    How to set oleCommonDialog.SAFE() Default Location

    Hi, I noticed for oleCommonDialog Flag 2048 which specifies the user to enter only valid paths. How could I specify the enduser is not allowed to save on CDrom-Drive? Or How can I determine which letter is associated with the Cdrom-Drive? Any solution welcome, Koen
  10. KoenPiller

    VFP.ico new style VS VFP.ico old style

    Hi, I have on my W2K pc VFP6.0 and VFP9.0 installed, dont seem to be able to change to the NewStyle icon for 9.0. Even if I manualy change it, it switches back. Is W2K against Foxhunting? Any idea how to cath this one? Thanks, Koen
  11. KoenPiller

    How to protect my exe from unintentional changements?

    Hi, Is there a method to implent my exe with e.g. a checksum value to safeguard me the exe is still in the original state? Koen
  12. KoenPiller

    Report preview form flashes

    Hi, Consider following statement in myMenu Printing Bar REPO FORM myReport NOCONSOLE TO PRINTER PROMPT PREVIEW This works fine as expected Now in MyForm btnPrinting Click Event REPO FORM myReport NOCONSOLE TO PRINTER PROMPT PREVIEW And only the preview flashes. In case I change and delete...
  13. KoenPiller

    Calvin Hsia's phonebook solution

    Hi, I am puzzled with Calvin's solution to transform a given phonenumber into a word / sentence. Obviously I have already questionned him but most probably to other urgent dealings no reply. How did he fix it? How did he squeeze a 225'000 words into 679K DLL ? and how does this line IF...
  14. KoenPiller

    MS Common Dialog

    Hi, I am puzzled with the Active X msComDlg Common Dialog. Is does not save I have this form with a btnSave. In the Clickprocedure following code: WITH ThisForm .oleCommSelect.FileName = “myFile.txt” .oleCommSelect.Defaultext = “txt” .oleCommSelect.ShowSave() ENDWITH It shows the ms common...
  15. KoenPiller

    MS Common Dialog

    Hi, I am puzzled with the Active X msComDlg Common Dialog. Is does not save. I have this form with a btnSave. In the Clickprocedure following code: WITH ThisForm .oleCommSelect.FileName = “myFile.txt” .oleCommSelect.Defaultext = “txt” .oleCommSelect.ShowSave() ENDWITH It shows the ms common...
  16. KoenPiller

    Weeknumber in Word

    Hi, I am supposed to insert into a Word97 form besides the actual date als the weeknumber. Any suggestion how I can achieve the weeknumber? Koen
  17. KoenPiller

    how to change

    Hi, I would like to change the KeyPress value, e.g. when you press the "8" it will result as if you would have pressed the "*". Can't use the syntax: ThisForm.myField.Value = STRTRAN(ThisForm.myField.Value, "8","*") since this will move the cursor to the start of the textbox, which is...
  18. KoenPiller

    How to display &quot;Yes&quot; instead of .T.?

    Hi, I have this cursor to populate a grid : CREATE CURSOR myCursor ( positive L, name c(10)) APPE FROM myTable Would like the gridfield "positive" to show "Yes" if .T. and obviously "No" if .F. Also user should be able to change this from Yes to No or vicacersa. Thought of using a...
  19. KoenPiller

    Adding different music tunes to the same presentation

    Hi, I would like to add different music tunes to my dia show. Music has to change at certain dia. When it comes to a new music tune a white dia or blank screen for around 3 secconds appears before the next dia and the new tune. Any idea where/what I should change to get rid of the unwanted...
  20. KoenPiller

    Visual FoxPro 9.0 Beta Samples

    Hi, Just in case you haven't noticed: MS published some interesting VFP9.0 samples: http://www.microsoft.com/downloads/details.aspx?familyid=8481ca1a-9022-4a6c-a1d1-8f9a31559489&displaylang=en Regards, Koen

Part and Inventory Search

Back
Top