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!

Recent content by KoenPiller

  1. KoenPiller

    Outlook2007 missing finder.exe

    Olaf, Seems I have installed a thrifty version of Outlook2007 on my laptop, No Finder. Will try the createobject and reinstall my Outlook and report back DayAfterTomorrow. Thanks for replying, Jockey(2)
  2. KoenPiller

    select fonts from a combobox

    Chris, a very nice utility indeed. Exactly what I was looking for. Thanks. Jockey2
  3. KoenPiller

    select fonts from a combobox

    Imaginecorp, Thanks for the response, as you noticed it is indeed a PIA to move the textbox and more GUI minorities to manage - seems like a lot of code for a combo. Anyway if the universalthread link does not show a workable solution will have to go for it. Chris, Will check this link tonight...
  4. KoenPiller

    open explorer.exe with thumbnails

    Mike, Thanks for the support. It was even easier than I would have thought. It is Windows to recall the last-opened-state. So the trick is, open the folder once with Thumbnail option and all the subsequent openings will be Thumbnailed. Dont know yet what will happen after a forced close down or...
  5. 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
  6. KoenPiller

    checkbox in grid behaving abnormaly

    Boris, that did it! Thanks a lot. - Strange I can also literaly see the checkbox without the .chkbox.Visible = .t. Now with this property on .T. I cannot even see but also work with it. Thanks a lot. Jockey2
  7. KoenPiller

    Field UniqueID in SCX and VCX

    Mike, Scott, OK UniqueID is not what it says, I will have to find an other solution. Pitty. Thanks for replying, Koen
  8. 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...
  9. KoenPiller

    dynamicfontbold

    Brian, Thanks for taking the time to re-reply me with a correct question! This removal action : indeed not so user friendly. Not only that it is arbitrarly, it is also not so polite towards the members who took the time to reply. Anyway thanks aganain, your answer worked as expected. Koen
  10. 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...
  11. KoenPiller

    Visual FoxPro's birthday

    Mike, When is a fox borne? Googling around for FoxPro 3.0 in Discussion Groups I read this article by Steve Chadbourne in comp.database.xbase.fox dated 26 Jan 1995: "Visual Foxpro 3.0 from FoxForum on Compu$erve." Anyhow its good to know Fox is grown-up today. What is the eldest VFP...
  12. KoenPiller

    sql statement takes too long non-optimesed

    Stewart, Mike is correct, I am referring to a cursor, the index is on the products.dbf tag: products.startingdate. However, for testing purpose I have executed the same logic to 'real' tables MyCursor.dbf and Products.dbf both indexed on startingdate and products.dbf on endingdate. Still I...
  13. KoenPiller

    sql statement takes too long non-optimesed

    Mike, Yes, prior to posting I have checked the SYS(3054,12) : Rushmore optimization level for intermediate result: none Rushmore optimization level for table products: none Joining intermediate result and table products using index tag Fk_49765 (sick) reversing also no effect (even no...
  14. 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...
  15. KoenPiller

    how to show duplicates

    Hi, Thanks, 2 cursors, that's it. Regards, Koen

Part and Inventory Search

Back
Top