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 DeerBear

  1. DeerBear

    Delphi, QuickReport and PDFs

    Hi garwain, You can use PowerPDF which is a powerful suite for creating PDF Files. WPTools is good, too, but quite expensive from what I remember. Cheers, Andrew
  2. DeerBear

    Numlock

    Hi Raven078, The problem is that Windows distingueshes( I dunno why ) turning the NumLock light on and actually pressing the NumLock key. When looking for the answer please bear this in mind. Cheers, Andrew
  3. DeerBear

    EDBEngineError "Couldn't perform the edit because another user..."

    Hi tbarone, I bet you've handled OnBeforeEdit and/or OnAfterEdit, etc. If this is the case, please post the code. Cheers, Andrew
  4. DeerBear

    Creating packages

    Hi new2delphi, If you own a PRO or superior edition of Delphi 5, you are entitled to use the Package Collection Editor, which would allow easy deployment of multiple packages. Check it out. Cheers, Andrew
  5. DeerBear

    Query to MS Excel

    Hi lastcyborg, This question can mean everything and nothing... please give a wider explaination of what you want to achieve :-) Cheers, Andrew
  6. DeerBear

    Hide window of other app?

    Hi KempCGDR, This time's your bad! ^_^ ShowWindow is different from PostMessage! Use ShowWindow with a 0 argument, after FindWindow. Cheers, Andrew
  7. DeerBear

    Hide window of other app?

    Hi KempCGDR, Sorry, my bad. Look at the help about WM_SHOWWINDOW. HTH, Andrew
  8. DeerBear

    BLOB has been modified!

    Hi EricDraven, I would say you should lock the table and refresh data after each change. Locking the table will stop others from accessing a record while it's being modified, so that it should put the word "end" to the error. Cheers, Andrew
  9. DeerBear

    Making a menu appear programatically

    Hi NutsAndBolts, You probably missed reading the help file. Try having a look at the "visible" property there. Cheers, Andrew
  10. DeerBear

    Hide window of other app?

    Hi KempCGDR, FindWindow to find the Window handle based on title and/or class name. Use then PostMessage like this: PostMessage( Handle,WM_Hide,0,0 ); Should work. Cheers, Andrew P.S. Remember to include the "Windows" unit, if it's not already present!
  11. DeerBear

    Hide window of other app?

    Hi KempCGDR, Just Post it a WM_HIDE Message( PostMessage API ) or kill it( under Nt/2000/XP ). Cheers, Andrew
  12. DeerBear

    Keystroke prevention

    Hi TheDelphiBeginner, You may want to drop an eye to WM_Char and WM_DIALOGCHAR Windows messages in the MS SDK Help file that ships with Delphi. In order to prevent your next question, you can handle messages in this way : Type TMyForm = class( TForm ) private procedure...
  13. DeerBear

    Form order in Delphi

    Hi TheDelphiBeginner, You may want to have a look at the EnumWindows API. Cheers, Andrew
  14. DeerBear

    WebCam programming

    Hi davidchardonnet, Did you have a look at Torry? You can find lots of components there that do just that! ^_^ Cheers, Andrew
  15. DeerBear

    Multi-String in the Registry?

    Hi BobbaFet, According to your Delphi version, you may do this : MyStringList.Delimiter := '#'; Reg.WriteStr( MyStringList.DelimitedText ); In this way you save the string list using a string key that you can revert to a list using the same delimiter. Cheers, Andrew

Part and Inventory Search

Back
Top