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: *

  1. deyzel

    How do I create a taskbar like application

    I have to do a few more things than what the task-bar can do. I have to automatically switch between applications when certain conditions in one of the running apps occur, store the occurance in a database etc. It will have to be a completely new app. Initially I thought of configuring the...
  2. deyzel

    How do I create a taskbar like application

    All, I need to create an application that must act very similar to a taskbar. The application must dock at the top of the screen (not a problem), application must always be on top (not a problem either) AND the application must change the usable screen space for the other applications. (Similar...
  3. deyzel

    Memory leak during Exception handling ???

    Hi All experts, I am using a try/catch block to catch exceptions during a SQL insert operation. I want to prevent duplicates from being placed in the database and when the exception occurs the application should just continue. That part work fine but I am leaking memory. If I "throw&quot...
  4. deyzel

    Access DBase/ User Name & Password?

    Message for cyprus106 I have the same problem you had with the username and password that TTable require for the ACCESS db. Did you manage to resolve it and if so can you tell me how? Thanks Deyzel
  5. deyzel

    TMaskEdit to enter IP address

    I am looking for a proper mask to use a TMaskEdit component to allow the entering of an IP address. Currently I use the following: 999\.999\.999\.999;1;0 but found that it does not work on all computers and you have to enter zeroes where a sections has less than 3 digits. Any help will be...
  6. deyzel

    How do I create DLL containing VCL components

    I need to use a number of symbols that I currently store in a range of ImageLists. These symbols are used in a number of application and it makes sense to place them in a DLL. How do I get access to the ImageLists that I place in a DLL. I created a DLL and can get access to the forms in the...
  7. deyzel

    number of controls on a form

    Is there a maximum number of controls that you can place on a form? I have a form with 80 comboboxes and I get a Win32API error "unable to read combobox4->items.Strings". If I delete a number of them the problem goes away. Thanks
  8. deyzel

    auxGetNumDevs problem with Win2000

    I am using the auxGetNumDevs function in the same way as in one of my programs under win98. With win2000 the result of this function is always 0. waveInGetNumDevs and waveoutGetNumDevs with their corresponding getDevCaps function work just fine. What should I change? My microphone does operate...
  9. deyzel

    freeing TStrings GetText buffer

    The help on TStrings GetText says the caller needs to free the returned buffer. I have a memory checker that complains that I don't free the buffer. char *tmpname; tmpname = Msg->Lines->GetText(); ... manipulate text... free(tmpname); What am I doing wrong?? Thanks Deyzel
  10. deyzel

    program reference stay in task bar

    A mixture of both. Thx Deyzel
  11. deyzel

    program reference stay in task bar

    From time to time when I exit a program the taskbar continue to show a reference to the program. When you click on it, it disappears. How do I do a proper cleanup when the program terminate. Thx Deyzel
  12. deyzel

    Installing components in BCB3 standard mallfuntion

    You can at any time copy all the dclusr35.* files to a backup location. When you have a problem copy them back and re-activate the User Component Package. Once dclusr35 is compiled all you actually need is the .lib file. The rest of the files are only to update/add components to the user package.
  13. deyzel

    watermark in TStringGrid component

    Is it posible to place a watermark image in the background of a tstringgrid component? Thx deyzel
  14. deyzel

    memory error when preparing .WAV file

    I inherited a software product that plays wave files. Written in Borland C++. After a number of days of constant message playing I get the following error when waveOutPrepareHeader is called: MMSYSERR_NOMEM:Unable to allocate or lock memory. I don't see any obvious memory leaks and the systems...
  15. deyzel

    memory error when preparing .WAV file

    I inherited a software product that plays wave files. Written in Borland C++. After a number of days of constant message playing I get the following error when waveOutPrepareHeader is called: MMSYSERR_NOMEM:Unable to allocate or lock memory. I don't see any obvious memory leaks and the systems...

Part and Inventory Search

Back
Top